/* ==========================================================================
   LimeLogic Media Lab - Design System & Styles
   "Global Level. Caribbean Soul."
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Design System
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Extracted from LimeLogic Logo */
    --color-primary: #1A1A1A;        /* Dark Charcoal (logo backgrounds) */
    --color-secondary: #2D2D2D;      /* Medium Charcoal */
    --color-lime: #A4D233;           /* Brand Lime Green (logo segments) */
    --color-teal: #00A79D;           /* Brand Teal (logo segments) */
    --color-accent-1: #A4D233;       /* Primary Accent (Lime) */
    --color-accent-2: #00A79D;       /* Secondary Accent (Teal) */
    --color-neutral-light: #F8F9FA;  /* Off White */
    --color-neutral-dark: #2D2D2D;   /* Dark Text */
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    --container-max-width: 1440px;
    --border-radius: 12px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-neutral-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-white);
    /* Safe area support for mobile notches */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* --------------------------------------------------------------------------
   Site Header (Logo + Navigation)
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* 🔥 SMART GLASSMORPHISM - Apple-style with dark tint */
    background: rgba(0, 0, 0, 0.75); /* 75% black tint for readability */
    backdrop-filter: blur(12px) saturate(180%); /* Apple-style frosted glass */
    -webkit-backdrop-filter: blur(12px) saturate(180%); /* Safari support */
    border-bottom: 1px solid rgba(164, 210, 51, 0.2); /* Subtle lime glow */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); /* Deeper shadow for depth */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Safe area for mobile notches */
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Header becomes more solid on scroll for better readability */
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95); /* More opaque when scrolled */
    border-bottom: 1px solid rgba(164, 210, 51, 0.3); /* Stronger lime glow */
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 12px 40px; /* Slightly bigger: breathing room around logo/wordmark */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 36px; /* Balanced: readable but not giant */
    width: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth Caribbean flow */
    animation: spin 20s linear infinite;
}

/* 🔥 CARIBBEAN GLOW PULSE EFFECT */
.site-logo:hover {
    transform: scale(1.15); /* Slight grow */
    filter: drop-shadow(0 0 20px rgba(164, 210, 51, 0.8)) 
            drop-shadow(0 0 40px rgba(164, 210, 51, 0.5))
            brightness(1.2); /* Lime green glow + brightness boost */
    animation: spin-fast 3s linear infinite; /* Speed up spin on hover */
}

/* Fast spin animation for hover */
@keyframes spin-fast {
    from {
        transform: scale(1.15) rotate(0deg);
    }
    to {
        transform: scale(1.15) rotate(360deg);
    }
}

.site-wordmark {
    height: 36px; /* Now matches symbol perfectly—cropped PNG scales correctly! */
    width: auto;
    margin-left: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth flow */
    /* Ensure crisp rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* 🔥 WORDMARK GLOW on logo hover */
.logo-link:hover .site-wordmark {
    filter: drop-shadow(0 0 8px rgba(164, 210, 51, 0.4))
            brightness(1.1); /* Subtle lime glow */
    transform: translateX(4px); /* Slight shift right */
}

/* Hide wordmark on mobile to save space */
@media (max-width: 768px) {
    .site-wordmark {
        display: none;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-lime);
    transition: var(--transition-smooth);
}

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

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

.nav-link.nav-cta {
    padding: 10px 24px;
    background: var(--color-lime);
    color: var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--color-teal);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(164, 210, 51, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-lime);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 2px;
    background: var(--color-lime);
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .site-header {
        /* Extra padding for mobile notches and status bar */
        padding-top: max(20px, env(safe-area-inset-top));
    }
    
    .header-container {
        padding: 16px 20px;
    }
    
    .site-logo {
        height: 40px;
        width: 40px;
    }
    
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(164, 210, 51, 0.1);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 40px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.nav-cta {
        margin: 16px 20px;
        width: calc(100% - 40px);
        text-align: center;
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active .hamburger {
        background: transparent;
    }
    
    .mobile-menu-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-menu-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    height: auto; /* AUTO: Allow hero to expand based on content */
    min-height: 100vh; /* Ensure at least full viewport height */
    margin: 30px;
    margin-bottom: -5px;  /* Aggressive overlap to hide Chrome gap */
    display: flex;
    align-items: flex-start; /* TOP align: prevents hero from centering content */
    justify-content: center;
    /* OPTION 1: Dark frame using margin instead of padding */
    background: var(--color-primary);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

/* Add dark background to body to show frame */
body {
    background: #0D1B2A;
    margin: 0;
    padding: 0;
}

/* Hero Inner Container - holds video and content */
.hero-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px; /* Ensure minimum space for content */
    display: flex;
    align-items: flex-start; /* TOP align: prevents text going under header */
    justify-content: flex-start; /* LEFT align content */
    overflow: visible; /* Allow content to be visible */
    padding-top: 120px; /* INCREASED: 90px → 120px for header clearance */
    padding-bottom: 60px; /* Ensure bottom content has breathing room */
}

/* Video Background - Contained within frame */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 12px;
}

