
        /* ==================== CSS VARIABLES ==================== */
        :root {
            --primary-dark: #111827;
            --secondary-dark: #374151;
            --accent-green: #10B981;
            --light-bg: #F9FAFB;
            --accent-green-light: #34D399;
            --accent-green-dark: #059669;
            --neon-glow: 0 0 20px rgba(16, 185, 129, 0.4), 0 0 40px rgba(16, 185, 129, 0.2);
            --neon-glow-strong: 0 0 30px rgba(16, 185, 129, 0.6), 0 0 60px rgba(16, 185, 129, 0.3);
            --gradient-primary: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
            --gradient-neon: linear-gradient(135deg, #10B981 0%, #34D399 50%, #6EE7B7 100%);
            --gradient-dark: linear-gradient(135deg, #111827 0%, #1F2937 50%, #374151 100%);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* ==================== RESET & BASE ==================== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'DM Sans', 'Inter', sans-serif;
            background-color: var(--primary-dark);
            color: var(--light-bg);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-smooth);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ==================== SCROLLBAR ==================== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-green);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-green-light);
        }

        /* ==================== PRELOADER ==================== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.5s, visibility 0.5s;
        }
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        .preloader-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(16, 185, 129, 0.2);
            border-top-color: var(--accent-green);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ==================== FLOATING PARTICLES ==================== */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-green);
            border-radius: 50%;
            opacity: 0.3;
            animation: floatParticle 15s infinite linear;
        }
        @keyframes floatParticle {
            0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) translateX(100px) scale(1); opacity: 0; }
        }

        /* ==================== CURSOR GLOW ==================== */
        .cursor-glow {
            position: fixed;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease;
        }

        /* ==================== SECTION STYLES ==================== */
        .section {
            position: relative;
            padding: 100px 0;
            z-index: 2;
        }
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-green);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        .section-title {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--light-bg) 0%, #d1d5db 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-title .highlight {
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: #9CA3AF;
            max-width: 650px;
            margin: 0 auto 50px;
        }
        .text-center {
            text-align: center;
        }

        /* ==================== BUTTONS ==================== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border: none;
            border-radius: 12px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--neon-glow-strong);
        }
        .btn-primary::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;
        }
        .btn-primary:hover::before {
            left: 100%;
        }
        .btn-outline {
            background: transparent;
            color: var(--accent-green);
            border: 2px solid var(--accent-green);
        }
        .btn-outline:hover {
            background: var(--accent-green);
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--neon-glow);
        }
        .btn-glass {
            background: var(--glass-bg);
            color: var(--light-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
        }
        .btn-glass:hover {
            background: rgba(16, 185, 129, 0.15);
            border-color: var(--accent-green);
            transform: translateY(-3px);
        }

        /* ==================== NAVIGATION ==================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 16px 0;
            z-index: 1000;
            transition: var(--transition-smooth);
            background: transparent;
        }
        .navbar.scrolled {
            background: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(16, 185, 129, 0.1);
            padding: 10px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--light-bg);
            z-index: 1001;
        }
        .nav-logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            box-shadow: var(--neon-glow);
            position: relative;
            overflow: hidden;
        }
        .nav-logo-icon::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2));
            border-radius: inherit;
        }
        .nav-logo span {
            color: var(--accent-green);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-link {
            padding: 10px 18px;
            color: #D1D5DB;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 10px;
            transition: var(--transition-smooth);
            position: relative;
        }
        .nav-link:hover,
        .nav-link.active {
            color: var(--accent-green);
            background: rgba(16, 185, 129, 0.1);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-green);
            border-radius: 2px;
            transition: width 0.3s;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 30px;
        }
        .nav-cta {
            margin-left: 10px;
        }
        .nav-cta .btn {
            padding: 10px 24px;
            font-size: 0.9rem;
        }

        /* Mobile Toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
        }
        .nav-toggle span {
            width: 28px;
            height: 3px;
            background: var(--light-bg);
            border-radius: 3px;
            transition: var(--transition-smooth);
        }
        .nav-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
            background: var(--accent-green);
        }
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
            background: var(--accent-green);
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }
        .hero-bg-gradient {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 20% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
        }
        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .hero-text {
            max-width: 620px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 22px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--accent-green);
            margin-bottom: 28px;
            animation: pulse-border 2s ease-in-out infinite;
        }
        @keyframes pulse-border {
            0%, 100% { border-color: rgba(16, 185, 129, 0.3); }
            50% { border-color: rgba(16, 185, 129, 0.7); }
        }
        .hero-badge i {
            animation: bounce-icon 2s ease-in-out infinite;
        }
        @keyframes bounce-icon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }
        .hero-title {
            font-size: clamp(2.5rem, 5.5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--light-bg);
        }
        .hero-title .gradient-text {
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        .hero-title .gradient-text::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-neon);
            border-radius: 2px;
            opacity: 0.5;
        }
        .hero-description {
            font-size: 1.15rem;
            color: #9CA3AF;
            margin-bottom: 36px;
            line-height: 1.8;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 48px;
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-green);
            text-shadow: var(--neon-glow);
        }
        .hero-stat-label {
            font-size: 0.85rem;
            color: #6B7280;
            margin-top: 4px;
        }

        /* Hero Image Side */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 520px;
        }
        .hero-image-main {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(16, 185, 129, 0.15);
            position: relative;
            z-index: 2;
            object-fit: cover;
            height: 450px;
        }
        .hero-image-glow {
            position: absolute;
            top: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 1;
            animation: glow-pulse 3s ease-in-out infinite;
        }
        @keyframes glow-pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 1; }
        }
        .hero-float-card {
            position: absolute;
            background: rgba(17, 24, 39, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 16px;
            padding: 16px 20px;
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }
        .hero-float-card.card-1 {
            top: 20px;
            right: -30px;
            animation-delay: 0s;
        }
        .hero-float-card.card-2 {
            bottom: 40px;
            left: -20px;
            animation-delay: 2s;
        }
        .hero-float-card.card-3 {
            bottom: -10px;
            right: 30px;
            animation-delay: 4s;
        }
        .float-card-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            font-size: 1rem;
        }
        .float-card-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--light-bg);
        }
        .float-card-desc {
            font-size: 0.78rem;
            color: #9CA3AF;
        }

        /* ==================== ABOUT SECTION ==================== */
        .about {
            background: var(--primary-dark);
            position: relative;
        }
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }
        .about-image-container {
            position: relative;
        }
        .about-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 24px;
            border: 1px solid rgba(16, 185, 129, 0.15);
        }
        .about-image-overlay {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gradient-primary);
            border-radius: 16px;
            padding: 24px 28px;
            color: white;
            text-align: center;
            box-shadow: var(--neon-glow);
        }
        .about-image-overlay .number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
        }
        .about-image-overlay .label {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        .about-text h2 {
            margin-bottom: 20px;
        }
        .about-description {
            color: #9CA3AF;
            font-size: 1.05rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        /* Vision, Mission, Values, Principles Cards */
        .vmvp-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .vmvp-card {
            background: rgba(55, 65, 81, 0.3);
            border: 1px solid rgba(16, 185, 129, 0.1);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .vmvp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-neon);
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        .vmvp-card:hover::before {
            transform: scaleX(1);
        }
        .vmvp-card:hover {
            transform: translateY(-8px);
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        .vmvp-icon {
            width: 60px;
            height: 60px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--accent-green);
            margin: 0 auto 16px;
            transition: var(--transition-smooth);
        }
        .vmvp-card:hover .vmvp-icon {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--neon-glow);
            transform: scale(1.1) rotate(5deg);
        }
        .vmvp-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--light-bg);
        }
        .vmvp-card p {
            font-size: 0.9rem;
            color: #9CA3AF;
            line-height: 1.6;
        }

        /* ==================== MILESTONES SECTION ==================== */
        .milestones {
            background: linear-gradient(180deg, var(--primary-dark) 0%, rgba(16, 185, 129, 0.03) 50%, var(--primary-dark) 100%);
        }
        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .milestone-card {
            background: rgba(55, 65, 81, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.1);
            border-radius: 20px;
            padding: 40px 24px;
            text-align: center;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .milestone-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-neon);
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        .milestone-card:hover::after {
            transform: scaleX(1);
        }
        .milestone-card:hover {
            transform: translateY(-10px);
            border-color: rgba(16, 185, 129, 0.3);
            background: rgba(16, 185, 129, 0.05);
        }
        .milestone-icon {
            width: 70px;
            height: 70px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.6rem;
            color: var(--accent-green);
            transition: var(--transition-smooth);
        }
        .milestone-card:hover .milestone-icon {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--neon-glow);
            transform: scale(1.15);
        }
        .milestone-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--accent-green);
            text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
            margin-bottom: 8px;
        }
        .milestone-label {
            font-size: 0.95rem;
            color: #9CA3AF;
            font-weight: 500;
        }

        /* ==================== FEATURES / WHY CHOOSE US ==================== */
        .features {
            background: var(--primary-dark);
            position: relative;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .feature-card {
            background: rgba(55, 65, 81, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.08);
            border-radius: 20px;
            padding: 36px 28px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            group: true;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }
        .feature-card-number {
            position: absolute;
            top: 16px;
            right: 20px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: rgba(16, 185, 129, 0.06);
            line-height: 1;
        }
        .feature-icon-wrapper {
            width: 56px;
            height: 56px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--accent-green);
            margin-bottom: 20px;
            transition: var(--transition-smooth);
            position: relative;
            z-index: 1;
        }
        .feature-card:hover .feature-icon-wrapper {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--neon-glow);
            transform: rotate(10deg) scale(1.1);
        }
        .feature-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--light-bg);
            position: relative;
            z-index: 1;
        }
        .feature-card p {
            font-size: 0.92rem;
            color: #9CA3AF;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* ==================== WORK PROCESS ==================== */
        .process {
            background: linear-gradient(180deg, var(--primary-dark), rgba(16,185,129,0.02), var(--primary-dark));
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }
        .process-grid::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-green), transparent);
            opacity: 0.3;
            z-index: 0;
        }
        .process-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .process-step {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            box-shadow: var(--neon-glow);
            position: relative;
            transition: var(--transition-smooth);
        }
        .process-step::after {
            content: '';
            position: absolute;
            inset: -6px;
            border: 2px dashed rgba(16, 185, 129, 0.3);
            border-radius: 50%;
            animation: rotate-border 10s linear infinite;
        }
        @keyframes rotate-border {
            to { transform: rotate(360deg); }
        }
        .process-card:hover .process-step {
            transform: scale(1.15);
            box-shadow: var(--neon-glow-strong);
        }
        .process-icon {
            font-size: 1.5rem;
        }
        .process-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--light-bg);
        }
        .process-card p {
            font-size: 0.88rem;
            color: #9CA3AF;
            line-height: 1.6;
        }

        /* ==================== PACKAGES SECTION ==================== */
        .packages {
            background: var(--primary-dark);
        }
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: start;
        }
        .package-card {
            background: rgba(55, 65, 81, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.1);
            border-radius: 24px;
            padding: 40px 32px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .package-card.featured {
            border-color: var(--accent-green);
            background: rgba(16, 185, 129, 0.05);
            transform: scale(1.05);
        }
        .package-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--gradient-primary);
            color: white;
            padding: 6px 40px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            transform: rotate(45deg);
        }
        .package-card:hover {
            transform: translateY(-10px);
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }
        .package-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        .package-header {
            text-align: center;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 24px;
        }
        .package-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--accent-green);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .package-price {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--light-bg);
        }
        .package-price span {
            font-size: 1rem;
            font-weight: 400;
            color: #9CA3AF;
        }
        .package-features {
            margin-bottom: 30px;
        }
        .package-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: #D1D5DB;
            font-size: 0.95rem;
        }
        .package-features li i {
            color: var(--accent-green);
            font-size: 0.85rem;
        }
        .package-features li.disabled {
            color: #6B7280;
            text-decoration: line-through;
        }
        .package-features li.disabled i {
            color: #6B7280;
        }
        .package-btn {
            width: 100%;
            justify-content: center;
        }

        /* ==================== SERVICES SECTION ==================== */
        .services {
            background: linear-gradient(180deg, var(--primary-dark), rgba(16,185,129,0.02), var(--primary-dark));
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .service-card {
            background: rgba(55, 65, 81, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.08);
            border-radius: 24px;
            padding: 40px 32px;
            display: flex;
            gap: 24px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-neon);
            transform: scaleY(0);
            transition: transform 0.4s;
            transform-origin: bottom;
        }
        .service-card:hover::before {
            transform: scaleY(1);
        }
        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(16, 185, 129, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }
        .service-icon-box {
            width: 64px;
            height: 64px;
            min-width: 64px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-green);
            transition: var(--transition-smooth);
        }
        .service-card:hover .service-icon-box {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--neon-glow);
        }
        .service-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--light-bg);
        }
        .service-content p {
            font-size: 0.93rem;
            color: #9CA3AF;
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-green);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
        }
        .service-link:hover {
            gap: 14px;
            color: var(--accent-green-light);
        }

        /* ==================== SERVICE BOOKING FORM ==================== */
        .booking {
            background: var(--primary-dark);
            position: relative;
        }
        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            background: rgba(55, 65, 81, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.1);
            border-radius: 28px;
            padding: 60px;
            position: relative;
            overflow: hidden;
        }
        .booking-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.05), transparent);
            border-radius: 50%;
        }
        .booking-info {
            position: relative;
            z-index: 1;
        }
        .booking-info h2 {
            margin-bottom: 16px;
        }
        .booking-info p {
            color: #9CA3AF;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .booking-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .booking-feature {
            display: flex;
            align-items: center;
            gap: 14px;
            color: #D1D5DB;
        }
        .booking-feature i {
            width: 32px;
            height: 32px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-green);
            font-size: 0.85rem;
        }
        .booking-form {
            position: relative;
            z-index: 1;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #D1D5DB;
            margin-bottom: 8px;
        }
        .form-control {
            width: 100%;
            padding: 14px 18px;
            background: rgba(17, 24, 39, 0.8);
            border: 1px solid rgba(55, 65, 81, 0.5);
            border-radius: 12px;
            color: var(--light-bg);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            outline: none;
        }
        .form-control:focus {
            border-color: var(--accent-green);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }
        .form-control::placeholder {
            color: #6B7280;
        }
        select.form-control {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }
        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonials {
            background: linear-gradient(180deg, var(--primary-dark), rgba(16,185,129,0.03), var(--primary-dark));
            overflow: hidden;
        }
        .testimonial-carousel {
            position: relative;
            overflow: hidden;
        }
        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .testimonial-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            padding: 0 10px;
        }
        .testimonial-card {
            background: rgba(55, 65, 81, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.08);
            border-radius: 20px;
            padding: 32px;
            transition: var(--transition-smooth);
        }
        .testimonial-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-4px);
        }
        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }
        .testimonial-stars i {
            color: #FBBF24;
            font-size: 0.9rem;
        }
        .testimonial-text {
            font-size: 0.95rem;
            color: #D1D5DB;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(16, 185, 129, 0.3);
        }
        .testimonial-name {
            font-weight: 700;
            color: var(--light-bg);
            font-size: 0.95rem;
        }
        .testimonial-role {
            font-size: 0.82rem;
            color: var(--accent-green);
        }
        .carousel-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        .carousel-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: var(--accent-green);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .carousel-btn:hover {
            background: var(--accent-green);
            color: var(--primary-dark);
            box-shadow: var(--neon-glow);
        }
        .carousel-dots {
            display: flex;
            gap: 8px;
        }
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.2);
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .carousel-dot.active {
            background: var(--accent-green);
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
            width: 30px;
            border-radius: 5px;
        }

        /* ==================== FAQ SECTION ==================== */
        .faq {
            background: var(--primary-dark);
        }
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: rgba(55, 65, 81, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.08);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: rgba(16, 185, 129, 0.2);
        }
        .faq-item.active {
            border-color: rgba(16, 185, 129, 0.3);
            background: rgba(16, 185, 129, 0.03);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            gap: 16px;
        }
        .faq-question h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--light-bg);
            flex: 1;
        }
        .faq-toggle {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-green);
            transition: var(--transition-smooth);
        }
        .faq-item.active .faq-toggle {
            background: var(--accent-green);
            color: var(--primary-dark);
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        .faq-answer-content {
            padding: 0 24px 20px;
            color: #9CA3AF;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: var(--primary-dark);
            padding: 80px 0;
        }
        .cta-wrapper {
            background: var(--gradient-primary);
            border-radius: 28px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 40%);
        }
        .cta-wrapper::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 20px,
                rgba(255,255,255,0.02) 20px,
                rgba(255,255,255,0.02) 40px
            );
        }
        .cta-content {
            position: relative;
            z-index: 1;
        }
        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
            -webkit-text-fill-color: white;
            background: none;
        }
        .cta-content p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            margin: 0 auto 36px;
        }
        .cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cta-btn-white {
            background: white;
            color: var(--primary-dark);
            padding: 16px 36px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-smooth);
            border: none;
            cursor: pointer;
            font-family: 'Space Grotesk', sans-serif;
        }
        .cta-btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .cta-btn-ghost {
            background: transparent;
            color: white;
            padding: 16px 36px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-smooth);
            border: 2px solid rgba(255, 255, 255, 0.4);
            cursor: pointer;
            font-family: 'Space Grotesk', sans-serif;
        }
        .cta-btn-ghost:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            transform: translateY(-3px);
        }

        /* ==================== CONTACT SECTION ==================== */
        .contact {
            background: linear-gradient(180deg, var(--primary-dark), rgba(16,185,129,0.02), var(--primary-dark));
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }
        .contact-info-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: rgba(55, 65, 81, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.08);
            border-radius: 16px;
            padding: 24px;
            transition: var(--transition-smooth);
        }
        .contact-info-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateX(8px);
        }
        .contact-info-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--accent-green);
        }
        .contact-info-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--light-bg);
            margin-bottom: 4px;
        }
        .contact-info-card p, .contact-info-card a {
            font-size: 0.9rem;
            color: #9CA3AF;
        }
        .contact-info-card a:hover {
            color: var(--accent-green);
        }
        .contact-map {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(16, 185, 129, 0.1);
            height: 200px;
        }
        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(80%) invert(92%) contrast(83%);
        }
        .contact-form-wrapper {
            background: rgba(55, 65, 81, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.1);
            border-radius: 24px;
            padding: 40px;
        }
        .contact-form-wrapper h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--light-bg);
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: rgba(17, 24, 39, 0.98);
            border-top: 1px solid rgba(16, 185, 129, 0.1);
            padding-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 40px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-col h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--light-bg);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        .footer-about-text {
            color: #9CA3AF;
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(55, 65, 81, 0.3);
            border: 1px solid rgba(16, 185, 129, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9CA3AF;
            transition: var(--transition-smooth);
        }
        .footer-social a:hover {
            background: var(--accent-green);
            color: white;
            border-color: var(--accent-green);
            transform: translateY(-4px);
            box-shadow: var(--neon-glow);
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #9CA3AF;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-smooth);
        }
        .footer-links a:hover {
            color: var(--accent-green);
            transform: translateX(6px);
        }
        .footer-links a::before {
            content: '›';
            color: var(--accent-green);
            font-weight: 700;
        }
        .newsletter-text {
            color: #9CA3AF;
            font-size: 0.9rem;
            margin-bottom: 16px;
            line-height: 1.6;
        }
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            background: rgba(17, 24, 39, 0.8);
            border: 1px solid rgba(55, 65, 81, 0.5);
            border-radius: 10px;
            color: var(--light-bg);
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition-smooth);
            font-family: 'DM Sans', sans-serif;
        }
        .newsletter-input:focus {
            border-color: var(--accent-green);
        }
        .newsletter-btn {
            padding: 12px 20px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 10px;
            color: white;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-size: 1rem;
        }
        .newsletter-btn:hover {
            box-shadow: var(--neon-glow);
            transform: translateY(-2px);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-copyright {
            color: #6B7280;
            font-size: 0.85rem;
        }
        .footer-legal {
            display: flex;
            gap: 24px;
        }
        .footer-legal a {
            color: #6B7280;
            font-size: 0.85rem;
        }
        .footer-legal a:hover {
            color: var(--accent-green);
        }

        /* ==================== BACK TO TOP ==================== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 14px;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition-smooth);
            box-shadow: var(--neon-glow);
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: var(--neon-glow-strong);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-text {
                max-width: 100%;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero-visual {
                display: none;
            }
            .vmvp-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .milestones-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-grid::before {
                display: none;
            }
            .packages-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }
            .package-card.featured {
                transform: none;
            }
            .package-card.featured:hover {
                transform: translateY(-10px);
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .booking-wrapper {
                grid-template-columns: 1fr;
                padding: 40px;
            }
            .about-grid {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 70px 0;
            }
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: rgba(17, 24, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px 30px;
                gap: 4px;
                transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                border-left: 1px solid rgba(16, 185, 129, 0.1);
                z-index: 1000;
                overflow-y: auto;
            }
            .nav-menu.active {
                right: 0;
            }
            .nav-toggle {
                display: flex;
            }
            .nav-link {
                width: 100%;
                padding: 14px 16px;
            }
            .nav-cta {
                margin-left: 0;
                margin-top: 10px;
                width: 100%;
            }
            .nav-cta .btn {
                width: 100%;
                justify-content: center;
            }
            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
            }
            .vmvp-grid {
                grid-template-columns: 1fr;
            }
            .milestones-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .testimonial-slide {
                grid-template-columns: 1fr;
            }
            .cta-wrapper {
                padding: 50px 30px;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .service-card {
                flex-direction: column;
            }
            .booking-wrapper {
                padding: 30px 20px;
            }
            .contact-form-wrapper {
                padding: 30px 20px;
            }
            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            .milestone-number {
                font-size: 2.2rem;
            }
            .package-price {
                font-size: 2.5rem;
            }
        }

        /* ==================== MOBILE NAV OVERLAY ==================== */
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
        }
        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
