/* ==========================================================================
   WOLFE REFRIGERATION - MAIN STYLESHEET
   Mobile-first responsive design with wolf branding
   ========================================================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Wolf Brand Colors */
:root {
    --wolf-gold: #FFD700;
    --wolf-gold-dark: #E6C200;
    --wolf-black: #0a0a0a;
    --wolf-dark-gray: #1a1a1a;
    --wolf-medium-gray: #2a2a2a;
    --wolf-light-gray: #b0b0b0;
    --wolf-white: #ffffff;
    --wolf-red: #dc2626;
    --wolf-red-dark: #b91c1c;
    --vh: 1vh;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--wolf-medium-gray);
    z-index: 999;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

/* Wolf Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wolf-white);
    letter-spacing: 1px;
}

.company-type {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--wolf-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.nav {
    position: relative;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    position: fixed;
    top: 1rem;
    right: 1.25rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: auto;
}

.hamburger:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--wolf-gold);
}

.hamburger:focus,
.hamburger:active {
    outline: none;
    background: transparent;
    border-color: transparent;
}

.hamburger span {
    width: 22px;
    height: 3px;
    background: var(--wolf-white);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: -4px;
}

.hamburger.active span:first-child {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--wolf-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    transition: right 0.3s ease;
    z-index: 5;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin: 1.5rem 0;
}

.nav-link {
    color: var(--wolf-white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nav-link:hover {
    color: var(--wolf-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wolf-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--wolf-black) 0%, var(--wolf-dark-gray) 100%);
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wolf-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--wolf-gold);
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--wolf-light-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-primary {
    background: var(--wolf-red);
    color: var(--wolf-white);
    border-color: var(--wolf-red);
}

.btn-primary:hover {
    background: var(--wolf-red-dark);
    border-color: var(--wolf-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--wolf-gold);
    border-color: var(--wolf-gold);
}

.btn-secondary:hover {
    background: var(--wolf-gold);
    color: var(--wolf-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--wolf-white);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--wolf-light-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services {
    background: var(--wolf-dark-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    align-items: stretch;
}

.service-card {
    background: var(--wolf-medium-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform-origin: center;
    border: 1px solid transparent;
    height: auto;
    min-height: auto;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--wolf-medium-gray);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

/* Service card hover content */
.service-card::after {
    content: attr(data-hover-title);
    position: absolute;
    top: 50%;
    left: 150%;
    transform: translateY(-50%);
    width: calc(100% - 4rem);
    color: var(--wolf-white);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    opacity: 0;
}

/* Desktop hover effects */
@media (min-width: 1024px) {
    .service-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: var(--wolf-gold);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.15);
    }
    
    .service-card:hover::before {
        left: 0;
    }
    
    .service-card:hover::after {
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--wolf-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--wolf-black);
}