/* Mobile Image Background (hidden on desktop) */
.hero-image-wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 12px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    animation: videoFadeIn 0.8s ease-out 0.2s forwards, 
               kenBurnsZoom 30s ease-in-out 1s infinite alternate;
}

/* Video Fade In */
@keyframes videoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Ken Burns Effect - Subtle Zoom */
@keyframes kenBurnsZoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* Hero Overlay - OPTIMIZED: 40% VIDEO VISIBILITY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* OPTIMIZED: Lighter gradient, video visible from 70% (40% of hero) */
    background: linear-gradient(
        to right,
        rgba(13, 27, 42, 0.92) 0%,
        rgba(13, 27, 42, 0.65) 40%,
        rgba(13, 27, 42, 0.25) 60%,
        rgba(13, 27, 42, 0.00) 70%
    );
    z-index: 2;
    border-radius: 12px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: auto; /* Allow natural height, don't force 100% */
    display: flex;
    align-items: flex-start; /* TOP align: lock text position */
    /* DESKTOP: 10px padding to align text with logo (30px frame + 10px = 40px) */
    justify-content: flex-start;
    padding: 0 10px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Hero Text Container - OPTIMIZED FOR BALANCE */
.hero-text {
    /* DESKTOP: 520px for optimal readability + 40% video visibility */
    width: 520px;
    padding: 0px 60px 20px 0px; /* ULTRA-TIGHT: Top 10px → 0px (no extra padding) */
    text-align: left;
    margin-left: 0;
    background: linear-gradient(
        to right,
        rgba(13, 27, 42, 0.95) 0%,
        rgba(13, 27, 42, 0.85) 50%,
        rgba(13, 27, 42, 0.60) 75%,
        rgba(13, 27, 42, 0.0) 100%
    );
    backdrop-filter: blur(5px);
}

/* Hero Location Badge (NEW) */
.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(164, 210, 51, 0.15);
    border: 1px solid rgba(164, 210, 51, 0.4);
    border-radius: 50px;
    color: var(--color-lime);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px; /* ULTRA-TIGHT: 12px → 8px */
    letter-spacing: 0.5px;
}

.hero-location-badge i {
    font-size: 12px;
}

/* Hero Brand Logo (Full Wordmark) */
.hero-brand-logo {
    margin-bottom: 20px; /* RESET TO GOOD SPACING */
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.brand-wordmark {
    width: 100%;
    max-width: 400px; /* BACK TO ORIGINAL SIZE */
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
    .brand-wordmark {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .brand-wordmark {
        max-width: 240px;
    }
}

.hero-headline {
    font-family: var(--font-heading);
    /* VALUE PROP: Clear, readable, conversion-focused */
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-top: 16px; /* Space from location badge */
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    /* ENHANCED: Stronger shadow for readability */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 
                 0 0 40px rgba(164, 210, 51, 0.2);
}

/* Hero Tagline Badge (NEW - replaces old subheadline) */
.hero-tagline-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.hero-supporting {
    font-family: var(--font-body);
    /* SLIGHTLY larger for readability */
    font-size: clamp(16px, 1.9vw, 19px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 100%;
    margin: 0 0 40px 0;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-lime);
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(164, 210, 51, 0.4);
    font-weight: 700;
    /* BOLDER: Larger button for more impact */
    font-size: 18px;
    padding: 20px 44px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 35px rgba(164, 210, 51, 0.6);
    background: #B5E044; /* Slightly brighter lime on hover */
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 15px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-lime);
    border-color: var(--color-lime);
    transform: translateY(-2px);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(164, 210, 51, 0.2);
    transition: var(--transition-smooth);
}

.trust-badge:hover {
    background: rgba(164, 210, 51, 0.1);
    border-color: var(--color-lime);
    transform: translateY(-2px);
}

.trust-badge i {
    color: var(--color-lime);
    font-size: 16px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-lime);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* --------------------------------------------------------------------------
   Credibility Bar
   -------------------------------------------------------------------------- */
.credibility-bar {
    background: var(--color-neutral-light);
    padding: 80px 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.credibility-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.credibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime) 0%, var(--color-teal) 100%);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.credibility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.credibility-icon {
    font-size: 48px;
    color: var(--color-lime);
    margin-bottom: 20px;
}

