
        /* ===== CSS VARIABLES ===== */
        :root {
            --teal: #008080;
            --teal-dark: #006666;
            --teal-light: #00a3a3;
            --teal-glow: rgba(0, 128, 128, 0.4);
            --coral: #FF6F61;
            --coral-dark: #e55a4f;
            --coral-light: #ff8a7a;
            --coral-glow: rgba(255, 111, 97, 0.4);
            --white: #ffffff;
            --off-white: #f8f9fa;
            --light-gray: #e9ecef;
            --gray: #6c757d;
            --dark: #1a1a2e;
            --dark-2: #16213e;
            --neon-teal: #00fff2;
            --neon-coral: #ff6b6b;
            --gradient-1: linear-gradient(135deg, var(--teal), var(--coral));
            --gradient-2: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
            --gradient-3: linear-gradient(135deg, var(--coral), var(--teal));
            --gradient-neon: linear-gradient(135deg, var(--neon-teal), var(--neon-coral));
            --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
            --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
            --shadow-neon-teal: 0 0 20px var(--teal-glow), 0 0 40px rgba(0,128,128,0.2);
            --shadow-neon-coral: 0 0 20px var(--coral-glow), 0 0 40px rgba(255,111,97,0.2);
            --border-radius: 16px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition-smooth: all 0.6s ease;
        }

        /* ===== RESET & BASE ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        ul { list-style: none; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 10px;
        }

        /* ===== FLOATING ELEMENTS ===== */
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
            animation: floatShape 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--teal);
            top: 10%;
            left: -5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--coral);
            top: 60%;
            right: -3%;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: var(--teal-light);
            bottom: 20%;
            left: 30%;
            animation-delay: -10s;
        }

        .shape-4 {
            width: 250px;
            height: 250px;
            background: var(--coral-light);
            top: 40%;
            left: 60%;
            animation-delay: -15s;
        }

        @keyframes floatShape {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(30px, -50px) rotate(90deg) scale(1.1); }
            50% { transform: translate(-20px, 20px) rotate(180deg) scale(0.9); }
            75% { transform: translate(50px, 30px) rotate(270deg) scale(1.05); }
        }

        /* ===== SECTION STYLES ===== */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 24px;
            background: linear-gradient(135deg, rgba(0,128,128,0.1), rgba(255,111,97,0.1));
            border: 1px solid rgba(0,128,128,0.2);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--teal);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .section-badge i {
            color: var(--coral);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .section-title span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            font-family: 'Space Grotesk', sans-serif;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: 0.5s;
            z-index: -1;
        }

        .btn:hover::before {
            left: 0;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: var(--white);
            box-shadow: var(--shadow-neon-teal);
        }

        .btn-primary::before {
            background: var(--gradient-3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px var(--teal-glow);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.4);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--teal);
            border-color: var(--white);
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            color: var(--teal);
            border: 2px solid var(--teal);
        }

        .btn-outline:hover {
            background: var(--teal);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-neon-teal);
        }

        .btn-coral {
            background: var(--coral);
            color: var(--white);
            box-shadow: var(--shadow-neon-coral);
        }

        .btn-coral:hover {
            background: var(--coral-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px var(--coral-glow);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            padding: 15px 0;
            transition: var(--transition-smooth);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,128,128,0.1);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10001;
        }

        .nav-logo .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--white);
            box-shadow: var(--shadow-neon-teal);
            animation: pulse-glow 3s infinite;
            position: relative;
            overflow: hidden;
        }

        .nav-logo .logo-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: var(--shadow-neon-teal); }
            50% { box-shadow: 0 0 30px var(--teal-glow), 0 0 60px rgba(0,128,128,0.3); }
        }

        .nav-logo .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            transition: var(--transition);
        }

        .nav-logo .logo-text .highlight {
            color: var(--coral);
        }

        .navbar.scrolled .nav-logo .logo-text {
            color: var(--dark);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-link {
            padding: 10px 18px;
            font-size: 0.95rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
            border-radius: 10px;
            transition: var(--transition);
            position: relative;
            font-family: 'Space Grotesk', sans-serif;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            border-radius: 2px;
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--white);
        }

        .navbar.scrolled .nav-link {
            color: var(--dark);
        }

        .navbar.scrolled .nav-link:hover,
        .navbar.scrolled .nav-link.active {
            color: var(--teal);
            background: rgba(0,128,128,0.08);
        }

        .nav-cta {
            margin-left: 15px;
        }

        .nav-cta .btn {
            padding: 12px 28px;
            font-size: 0.9rem;
        }

        /* Hamburger */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 10001;
            padding: 5px;
        }

        .nav-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: var(--transition);
        }

        .navbar.scrolled .nav-toggle span {
            background: var(--dark);
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0a0a23 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.15;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--neon-teal);
            border-radius: 50%;
            animation: particleFloat 15s infinite linear;
            box-shadow: 0 0 10px var(--neon-teal);
        }

        .particle:nth-child(odd) {
            background: var(--coral-light);
            box-shadow: 0 0 10px var(--coral-light);
        }

        @keyframes particleFloat {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
        }

        .hero-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: orbFloat 10s infinite ease-in-out;
        }

        .hero-gradient-orb.orb-1 {
            width: 500px;
            height: 500px;
            background: var(--teal);
            opacity: 0.15;
            top: -100px;
            right: -100px;
        }

        .hero-gradient-orb.orb-2 {
            width: 400px;
            height: 400px;
            background: var(--coral);
            opacity: 0.1;
            bottom: -100px;
            left: -100px;
            animation-delay: -5s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, -30px) scale(1.1); }
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
            padding-top: 80px;
        }

        .hero-content {
            color: var(--white);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--neon-teal);
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease;
            font-family: 'Space Grotesk', sans-serif;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--coral);
            border-radius: 50%;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-title .neon-text {
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            position: relative;
        }

        .hero-title .coral-text {
            color: var(--coral);
            -webkit-text-fill-color: var(--coral);
        }

        .hero-subtitle {
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.7);
            margin-bottom: 36px;
            max-width: 520px;
            animation: fadeInUp 0.8s ease 0.4s both;
            font-family: 'Space Grotesk', sans-serif;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.5s both;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-1);
            border-radius: 26px;
            z-index: -1;
            animation: borderGlow 3s infinite alternate;
        }

        @keyframes borderGlow {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
            border-radius: 24px;
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 16px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 6s ease-in-out infinite;
            color: var(--white);
        }

        .hero-floating-card.card-1 {
            bottom: 30px;
            left: -30px;
            animation-delay: 0s;
        }

        .hero-floating-card.card-2 {
            top: 30px;
            right: -20px;
            animation-delay: -3s;
        }

        .hero-floating-card .card-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .hero-floating-card .card-text h4 {
            font-size: 0.9rem;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
        }

        .hero-floating-card .card-text p {
            font-size: 0.75rem;
            opacity: 0.7;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--off-white);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
        }

        .about-image .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 140px;
            height: 140px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            box-shadow: var(--shadow-neon-teal);
            animation: pulse-glow 3s infinite;
        }

        .experience-badge .number {
            font-size: 2.8rem;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .about-content h2 {
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .about-content h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 30px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: var(--white);
            border-radius: 12px;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .about-feature-item:hover {
            border-color: var(--teal);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        .about-feature-item .icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: linear-gradient(135deg, rgba(0,128,128,0.1), rgba(255,111,97,0.1));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 1rem;
        }

        .about-feature-item span {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--dark);
            font-family: 'Space Grotesk', sans-serif;
        }

        /* Vision Mission Values Cards */
        .vmv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .vmv-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 36px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            group: true;
        }

        .vmv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .vmv-card:hover::before {
            transform: scaleX(1);
        }

        .vmv-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .vmv-card .vmv-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(0,128,128,0.1), rgba(255,111,97,0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--teal);
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .vmv-card:hover .vmv-icon {
            background: var(--gradient-1);
            color: var(--white);
            transform: rotate(10deg) scale(1.1);
            box-shadow: var(--shadow-neon-teal);
        }

        .vmv-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .vmv-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== MILESTONES ===== */
        .milestones {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
            position: relative;
            overflow: hidden;
        }

        .milestones::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/1648776/pexels-photo-1648776.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.08;
        }

        .milestones .section-title {
            color: var(--white);
        }

        .milestones .section-desc {
            color: rgba(255,255,255,0.6);
        }

        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .milestone-card {
            text-align: center;
            padding: 40px 24px;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .milestone-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .milestone-card:hover::after {
            transform: scaleX(1);
        }

        .milestone-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .milestone-card .milestone-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            margin: 0 auto 20px;
            box-shadow: var(--shadow-neon-teal);
        }

        .milestone-card .milestone-number {
            font-size: 3rem;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .milestone-card .milestone-label {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 500;
        }

        /* ===== FEATURES / WHY CHOOSE US ===== */
        .features {
            background: var(--white);
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            text-align: center;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .feature-card > * {
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .feature-card:hover > * {
            color: var(--white);
        }

        .feature-card .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(0,128,128,0.1), rgba(255,111,97,0.1));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--teal);
            margin: 0 auto 24px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: rgba(255,255,255,0.2);
            color: var(--white);
            transform: rotate(10deg) scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .feature-card:hover h3 {
            color: var(--white);
        }

        .feature-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .feature-card:hover p {
            color: rgba(255,255,255,0.85);
        }

        .feature-number {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 4rem;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            color: rgba(0,128,128,0.06);
            line-height: 1;
            transition: var(--transition);
        }

        .feature-card:hover .feature-number {
            color: rgba(255,255,255,0.15);
        }

        /* ===== WORK PROCESS ===== */
        .process {
            background: var(--off-white);
            position: relative;
            overflow: hidden;
        }

        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-1);
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 50px;
            position: relative;
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-step-content {
            width: 42%;
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            position: relative;
        }

        .process-step-content:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--teal);
        }

        .process-step-number {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--white);
            z-index: 3;
            box-shadow: var(--shadow-neon-teal);
            font-family: 'Playfair Display', serif;
            border: 4px solid var(--off-white);
        }

        .process-step-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .process-step-content .step-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(0,128,128,0.1), rgba(255,111,97,0.1));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 1.2rem;
            margin-bottom: 16px;
        }

        .process-step-content p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== PACKAGES ===== */
        .packages {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
            position: relative;
            overflow: hidden;
        }

        .packages::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.06;
        }

        .packages .section-title {
            color: var(--white);
        }

        .packages .section-desc {
            color: rgba(255,255,255,0.6);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .package-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--border-radius);
            padding: 40px 32px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .package-card.popular {
            border-color: var(--coral);
            transform: scale(1.05);
        }

        .package-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--coral);
            color: var(--white);
            padding: 6px 40px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: rotate(45deg);
            font-family: 'Space Grotesk', sans-serif;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            border-color: var(--teal);
        }

        .package-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .package-card .package-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--white);
            margin: 0 auto 20px;
            box-shadow: var(--shadow-neon-teal);
        }

        .package-card h3 {
            color: var(--white);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .package-price {
            margin: 20px 0;
        }

        .package-price .amount {
            font-size: 3rem;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .package-price .period {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        .package-features {
            text-align: left;
            margin: 24px 0;
        }

        .package-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            color: rgba(255,255,255,0.75);
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .package-features li i {
            color: var(--neon-teal);
            font-size: 0.8rem;
        }

        .package-card .btn {
            width: 100%;
            justify-content: center;
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--off-white);
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .service-card-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }

        .service-card-image .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
        }

        .service-card-image .service-icon-float {
            position: absolute;
            top: 16px;
            left: 16px;
            width: 54px;
            height: 54px;
            background: var(--gradient-1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--white);
            box-shadow: var(--shadow-neon-teal);
        }

        .service-card-body {
            padding: 28px;
        }

        .service-card-body h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .service-card-body p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.75;
        }

        .service-card-body .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            color: var(--teal);
            font-weight: 600;
            font-size: 0.9rem;
            font-family: 'Space Grotesk', sans-serif;
        }

        .service-card-body .service-link:hover {
            gap: 12px;
            color: var(--coral);
        }

        /* ===== BOOKING FORM ===== */
        .booking {
            background: var(--white);
            position: relative;
        }

        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .booking-info h2 {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .booking-info h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .booking-info p {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .booking-benefits {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .booking-benefit {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .booking-benefit .b-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: linear-gradient(135deg, rgba(0,128,128,0.1), rgba(255,111,97,0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 1rem;
        }

        .booking-benefit span {
            font-weight: 600;
            color: var(--dark);
            font-family: 'Space Grotesk', sans-serif;
        }

        .booking-form-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .booking-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
        }

        .booking-form-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            text-align: center;
            color: var(--dark);
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--dark);
            margin-bottom: 6px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--light-gray);
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            background: var(--off-white);
            color: var(--dark);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 4px rgba(0,128,128,0.1);
            background: var(--white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .booking-form-card .btn {
            width: 100%;
            justify-content: center;
            padding: 16px;
            font-size: 1.05rem;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--off-white);
            position: relative;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 32px;
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            position: relative;
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 5rem;
            font-family: 'Playfair Display', serif;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.15;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .testimonial-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 16px;
        }

        .testimonial-stars i {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .testimonial-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 16px;
            border-top: 1px solid var(--light-gray);
        }

        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid;
            border-image: var(--gradient-1) 1;
            border-radius: 50%;
        }

        .testimonial-author .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.1rem;
            font-family: 'Playfair Display', serif;
            min-width: 50px;
        }

        .testimonial-author h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            font-family: 'Space Grotesk', sans-serif;
        }

        .testimonial-author span {
            font-size: 0.82rem;
            color: var(--teal);
            font-weight: 500;
        }

        /* ===== FAQ ===== */
        .faq {
            background: var(--white);
            position: relative;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--off-white);
            border-radius: 14px;
            margin-bottom: 14px;
            border: 1px solid var(--light-gray);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active {
            border-color: var(--teal);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 28px;
            cursor: pointer;
            transition: var(--transition);
            gap: 16px;
        }

        .faq-question:hover {
            background: rgba(0,128,128,0.03);
        }

        .faq-question h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--dark);
            font-family: 'Space Grotesk', sans-serif;
            flex: 1;
        }

        .faq-question .faq-toggle {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: linear-gradient(135deg, rgba(0,128,128,0.1), rgba(255,111,97,0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .faq-item.active .faq-toggle {
            background: var(--gradient-1);
            color: var(--white);
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 28px 22px;
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: var(--gradient-1);
            position: relative;
            padding: 80px 0;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.1;
        }

        .cta-shapes .cta-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }

        .cta-shape-1 {
            width: 200px;
            height: 200px;
            top: -50px;
            left: -50px;
            animation: float 8s infinite;
        }

        .cta-shape-2 {
            width: 150px;
            height: 150px;
            bottom: -30px;
            right: 10%;
            animation: float 6s infinite reverse;
        }

        .cta-shape-3 {
            width: 100px;
            height: 100px;
            top: 20%;
            right: -20px;
            animation: float 10s infinite;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            color: var(--white);
        }

        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 36px;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .btn-white {
            background: var(--white);
            color: var(--teal);
            font-weight: 700;
        }

        .cta-buttons .btn-white:hover {
            background: var(--dark);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* ===== CONTACT ===== */
        .contact {
            background: var(--off-white);
            position: relative;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-info h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 10px;
        }

        .contact-info h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-info > p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .contact-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: var(--white);
            border-radius: 14px;
            border: 1px solid var(--light-gray);
            transition: var(--transition);
        }

        .contact-card:hover {
            border-color: var(--teal);
            box-shadow: var(--shadow-sm);
            transform: translateX(5px);
        }

        .contact-card .c-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
            box-shadow: var(--shadow-neon-teal);
        }

        .contact-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .contact-card p, .contact-card a {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .contact-card a:hover {
            color: var(--teal);
        }

        .contact-social {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .contact-social a {
            width: 44px;
            height: 44px;
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 1rem;
            transition: var(--transition);
        }

        .contact-social a:hover {
            background: var(--gradient-1);
            color: var(--white);
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: var(--shadow-neon-teal);
        }

        .contact-form-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .contact-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
        }

        .contact-form-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--dark);
        }

        /* ===== MAP SECTION ===== */
        .map-section {
            height: 400px;
            position: relative;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(30%);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(135deg, var(--dark), var(--dark-2));
            color: rgba(255,255,255,0.75);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gradient-1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 3px;
        }

        .footer-about p {
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-about .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-about .footer-logo .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--white);
        }

        .footer-about .footer-logo span {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--white);
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links li a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.65);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-links li a i {
            font-size: 0.7rem;
            color: var(--coral);
        }

        .footer-links li a:hover {
            color: var(--neon-teal);
            padding-left: 5px;
        }

        .footer-newsletter p {
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .newsletter-form input {
            flex: 1;
            padding: 14px 18px;
            background: rgba(255,255,255,0.08);
            border: none;
            color: var(--white);
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .newsletter-form input:focus {
            outline: none;
            background: rgba(255,255,255,0.12);
        }

        .newsletter-form button {
            padding: 14px 24px;
            background: var(--gradient-1);
            border: none;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
        }

        .newsletter-form button:hover {
            opacity: 0.9;
        }

        .footer-bottom {
            padding: 24px 0;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--neon-teal);
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            box-shadow: var(--shadow-neon-teal);
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--teal-glow);
        }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255,255,255,0.1);
            border-top-color: var(--neon-teal);
            border-right-color: var(--coral);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .preloader-text {
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-subtitle {
                margin: 0 auto 36px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                max-width: 600px;
                margin: 0 auto;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .vmv-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .milestones-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid,
            .services-grid,
            .testimonials-grid,
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .package-card.popular {
                transform: scale(1);
            }

            .package-card.popular:hover {
                transform: translateY(-10px);
            }

            .booking-wrapper,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-timeline::before {
                left: 30px;
            }

            .process-step,
            .process-step:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 80px;
            }

            .process-step-content {
                width: 100%;
            }

            .process-step-number {
                left: 30px;
                top: 50%;
                transform: translate(-50%, -50%);
                position: absolute;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 70px 0;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 360px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 30px 30px;
                gap: 5px;
                transition: var(--transition-smooth);
                box-shadow: -10px 0 40px rgba(0,0,0,0.15);
                z-index: 10000;
                align-items: stretch;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-link {
                color: var(--dark);
                padding: 14px 20px;
                border-radius: 10px;
                font-size: 1rem;
            }

            .nav-link:hover, .nav-link.active {
                background: rgba(0,128,128,0.08);
                color: var(--teal);
            }

            .nav-cta {
                margin-left: 0;
                margin-top: 10px;
            }

            .nav-cta .btn {
                width: 100%;
                justify-content: center;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.4);
                z-index: 9999;
            }

            .nav-overlay.active {
                display: block;
            }

            .vmv-grid,
            .milestones-grid,
            .features-grid,
            .services-grid,
            .testimonials-grid,
            .packages-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 24px;
            }

            .hero-floating-card {
                display: none;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-stat-number {
                font-size: 1.8rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .booking-form-card,
            .contact-form-card {
                padding: 24px;
            }
        }