.service-title {
    font-size: 1.5rem;
    color: var(--wolf-white);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--wolf-light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-cta {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    min-width: auto;
    display: block;
    width: 100%;
    text-align: center;
}

.service-expanded {
    padding-bottom: 1rem;
}

.service-expand {
    background: transparent;
    border: 2px solid var(--wolf-gold);
    color: var(--wolf-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: auto;
    opacity: 1;
    transform: translateX(0);
}

/* Hide expand buttons on desktop */
@media (min-width: 1024px) {
    .service-expand {
        display: none;
    }
}

/* Desktop hover effects */
@media (min-width: 1024px) {
    .service-card:hover .service-expand {
        opacity: 0;
        transform: translateX(-100px);
    }
}

/* Mobile/Tablet expand button hover */
@media (max-width: 1023px) {
    .service-expand:hover {
        background: var(--wolf-gold);
        color: var(--wolf-black);
        transform: rotate(180deg);
    }
}

/* Learn More button that appears on hover/click */
.service-learn-more {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(50%);
    background: var(--wolf-red);
    color: var(--wolf-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

/* Desktop hover effects */
@media (min-width: 1024px) {
    .service-card:hover .service-learn-more {
        opacity: 1;
        transform: translateX(-50%);
        pointer-events: auto;
    }
}

.service-learn-more:hover {
    background: var(--wolf-red-dark);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* ==========================================================================
   WORK SHOWCASE SECTION
   ========================================================================== */

.work-showcase {
    background: var(--wolf-dark-gray);
    padding: 5rem 0;
}

/* Tab Navigation */
.work-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 3rem 0;
    background: var(--wolf-medium-gray);
    border-radius: 12px;
    padding: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.work-tab {
    background: transparent;
    border: none;
    color: var(--wolf-light-gray);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: fit-content;
}

.work-tab i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.work-tab:hover {
    color: var(--wolf-white);
    background: rgba(255, 215, 0, 0.1);
}

.work-tab.active {
    background: var(--wolf-gold);
    color: var(--wolf-black);
    font-weight: 600;
}

.work-tab.active i {
    transform: scale(1.1);
}

/* Work Content */
.work-content {
    position: relative;
    min-height: 600px;
}

.work-gallery {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.work-gallery.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

/* Image Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.work-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--wolf-medium-gray);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.work-item:hover img {
    transform: scale(1.05);
}

/* Work Overlay */
.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--wolf-white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

.work-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--wolf-gold);
}

.work-overlay p {
    font-size: 0.9rem;
    color: var(--wolf-light-gray);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-features {
        gap: 0.75rem;
    }
    
    .work-showcase {
        padding: 3rem 0;
    }
    
    .work-tabs {
        flex-direction: column;
        gap: 0.5rem;
        margin: 2rem 0;
    }
    
    .work-tab {
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-item {
        aspect-ratio: 16/10;
    }
    
    .work-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
    
    /* About Section Mobile */
    .about-image {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .technician-photo {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        aspect-ratio: 3/2;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .work-tabs {
        padding: 0.25rem;
    }
    
    .work-tab {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .work-grid {
        gap: 1rem;
    }
    
    .work-overlay {
        padding: 1.5rem 1rem 1rem;
    }
}

/* Loading States */
.work-item.loading {
    background: var(--wolf-medium-gray);
    position: relative;
}

.work-item.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about {
    background: var(--wolf-black);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.about-text {
    text-align: center;
}

.about-description {
    font-size: 1.125rem;
    color: var(--wolf-light-gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--wolf-light-gray);
}

.feature i {
    color: var(--wolf-gold);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.learn-more {
    color: var(--wolf-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.learn-more:hover {
    border-bottom-color: var(--wolf-gold);
}

.about-image {
    width: 100%;
    max-width: 500px;
}

.technician-photo {
    width: 475px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--wolf-gold);
}

/* ==========================================================================
   HIRING SECTION
   ========================================================================== */

.hiring {
    background: var(--wolf-dark-gray);
    text-align: center;
}

.hiring-title {
    font-size: 2.5rem;
    color: var(--wolf-gold);
    margin-bottom: 1rem;
}

.hiring-description {
    font-size: 1.125rem;
    color: var(--wolf-light-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    background: var(--wolf-medium-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid var(--wolf-gold);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--wolf-white);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--wolf-light-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--wolf-gold);
    font-size: 1.25rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--wolf-black);
    border-top: 1px solid var(--wolf-medium-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--wolf-gold);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--wolf-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--wolf-gold);
}

.footer-section ul li a i {
    color: var(--wolf-gold);
    margin-right: 0.5rem;
}

.footer-section p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
    font-style: italic;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--wolf-light-gray);
}

.contact-info i {
    color: var(--wolf-gold);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--wolf-medium-gray);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--wolf-light-gray);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--wolf-medium-gray);
    color: var(--wolf-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--wolf-gold);
    color: var(--wolf-black);
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET
   ========================================================================== */

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-title .highlight {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: row;
        text-align: left;
    }
    
    .about-text {
        flex: 1;
        text-align: left;
    }
    
    .about-features {
        align-items: flex-start;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - DESKTOP
   ========================================================================== */

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        justify-content: flex-end;
        right: 0;
    }
    
    .nav-menu li {
        margin: 0 0 0 2rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-title .highlight {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ========================================================================== */

@media screen and (max-width: 1023px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Optimize touch targets */
    .btn, .service-expand, .hamburger {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for touch */
    .nav-menu li {
        margin: 2rem 0;
    }
    
    .hero-buttons .btn {
        padding: 1.25rem 2rem;
        margin: 0.75rem 0;
    }
}

/* ==========================================================================
   CAREERS PAGE STYLES
   ========================================================================== */

/* Careers Hero Section */
.careers-hero {
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--wolf-black) 0%, var(--wolf-dark-gray) 100%);
    position: relative;
    padding-top: 80px;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.careers-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.careers-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wolf-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.careers-hero-title .highlight {
    color: var(--wolf-gold);
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.careers-hero-subtitle {
    font-size: 1.25rem;
    color: var(--wolf-light-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.careers-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wolf-gold);
    margin-bottom: 0.5rem;
}

.stat-number i {
    color: var(--wolf-gold);
    font-size: 1.8rem;
    margin: 0 0.1rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--wolf-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Work With Us Section */
.why-work-with-us {
    background: var(--wolf-dark-gray);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--wolf-medium-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}


.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--wolf-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--wolf-black);
}

.benefit-title {
    font-size: 1.25rem;
    color: var(--wolf-white);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--wolf-light-gray);
    line-height: 1.6;
}

/* Current Openings Section */
.current-openings {
    background: var(--wolf-black);
    padding: 5rem 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.job-card {
    background: var(--wolf-medium-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--wolf-dark-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--wolf-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.job-content-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    flex: 1;
}

.job-content {
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-header {
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.5rem;
    color: var(--wolf-white);
    margin-bottom: 0.75rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wolf-light-gray);
    font-size: 0.875rem;
}

.job-meta i {
    color: var(--wolf-gold);
}

.job-summary {
    color: var(--wolf-light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-expand {
    background: transparent;
    border: 2px solid var(--wolf-gold);
    color: var(--wolf-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    margin-top: auto;
}

.job-expand:hover {
    background: var(--wolf-gold);
    color: var(--wolf-black);
    transform: rotate(180deg);
}

.job-details {
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    padding: 0.75rem;
    text-align: left;
    overflow-y: auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.job-details h4 {
    color: var(--wolf-gold);
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    line-height: 1.2;
}

.job-details h4:first-child {
    margin-top: 0;
}

.job-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.job-details li {
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--wolf-medium-gray);
    color: var(--wolf-light-gray);
    line-height: 1.3;
    font-size: 0.9rem;
}

.job-details li:last-child {
    border-bottom: none;
}

.job-apply-btn {
    margin-top: 1rem;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    min-width: auto;
    align-self: flex-start;
}

/* Application Process Section */
.application-process {
    background: var(--wolf-dark-gray);
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--wolf-gold);
    color: var(--wolf-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.25rem;
    color: var(--wolf-white);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--wolf-light-gray);
    line-height: 1.6;
}

.application-form {
    background: var(--wolf-medium-gray);
    border-radius: 12px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.application-form h3 {
    color: var(--wolf-white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.careers-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--wolf-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--wolf-dark-gray);
    border: 1px solid var(--wolf-light-gray);
    border-radius: 6px;
    padding: 0.75rem;
    color: var(--wolf-white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wolf-gold);
}

.form-group small {
    color: var(--wolf-light-gray);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.submit-btn {
    margin-top: 1rem;
    align-self: center;
}

/* Careers Contact Section */
.careers-contact {
    background: var(--wolf-black);
    padding: 4rem 0;
}

.careers-contact .contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--wolf-gold);
    color: var(--wolf-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-item h4 {
    color: var(--wolf-white);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--wolf-light-gray);
    margin: 0;
}

/* Desktop and Tablet behavior for job cards */
@media (min-width: 768px) {
    .careers-hero-title {
        font-size: 3.5rem;
    }
    
    .careers-hero-title .highlight {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .benefit-card {
        padding: 1.75rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .job-card {
        height: auto;
        min-height: 550px;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .job-content-wrapper {
        height: 500px;
        flex: 1;
    }
    
    .job-expand {
        margin: 0.5rem auto 0;
        position: static;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .job-expand i {
        transition: transform 0.3s ease;
    }
    
    .job-card.expanded .primary-content {
        transform: translateX(-100%);
    }
    
    .job-card.expanded .job-details {
        transform: translateX(-100%);
    }
    
    .job-details {
        padding: 1rem;
    }
    
    .job-details h4 {
        font-size: 1.1rem;
        margin: 0 0 0.6rem 0;
        line-height: 1.2;
    }
    
    .job-details li {
        font-size: 0.95rem;
        padding: 0.3rem 0;
        line-height: 1.3;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .job-meta span {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--wolf-light-gray);
    }
    
    .form-row {
        flex-direction: row;
    }
    
    .process-steps {
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .careers-hero-title {
        font-size: 4rem;
    }
    
    .careers-hero-title .highlight {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
    }
    
    .job-card {
        min-height: 650px;
        padding: 2.5rem 2.5rem 1.5rem;
    }
    
    .job-content-wrapper {
        height: 550px;
    }
}

/* Mobile behavior for job cards */
@media (max-width: 767px) {
    .careers-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Benefit cards mobile typography */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .benefit-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }
    
    .benefit-description {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--wolf-light-gray);
    }
    
    .job-card {
        display: block;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .job-content-wrapper {
        position: static;
        overflow: visible;
        margin-bottom: 2rem;
    }
    
    .job-details {
        position: static;
        left: auto;
        height: auto;
        padding: 0;
        text-align: center;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.3s ease;
    }
    
    .job-card.expanded .job-details {
        max-height: 1500px;
        padding: 1rem 0 0.5rem;
        opacity: 1;
    }
    
    .job-card.expanded .primary-content {
        transform: none;
    }
    
    .job-details h4 {
        text-align: center;
        margin: 1rem 0 0.5rem 0;
        line-height: 1.2;
    }
    
    .job-details h4:first-child {
        margin-top: 0.5rem;
    }
    
    .job-apply-btn {
        align-self: center;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .process-steps {
        gap: 2rem;
    }
    
    .application-form {
        padding: 2rem;
    }
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Class-based scroll reveal to avoid inline style conflicts */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure hover wins over reveal transform - service cards only */
@media (min-width: 1024px) {
    .service-card.reveal-on-scroll.in-view:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Keyboard accessibility - service cards only */
.service-card.reveal-on-scroll.in-view:focus-within {
    transform: translateY(-5px) scale(1.02);
}

/* Mobile/Tablet expanded state wins over reveal transform */
@media (max-width: 1023px) {
    .service-card.reveal-on-scroll.in-view.mobile-expanded {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Desktop hover effects - hide original content on hover */
@media (min-width: 1024px) {
    .service-card:hover .service-icon,
    .service-card:hover .service-title,
    .service-card:hover .service-description {
        opacity: 0;
        transform: translateX(-100px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card .service-icon,
    .service-card .service-title,
    .service-card .service-description {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile/Tablet click effects - replicate desktop hover behavior */
@media (max-width: 1023px) {
    .service-card.mobile-expanded .service-icon,
    .service-card.mobile-expanded .service-title,
    .service-card.mobile-expanded .service-description,
    .service-card.mobile-expanded .service-expand {
        opacity: 0;
        transform: translateX(-100px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card .service-icon,
    .service-card .service-title,
    .service-card .service-description,
    .service-card .service-expand {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 1;
        transform: translateX(0);
    }
    
    .service-card.mobile-expanded::before {
        left: 0;
    }
    
    .service-card.mobile-expanded::after {
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }
    
    .service-card.mobile-expanded .service-learn-more {
        opacity: 1;
        transform: translateX(-50%);
        pointer-events: auto;
    }
    
    .service-card.mobile-expanded {
        transform: translateY(-5px) scale(1.02);
        border-color: var(--wolf-gold);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.15);
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: calc(var(--vh, 1vh) * 100);
    }
    
    /* Fix for iOS Safari bottom bar */
    .footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Enhanced focus states for accessibility */
button:focus, .btn:focus, .nav-link:focus {
    outline: 2px solid var(--wolf-gold);
    outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
* {
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

/* Remove PWA install button styles (moved to V2) */
.pwa-install-button {
    display: none;
}

/* V2 Features - Hidden for V1 Launch */
.v2-feature {
    display: none !important;
}

input, select, textarea {
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* ==========================================================================
   NEWSLETTER PAGE STYLES
   ========================================================================== */

/* Newsletter Hero Section */
.newsletter-hero {
    background: linear-gradient(135deg, var(--wolf-black) 0%, var(--wolf-dark-gray) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-hero-content {
    position: relative;
    z-index: 2;
}

.newsletter-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--wolf-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.newsletter-hero-title .highlight {
    color: var(--wolf-gold);
    display: block;
    font-size: 2.25rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.newsletter-hero-subtitle {
    font-size: 1.25rem;
    color: var(--wolf-light-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.newsletter-stats .stat {
    text-align: center;
}

.newsletter-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wolf-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.newsletter-stats .stat-label {
    font-size: 1rem;
    color: var(--wolf-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-cta {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    gap: 0.75rem;
}

/* Latest Issue Section */
.latest-issue {
    padding: 6rem 0;
    background: var(--wolf-dark-gray);
}

.issue-preview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.issue-cover {
    position: sticky;
    top: 2rem;
}

.issue-image {
    background: linear-gradient(135deg, var(--wolf-gold) 0%, #b8860b 100%);
    color: var(--wolf-black);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.issue-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.issue-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.issue-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.issue-date {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.8;
}

.issue-content h3 {
    font-size: 2rem;
    color: var(--wolf-white);
    margin-bottom: 2rem;
}

.issue-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--wolf-black);
    border-radius: 8px;
    border-left: 4px solid var(--wolf-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}

.highlight-item i {
    color: var(--wolf-gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    color: var(--wolf-white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--wolf-light-gray);
    line-height: 1.6;
    margin: 0;
}

.read-issue-btn {
    align-self: flex-start;
}

/* Newsletter Archive Section */
.newsletter-archive {
    padding: 6rem 0;
    background: var(--wolf-black);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.archive-card {
    background: var(--wolf-dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--wolf-medium-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.archive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--wolf-gold) 0%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.2);
    border-color: var(--wolf-gold);
}

.archive-card:hover::before {
    transform: scaleX(1);
}

.archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.archive-date {
    font-size: 0.875rem;
    color: var(--wolf-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.archive-badge {
    background: var(--wolf-gold);
    color: var(--wolf-black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.archive-title {
    color: var(--wolf-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.archive-summary {
    color: var(--wolf-light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.archive-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.topic-tag {
    background: var(--wolf-black);
    color: var(--wolf-light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid var(--wolf-medium-gray);
    transition: all 0.3s ease;
}

.archive-card:hover .topic-tag {
    border-color: var(--wolf-gold);
    color: var(--wolf-gold);
}

.archive-link {
    color: var(--wolf-gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.archive-link:hover {
    gap: 1rem;
}

.archive-link i {
    transition: transform 0.3s ease;
}

.archive-link:hover i {
    transform: translateX(5px);
}

.archive-pagination {
    text-align: center;
    margin-top: 4rem;
}

.load-more-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Newsletter Subscription Section */
.newsletter-subscription {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--wolf-dark-gray) 0%, var(--wolf-black) 100%);
}

.subscription-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.subscription-info h2 {
    margin-bottom: 1rem;
}

.subscription-benefits {
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--wolf-black);
    border-radius: 8px;
    border-left: 3px solid var(--wolf-gold);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--wolf-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--wolf-light-gray);
    line-height: 1.5;
}

.subscription-form {
    background: var(--wolf-black);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--wolf-medium-gray);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-form h3 {
    color: var(--wolf-white);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-form .form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.newsletter-form .checkbox-group {
    margin-bottom: 2rem;
}

.newsletter-form .checkbox-group .form-group {
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
}

.checkbox-label:hover {
    background: var(--wolf-dark-gray);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: var(--wolf-dark-gray);
    border: 2px solid var(--wolf-medium-gray);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background: var(--wolf-gold);
    border-color: var(--wolf-gold);
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--wolf-black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-label input:checked + .checkmark::after {
    opacity: 1;
}

.subscribe-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.privacy-note {
    text-align: center;
    color: var(--wolf-light-gray);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Newsletter Topics Section */
.newsletter-topics {
    padding: 6rem 0;
    background: var(--wolf-dark-gray);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.topic-card {
    background: var(--wolf-black);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--wolf-medium-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--wolf-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.2);
    border-color: var(--wolf-gold);
}

.topic-card:hover::before {
    width: 100%;
}

.topic-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wolf-gold) 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.topic-card:hover .topic-icon {
    transform: scale(1.1);
}

.topic-icon i {
    font-size: 2rem;
    color: var(--wolf-black);
}

.topic-title {
    color: var(--wolf-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.topic-description {
    color: var(--wolf-light-gray);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter Responsive Design */
@media (max-width: 768px) {
    .newsletter-hero {
        padding: 6rem 0 4rem;
    }
    
    .newsletter-hero-title {
        font-size: 2.5rem;
    }
    
    .newsletter-hero-title .highlight {
        font-size: 2rem;
    }
    
    .newsletter-stats {
        gap: 2rem;
    }
    
    .newsletter-stats .stat-number {
        font-size: 2rem;
    }
    
    .issue-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .issue-cover {
        position: static;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--wolf-black) 0%, #1a1a1a 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--wolf-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-hero-title .highlight {
    color: var(--wolf-gold);
    display: block;
    font-size: 3.5rem;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--wolf-light-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.primary-contact {
    margin-bottom: 4rem;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--wolf-gold) 0%, #b8860b 100%);
    color: var(--wolf-black);
    text-decoration: none;
    padding: 2rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.phone-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
}

.phone-cta:hover::before {
    left: 100%;
}

.phone-cta i {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.phone-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-stats .stat {
    text-align: center;
}

.contact-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wolf-gold);
    display: block;
    line-height: 1;
}

.contact-stats .stat-label {
    font-size: 1rem;
    color: var(--wolf-light-gray);
    margin-top: 0.5rem;
}

/* Service Areas Section */
.service-areas {
    padding: 6rem 0;
    background: var(--wolf-dark-gray);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.area-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    cursor: pointer;
    height: 100%;
}

.area-card-link:visited {
    color: inherit !important;
    text-decoration: none !important;
}

.area-card-link:hover {
    color: inherit !important;
    text-decoration: none !important;
}

.area-card-link:active {
    color: inherit !important;
    text-decoration: none !important;
}

.area-card {
    background: var(--wolf-black);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--wolf-medium-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wolf-gold), #b8860b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.2);
    border-color: var(--wolf-gold);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wolf-gold) 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.area-card:hover .area-icon {
    transform: scale(1.1);
}

.area-icon i {
    font-size: 2rem;
    color: var(--wolf-black);
}

.area-title {
    color: var(--wolf-white);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.area-description {
    color: var(--wolf-light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.area-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.area-features li {
    color: var(--wolf-light-gray);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.area-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wolf-gold);
    font-weight: bold;
}

/* Contact Methods Section */
.contact-methods {
    padding: 6rem 0;
    background: var(--wolf-black);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.method-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    cursor: pointer;
    height: 100%;
}

.method-card-link:visited {
    color: inherit !important;
    text-decoration: none !important;
}

.method-card-link:hover {
    color: inherit !important;
    text-decoration: none !important;
}

.method-card-link:active {
    color: inherit !important;
    text-decoration: none !important;
}

.method-card {
    background: var(--wolf-dark-gray);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--wolf-medium-gray);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.method-card.priority {
    border-color: var(--wolf-medium-gray);
    background: linear-gradient(135deg, var(--wolf-dark-gray) 0%, rgba(218, 165, 32, 0.05) 100%);
}

.method-card-link:hover .method-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--wolf-gold);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wolf-gold) 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.method-card-link:hover .method-icon {
    transform: scale(1.1);
}

.method-icon i {
    font-size: 2rem;
    color: var(--wolf-black);
}

.method-title {
    color: var(--wolf-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.method-info {
    margin-bottom: 2rem;
}

.method-link {
    color: var(--wolf-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: #b8860b;
}

.method-description {
    color: var(--wolf-light-gray);
    line-height: 1.6;
    margin: 0;
}

.method-hours h4 {
    color: var(--wolf-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.method-hours p {
    color: var(--wolf-light-gray);
    margin: 0.25rem 0;
}

.emergency-note {
    color: var(--wolf-red) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.emergency-note i {
    color: var(--wolf-red) !important;
}

.method-response p {
    color: var(--wolf-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.method-response i {
    color: var(--wolf-gold);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: var(--wolf-dark-gray);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--wolf-black);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--wolf-medium-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--wolf-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--wolf-dark-gray);
    border: 2px solid var(--wolf-medium-gray);
    border-radius: 8px;
    padding: 1rem;
    color: var(--wolf-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wolf-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--wolf-light-gray);
}

.form-group select option {
    background: var(--wolf-dark-gray);
    color: var(--wolf-white);
}

.urgency-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--wolf-dark-gray);
    border: 2px solid var(--wolf-medium-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: var(--wolf-gold);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--wolf-medium-gray);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--wolf-gold);
    background: var(--wolf-gold);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--wolf-black);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.urgency-info strong {
    color: var(--wolf-white);
    display: block;
    margin-bottom: 0.25rem;
}

.urgency-info small {
    color: var(--wolf-light-gray);
    font-size: 0.875rem;
}

.radio-option.emergency {
    border-color: #dc3545;
}

.radio-option.emergency:hover,
.radio-option.emergency input[type="radio"]:checked + .radio-custom {
    border-color: #dc3545;
}

.radio-option.emergency input[type="radio"]:checked + .radio-custom {
    background: #dc3545;
}

.radio-option.urgent {
    border-color: #ffc107;
}

.radio-option.urgent:hover,
.radio-option.urgent input[type="radio"]:checked + .radio-custom {
    border-color: #ffc107;
}

.radio-option.urgent input[type="radio"]:checked + .radio-custom {
    background: #ffc107;
}

.radio-option.routine {
    border-color: #28a745;
}

.radio-option.routine:hover,
.radio-option.routine input[type="radio"]:checked + .radio-custom {
    border-color: #28a745;
}

.radio-option.routine input[type="radio"]:checked + .radio-custom {
    background: #28a745;
}

.emergency-notice {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #ff6b7a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.emergency-notice i {
    color: #dc3545;
    font-size: 1.25rem;
}

.submit-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    align-self: flex-start;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-title .highlight {
        font-size: 2rem;
    }
    
    .phone-cta {
        padding: 1.5rem 2rem;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .contact-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .contact-stats .stat-number {
        font-size: 2rem;
    }
    
    .areas-grid,
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .area-card {
        padding: 2rem 1.5rem;
    }
    
    .area-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .area-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .area-features {
        display: none;
    }
    
    .method-card {
        padding: 2rem 1.5rem;
    }
    
    .method-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .method-link {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .method-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .method-hours h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .method-hours p {
        font-size: 0.85rem;
        margin: 0.125rem 0;
    }
    
    .method-response p {
        font-size: 0.9rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .urgency-options {
        gap: 0.75rem;
    }
    
    .radio-option {
        padding: 0.75rem;
    }
}

/* ===== MEET OUR TEAM SECTION ===== */
.meet-our-team {
    padding: 6rem 0;
    background: var(--wolf-dark-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.team-member {
    background: var(--wolf-black);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(218, 165, 32, 0.1);
    cursor: pointer;
    min-height: 450px;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--wolf-gold-dark);
    border-width: 2px;
}

.team-photo {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--wolf-gold) 0%, #b8860b 100%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    /* Image optimization */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
    /* Prevent layout shift */
    aspect-ratio: 3/4;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.team-level {
    background: rgba(0, 0, 0, 0.8);
    color: var(--wolf-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--wolf-gold);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wolf-white);
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 1.125rem;
    color: var(--wolf-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-location {
    font-size: 0.9rem;
    color: var(--wolf-light-gray);
    margin-bottom: 1rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.team-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--wolf-gold);
}

.team-specialties {
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.specialty {
    background: rgba(218, 165, 32, 0.1);
    color: var(--wolf-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover .specialty {
    background: rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.team-description {
    color: var(--wolf-light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Expanded state */
.team-member.expanded .team-location,
.team-member.expanded .team-specialties,
.team-member.expanded .team-description {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.team-member.expanded .team-description {
    display: block;
}

.team-culture {
    margin-top: 4rem;
    text-align: center;
}

.culture-highlight {
    background: var(--wolf-black);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.culture-highlight i {
    font-size: 3rem;
    color: var(--wolf-gold);
    margin-bottom: 1rem;
}

.culture-highlight h3 {
    font-size: 1.75rem;
    color: var(--wolf-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.culture-highlight p {
    color: var(--wolf-light-gray);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Desktop Team Grid - 4 columns */
@media (min-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
    }
}

/* Team Section Responsive Design */
@media (max-width: 768px) {
    .meet-our-team {
        padding: 4rem 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .team-photo {
        height: 240px;
    }
    
    .team-info {
        padding: 1.5rem;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
    
    .team-title {
        font-size: 1rem;
    }
    
    .team-specialties {
        gap: 0.375rem;
    }
    
    .specialty {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .culture-highlight {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .culture-highlight h3 {
        font-size: 1.5rem;
    }
    
    .culture-highlight p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .team-photo {
        height: 200px;
    }
    
    .team-info {
        padding: 1.25rem;
    }
    
    .team-level {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}