.credibility-card:nth-child(even) .credibility-icon {
    color: var(--color-teal);
}

.credibility-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1;
}

.credibility-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-neutral-dark);
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Who We Serve Section
   -------------------------------------------------------------------------- */
.who-we-serve {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    color: var(--color-neutral-dark);
    line-height: 1.6;
    opacity: 0.8;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.customer-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-neutral-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime) 0%, var(--color-teal) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.customer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-lime);
}

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

.customer-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-teal) 100%);
    border-radius: 50%;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--color-white);
}

.customer-card:nth-child(2) .customer-icon {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-lime) 100%);
}

.customer-headline {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.customer-body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-neutral-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.85;
}

.customer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-lime);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.customer-cta:hover {
    gap: 12px;
    color: var(--color-teal);
}

.customer-cta i {
    font-size: 14px;
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--color-neutral-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Featured Card (Middle) */
.service-card-featured {
    border: 2px solid var(--color-lime);
    transform: scale(1.03);
}

.service-card-featured:hover {
    transform: translateY(-10px) scale(1.03);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-teal) 100%);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.service-visual {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-card-featured .service-visual {
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-teal) 100%);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 48px;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.2);
}

.service-content {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-headline {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-neutral-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.85;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-neutral-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.service-features i {
    color: var(--color-lime);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.service-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(164, 210, 51, 0.2);
    flex-wrap: wrap;
}

.service-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.service-meta .meta-item i {
    color: var(--color-lime);
    font-size: 16px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-teal) 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    align-self: flex-start;
}

.service-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(164, 210, 51, 0.3);
}

.service-cta i {
    font-size: 14px;
    transition: var(--transition-smooth);
}

.service-cta:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   How It Works Section
   -------------------------------------------------------------------------- */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--color-white);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 60px;
    gap: 0;
}

.process-step {
    grid-column: span 1;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.timeline-connector {
    grid-column: span 1;
    height: 3px;
    background: linear-gradient(90deg, var(--color-lime) 0%, var(--color-teal) 100%);
    position: relative;
    margin: 0 -10px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 3px solid var(--color-lime);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--color-lime);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(164, 210, 51, 0.2);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-teal) 100%);
    color: var(--color-white);
    border-color: var(--color-teal);
    box-shadow: 0 8px 30px rgba(164, 210, 51, 0.4);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-neutral-dark);
    line-height: 1.6;
    opacity: 0.8;
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.process-cta-note {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-neutral-dark);
    margin-top: 16px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.process-cta-note i {
    color: var(--color-lime);
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-neutral-light) 0%, var(--color-white) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-neutral-light);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--color-lime);
}

/* Featured Pricing Card */
.pricing-card-featured {
    border: 3px solid var(--color-lime);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(164, 210, 51, 0.2);
}

.pricing-card-featured:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(164, 210, 51, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-teal) 100%);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(164, 210, 51, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--color-neutral-light);
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-amount {
    margin-bottom: 12px;
    line-height: 1;
}

.currency {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-neutral-dark);
    opacity: 0.6;
}

.price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 4px;
}

.price-range {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-neutral-dark);
    opacity: 0.7;
}

.pricing-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-neutral-dark);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-neutral-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.pricing-features i {
    color: var(--color-lime);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-white);
    border: 2px solid var(--color-lime);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.pricing-cta:hover {
    background: var(--color-lime);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 210, 51, 0.3);
}

.pricing-cta-featured {
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-teal) 100%);
    color: var(--color-white);
    border: none;
}

.pricing-cta-featured:hover {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-lime) 100%);
    transform: translateY(-2px) scale(1.03);
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(164, 210, 51, 0.08);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-lime);
}

.pricing-note p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-neutral-dark);
    line-height: 1.7;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pricing-note i {
    color: var(--color-lime);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Animations - Cinematic Reveal
   -------------------------------------------------------------------------- */

/* Headline - Cinematic Blur to Focus (starts after video loads) */
.animate-fade-in {
    animation: cinematicReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
    opacity: 0;
}

/* Subheadline and Supporting Text */
.animate-fade-in-delay-1 {
    animation: cinematicReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
    opacity: 0;
}

/* CTAs */
.animate-fade-in-delay-2 {
    animation: cinematicReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 2.4s forwards;
    opacity: 0;
}

/* Trust Badges */
.animate-fade-in-delay-3 {
    animation: cinematicReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 3.2s forwards;
    opacity: 0;
}

/* Cinematic Reveal Keyframes */
@keyframes cinematicReveal {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(50px);
        filter: blur(15px);
    }
    50% {
        opacity: 0.6;
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animating {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Mobile Responsive
   -------------------------------------------------------------------------- */

/* Tablet/Small Desktop (769px - 1440px) */
@media (min-width: 769px) and (max-width: 1440px) {
    .hero-content {
        max-width: 100% !important;
        padding: 0 40px !important;
    }
    
    .hero-text {
        width: 500px !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* MOBILE ONLY: Remove frame, full-bleed hero */
    section#hero.hero {
        min-height: 100svh !important;
        /* Remove margin on mobile - full bleed */
        margin: 0 !important;
        border-radius: 0 !important;
        align-items: flex-start !important;
    }
    
    /* MOBILE ONLY: Hero inner fills completely */
    .hero-inner {
        min-height: 100svh !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
    
    /* MOBILE ONLY: Hero content spacing - CENTERED */
    section#hero.hero .hero-content {
        margin-top: 0 !important;
        padding-top: 10px !important;
        padding-bottom: 30px !important;
        /* MOBILE: Center everything */
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* MOBILE ONLY: Hero text - CENTERED */
    section#hero.hero .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        padding: 20px !important;
        text-align: center !important;
        background: none !important;
        backdrop-filter: none !important;
    }
    
    /* MOBILE ONLY: Headline spacing */
    section#hero.hero .hero-headline {
        font-size: 42px;
        margin-top: 0 !important;
        margin-bottom: 20px;
        /* Enhanced text shadow for mobile visibility */
        text-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(164, 210, 51, 0.3),
            0 0 80px rgba(164, 210, 51, 0.1);
    }
    
    /* MOBILE ONLY: Trust badges spacing */
    section#hero.hero .hero-trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center !important;
        margin-bottom: 30px !important;
        padding-bottom: 20px !important;
    }
    
    /* MOBILE ONLY: CTA buttons centered */
    section#hero.hero .hero-cta-group {
        justify-content: center !important;
    }
    
    /* Hide video on mobile for performance */
    .hero-video-wrapper {
        display: none !important;
    }
    
    /* Show static image on mobile - NUCLEAR FORCE */
    .hero-image-wrapper {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        visibility: visible !important;
    }
    
    .hero-image-placeholder {
        width: 100% !important;
        height: 100% !important;
        background-image: url('../images/hero-mobile-bg.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        /* Increased blur and opacity for visibility */
        filter: blur(2px) !important;
        opacity: 0.8 !important;
    }
    
    /* Fallback gradient background for mobile - sits ABOVE image */
    section#hero.hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* LIGHTER gradient so image shows through */
        background: linear-gradient(
            to bottom,
            rgba(13, 27, 42, 0.7) 0%,
            rgba(13, 27, 42, 0.4) 40%,
            rgba(13, 27, 42, 0.4) 60%,
            rgba(13, 27, 42, 0.7) 100%
        );
        z-index: 2 !important;
    }
    
    .hero-subheadline {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .hero-supporting {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .credibility-bar {
        padding: 60px 0;
    }
    
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .credibility-card {
        padding: 35px 25px;
    }
    
    .customer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .customer-card {
        padding: 35px 25px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card-featured {
        transform: scale(1);
    }
    
    .service-card-featured:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .service-visual {
        padding: 50px 30px;
        min-height: 180px;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
    
    .service-headline {
        font-size: 22px;
    }
    
    .service-cta {
        width: 100%;
        justify-content: center;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        grid-column: span 1;
        padding: 20px 15px;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .step-number {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .process-cta-note {
        font-size: 13px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .pricing-card {
        padding: 35px 25px;
    }
    
    .price {
        font-size: 40px;
    }
    
    .price-range {
        font-size: 20px;
    }
    
    .pricing-note {
        padding: 25px 20px;
        /* Add EXTRA safe area padding for mobile devices - DOUBLED for visibility */
        padding-bottom: max(100px, calc(80px + env(safe-area-inset-bottom)));
        margin-bottom: 40px;
    }
    
    .pricing-note p {
        font-size: 13px;
        text-align: left;
    }
    
    /* Pricing section EXTRA bottom padding for mobile */
    .pricing-section {
        padding-bottom: max(80px, calc(var(--section-padding) + 30px + env(safe-area-inset-bottom)));
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* DISABLE ALL HERO ANIMATIONS ON MOBILE - Testing for positioning issues */
    .animate-fade-in,
    .animate-fade-in-delay-1,
    .animate-fade-in-delay-2,
    .animate-fade-in-delay-3 {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center {
    text-align: center;
}

.section-placeholder {
    padding: var(--section-padding) 0;
}

/* ============================================
   WHAT YOU GET SECTION
   ============================================ */
.what-you-get-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0D1B2A 0%, #1B2838 100%);
    position: relative;
    overflow: hidden;
    margin-top: -5px;  /* Aggressive overlap to hide Chrome gap */
}

.what-you-get-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(164, 210, 51, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(164, 210, 51, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.what-you-get-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.what-you-get-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.what-you-get-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    line-height: 1.6;
}

.what-you-get-subtitle strong {
    color: var(--color-lime);
    font-weight: 600;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(164, 210, 51, 0.2);
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.deliverable-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-lime);
    transform: translateY(-3px);
}

.deliverable-item i {
    font-size: 24px;
    color: var(--color-lime);
    flex-shrink: 0;
}

.deliverable-item span {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.deliverable-item span strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* Trust Signals */
.what-you-get-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(164, 210, 51, 0.08);
    border: 1px solid rgba(164, 210, 51, 0.3);
    border-radius: 16px;
}

.trust-badge-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge-inline i {
    font-size: 20px;
    color: var(--color-lime);
}

.trust-badge-inline span {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge-inline span strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* CTA Area */
.what-you-get-cta {
    margin-top: 40px;
}

.what-you-get-note {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.6;
}

.what-you-get-note i {
    color: var(--color-lime);
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .what-you-get-section {
        padding: 60px 20px;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .what-you-get-trust {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .trust-badge-inline {
        justify-content: center;
        text-align: center;
    }
}

/* ============================================
   WORK GRID SECTION
   ============================================ */
.work-grid-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0D1B2A 0%, #1B2838 50%, #0D1B2A 100%);
    position: relative;
}

.work-grid-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-grid-section .section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.work-grid-section .section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Buttons */
.work-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(164, 210, 51, 0.1);
    border: 2px solid rgba(164, 210, 51, 0.3);
    color: var(--color-lime);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(164, 210, 51, 0.2);
    border-color: var(--color-lime);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--color-lime);
    color: var(--color-primary-dark);
    border-color: var(--color-lime);
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Work Card */
.work-card {
    background: #1B2F45 !important; /* LIGHTER BLUE - STANDS OUT FROM SECTION BG */
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(164, 210, 51, 0.4); /* THICKER LIME BORDER */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* ADD SHADOW FOR DEPTH */
}

.work-card.hidden {
    display: none;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(164, 210, 51, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Work Card Image */
.work-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--color-primary);
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-card-image img {
    transform: scale(1.1);
}

/* Work Card Overlay */
.work-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 27, 42, 0) 0%,
        rgba(13, 27, 42, 0.6) 60%,
        rgba(13, 27, 42, 0.9) 100%
    );
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-card:hover .work-card-overlay {
    opacity: 1;
}

/* Work Badge */
.work-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.work-badge.client-work {
    background: rgba(164, 210, 51, 0.9);
    color: var(--color-primary-dark);
}

.work-badge.concept-work {
    background: rgba(100, 149, 237, 0.9);
    color: white;
}

.work-badge.creative-work {
    background: rgba(255, 107, 107, 0.9);
    color: white;
}

/* Work Card CTA Button */
.work-card-cta {
    width: 50px;
    height: 50px;
    background: var(--color-lime);
    border: none;
    border-radius: 50%;
    color: var(--color-primary-dark);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-card-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(164, 210, 51, 0.5);
}

/* Work Card Content */
.work-card-content {
    padding: 25px;
}

.work-card-title {
    font-size: 24px; /* BIGGER */
    font-weight: 800; /* BOLDER */
    color: #FFFFFF !important; /* PURE WHITE - FORCE IT */
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* ADD SHADOW FOR EXTRA CONTRAST */
}

.work-card-category {
    font-size: 14px; /* BIGGER */
    color: #A4D233 !important; /* FORCE LIME GREEN */
    text-transform: uppercase;
    font-weight: 700; /* BOLDER */
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.work-card-description {
    font-size: 16px; /* BIGGER */
    color: #FFFFFF !important; /* PURE WHITE - NOT GRAY! */
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Work Card Tags */
.work-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.work-tag {
    padding: 6px 14px; /* BIGGER PADDING */
    background: rgba(164, 210, 51, 0.25) !important; /* DARKER BACKGROUND */
    border: 2px solid rgba(164, 210, 51, 0.8) !important; /* THICKER, MORE VISIBLE BORDER */
    border-radius: 20px;
    font-size: 13px; /* BIGGER */
    color: #A4D233 !important; /* PURE LIME - NOT FADED */
    font-weight: 700; /* EXTRA BOLD */
}

/* Responsive Work Grid */
@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .work-grid-section {
        padding: 60px 0;
    }
    
    .work-grid-section .section-header {
        margin-bottom: 40px;
    }
    
    .work-filters {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .work-card-image {
        height: 220px;
    }
    
    .work-card-content {
        padding: 20px;
    }
    
    .work-card-title {
        font-size: 20px;
    }
}

/* =================================================================
   TESTIMONIALS SECTION
   ================================================================= */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0D1B2A 0%, #1B2838 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(164, 210, 51, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(164, 210, 51, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-quote {
    margin-bottom: 30px;
}

.testimonial-quote .fa-quote-left {
    font-size: 32px;
    color: var(--color-lime);
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
}

.testimonial-quote p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 14px;
    color: var(--color-lime);
    margin: 0;
    font-weight: 600;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating .fa-star {
    color: var(--color-lime);
    font-size: 14px;
}

/* =================================================================
   FAQ SECTION
   ================================================================= */

.faq-section {
    padding: 100px 0;
    background: #F8F9FA;
}

.faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-lime);
    box-shadow: 0 4px 20px rgba(164, 210, 51, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0;
    font-family: var(--font-heading);
}

.faq-question .fa-chevron-down {
    color: var(--color-lime);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(13, 27, 42, 0.8);
    margin: 0;
}

.faq-answer strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.faq-cta p {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

/* Responsive: Testimonials & FAQ */
@media (max-width: 768px) {
    .testimonials-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background: linear-gradient(135deg, #0D1B2A 0%, #1A2332 100%);
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    color: var(--color-white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--color-lime);
    margin-top: 5px;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--color-lime);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(164,210,51,0.3);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 20px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-lime);
    color: var(--color-primary);
    border-color: var(--color-lime);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-lime);
    background: rgba(255,255,255,0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.btn-whatsapp:hover {
    background: #20BA5A !important;
    transform: translateY(-2px);
}

/* Mobile Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #000000;
    border-top: 1px solid rgba(164,210,51,0.2);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.8);
}

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

.footer-branding h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-lime);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-legal {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contact h4,
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-contact a,
.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--color-lime);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--color-lime);
    color: var(--color-primary);
    border-color: var(--color-lime);
    transform: translateY(-3px);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .hero-carousel,
    .scroll-indicator {
        display: none;
    }
}