
        :root {
            --steel-gray: #4A5568;
            --steel-dark: #1A202C;
            --steel-light: #A0AEC0;
            --cyan: #00CED1;
            --cyan-neon: #00FFFF;
            --cyan-glow: rgba(0, 206, 209, 0.4);
            --white: #FFFFFF;
            --off-white: #F8FAFC;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(0, 206, 209, 0.3);
            --shadow-neon: 0 0 20px rgba(0, 206, 209, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background: var(--off-white);
            color: var(--steel-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--steel-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--cyan), var(--cyan-neon));
            border-radius: 4px;
            box-shadow: var(--shadow-neon);
        }

        /* Navigation - Glassmorphism Style */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(0, 206, 209, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(26, 32, 44, 0.95);
            border-bottom: 1px solid var(--cyan);
            box-shadow: 0 8px 32px rgba(0, 206, 209, 0.2);
        }

        .navbar.scrolled .nav-link,
        .navbar.scrolled .logo-text {
            color: var(--white);
        }

        .nav-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.4rem;
            box-shadow: var(--shadow-neon), 0 0 40px rgba(0, 255, 255, 0.2);
            animation: neon-pulse 2.5s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        @keyframes neon-pulse {
            0%, 100% { box-shadow: var(--shadow-neon), 0 0 40px rgba(0, 255, 255, 0.2); }
            50% { box-shadow: var(--shadow-neon), 0 0 60px rgba(0, 255, 255, 0.5); }
        }

        .logo-text {
            font-family: 'Syne', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--steel-dark);
            transition: color 0.3s ease;
            letter-spacing: -0.5px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--steel-dark);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            letter-spacing: 0.3px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--cyan), var(--cyan-neon));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 10px var(--cyan);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--cyan);
            text-shadow: 0 0 8px rgba(0, 206, 209, 0.4);
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            color: var(--white) !important;
            padding: 0.85rem 2rem !important;
            border-radius: 12px;
            box-shadow: var(--shadow-neon), 0 4px 20px rgba(0, 206, 209, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 206, 209, 0.5), 0 8px 30px rgba(0, 206, 209, 0.4);
        }

        .mobile-menu {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--steel-dark);
            transition: color 0.3s ease;
        }

        .mobile-menu:hover {
            color: var(--cyan);
        }

        /* Hero Section - Asymmetric Layout */
        .hero {
            margin-top: 84px;
            min-height: 95vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(74, 85, 104, 0.03) 0%, rgba(0, 206, 209, 0.04) 50%, rgba(255, 255, 255, 0.02) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(ellipse at center, var(--cyan-glow) 0%, transparent 60%);
            opacity: 0.15;
            top: -250px;
            right: -150px;
            animation: morph 8s ease-in-out infinite;
            filter: blur(40px);
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.2) 0%, transparent 60%);
            opacity: 0.12;
            bottom: -100px;
            left: -100px;
            animation: morph 10s ease-in-out infinite reverse;
            filter: blur(35px);
        }

        @keyframes morph {
            0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
            50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
            75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
        }

        .hero-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4.2rem;
            margin-bottom: 1.8rem;
            color: var(--steel-dark);
            line-height: 1.1;
        }

        .hero-content h1 span {
            color: transparent;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            -webkit-background-clip: text;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(0, 206, 209, 0.15);
            z-index: -1;
            border-radius: 4px;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: var(--steel-light);
            line-height: 1.85;
            max-width: 580px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            color: var(--white);
            padding: 1.1rem 2.8rem;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: var(--shadow-neon), 0 6px 24px rgba(0, 206, 209, 0.35);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            text-transform: uppercase;
            letter-spacing: 1.3px;
            font-size: 0.92rem;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 35px rgba(0, 206, 209, 0.5), 0 12px 40px rgba(0, 206, 209, 0.45);
        }

        .btn-secondary {
            background: transparent;
            color: var(--steel-dark);
            padding: 1.1rem 2.8rem;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border: 2px solid var(--cyan);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 1.3px;
            font-size: 0.92rem;
        }

        .btn-secondary:hover {
            background: var(--cyan);
            color: var(--white);
            transform: translateY(-4px);
            box-shadow: var(--shadow-neon), 0 8px 28px rgba(0, 206, 209, 0.4);
        }

        .hero-image {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 206, 209, 0.25);
            transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-image:hover {
            transform: perspective(1000px) rotateY(0) rotateX(0);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
        }

        .hero-image:hover img {
            transform: scale(1.03);
        }

        .floating-badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            padding: 1.1rem 1.6rem;
            border-radius: 18px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: 0.9rem;
            animation: float 4s ease-in-out infinite;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(8px);
        }

        .badge-1 {
            top: 8%;
            left: -8%;
            animation-delay: 0s;
        }

        .badge-2 {
            bottom: 18%;
            right: -6%;
            animation-delay: 2s;
        }

        .badge-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            box-shadow: var(--shadow-neon);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            33% { transform: translateY(-12px) translateX(4px); }
            66% { transform: translateY(6px) translateX(-3px); }
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--steel-dark);
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -14px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--cyan), var(--cyan-neon));
            border-radius: 2px;
            box-shadow: 0 0 12px var(--cyan);
        }

        .section-title p {
            color: var(--steel-light);
            font-size: 1.15rem;
            max-width: 640px;
            margin: 2rem auto 0;
            line-height: 1.75;
        }

        /* About Section - Card Grid */
        .about {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="1.5" fill="%2300CED1" opacity="0.08"/></svg>');
            opacity: 0.6;
        }

        .about-grid {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .about-card {
            background: linear-gradient(145deg, var(--off-white) 0%, var(--white) 100%);
            padding: 2.8rem;
            border-radius: 24px;
            box-shadow: 0 12px 48px rgba(0, 206, 209, 0.08);
            border: 1px solid rgba(0, 206, 209, 0.12);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--cyan), var(--cyan-neon));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-card:hover::before {
            transform: scaleX(1);
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 64px rgba(0, 206, 209, 0.18);
            border-color: var(--cyan);
        }

        .about-icon {
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.7rem;
            margin-bottom: 1.8rem;
            box-shadow: var(--shadow-neon);
            transition: transform 0.4s ease;
        }

        .about-card:hover .about-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .about-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            color: var(--steel-dark);
        }

        .about-card p {
            color: var(--steel-light);
            line-height: 1.85;
        }

        /* Milestones - Dark Neon */
        .milestones {
            background: linear-gradient(145deg, var(--steel-dark) 0%, var(--steel-gray) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .milestones::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 206, 209, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.06) 0%, transparent 40%);
        }

        .milestones-grid {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .milestone-item {
            text-align: center;
            padding: 2.5rem 2rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 24px;
            border: 1px solid rgba(0, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .milestone-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(0, 206, 209, 0.08) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .milestone-item:hover::before {
            opacity: 1;
        }

        .milestone-item:hover {
            background: rgba(0, 206, 209, 0.08);
            transform: translateY(-6px);
            border-color: var(--cyan);
            box-shadow: 0 16px 48px rgba(0, 206, 209, 0.2);
        }

        .milestone-number {
            font-size: 3.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--cyan-neon), var(--white));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.6rem;
            font-family: 'Syne', sans-serif;
        }

        .milestone-label {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.92);
            font-weight: 500;
        }

        /* Features Section */
        .features {
            background: linear-gradient(145deg, var(--off-white) 0%, var(--white) 100%);
        }

        .features-grid {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.2rem;
        }

        .feature-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            border-radius: 24px;
            box-shadow: 0 12px 48px rgba(0, 206, 209, 0.08);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -60%;
            left: -60%;
            width: 220%;
            height: 220%;
            background: radial-gradient(circle, rgba(0, 206, 209, 0.08) 0%, transparent 65%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        .feature-card:hover {
            border-color: var(--cyan);
            transform: translateY(-12px);
            box-shadow: 0 24px 72px rgba(0, 206, 209, 0.22);
        }

        .feature-icon {
            width: 88px;
            height: 88px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: var(--white);
            font-size: 2.2rem;
            box-shadow: var(--shadow-neon);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(180deg) scale(1.05);
        }

        .feature-card h3 {
            font-size: 1.45rem;
            margin-bottom: 1.2rem;
            color: var(--steel-dark);
        }

        .feature-card p {
            color: var(--steel-light);
            line-height: 1.7;
        }

        /* Process Section - Horizontal Timeline */
        .process {
            background: var(--white);
        }

        .process-timeline {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            position: relative;
            padding: 2rem 0;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 48px;
            left: 8%;
            width: 84%;
            height: 4px;
            background: linear-gradient(90deg, var(--cyan), var(--cyan-neon), var(--cyan));
            z-index: 0;
            box-shadow: 0 0 16px var(--cyan);
            border-radius: 2px;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 1.2rem;
        }

        .process-number {
            width: 96px;
            height: 96px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: var(--white);
            font-size: 2rem;
            font-weight: 800;
            font-family: 'Syne', sans-serif;
            box-shadow: var(--shadow-neon), 0 12px 36px rgba(0, 206, 209, 0.35);
            border: 5px solid var(--white);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .process-step:hover .process-number {
            transform: scale(1.12) rotate(3deg);
            box-shadow: 0 0 40px rgba(0, 206, 209, 0.6), 0 18px 48px rgba(0, 206, 209, 0.45);
        }

        .process-step h3 {
            font-size: 1.35rem;
            margin-bottom: 0.7rem;
            color: var(--steel-dark);
        }

        .process-step p {
            color: var(--steel-light);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        /* Packages Section */
        .packages {
            background: linear-gradient(145deg, rgba(0, 206, 209, 0.04) 0%, rgba(74, 85, 104, 0.04) 100%);
        }

        .packages-grid {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .package-card {
            background: var(--white);
            border-radius: 28px;
            padding: 3rem 2.5rem;
            box-shadow: 0 12px 48px rgba(0, 206, 209, 0.08);
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .package-card.featured {
            border-color: var(--cyan);
            transform: scale(1.06);
            z-index: 2;
        }

        .package-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            color: var(--white);
            padding: 0.6rem 2rem;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            box-shadow: var(--shadow-neon);
            z-index: 3;
        }

        .package-card:hover {
            transform: translateY(-14px);
            box-shadow: 0 24px 72px rgba(0, 206, 209, 0.22);
        }

        .package-card.featured:hover {
            transform: scale(1.06) translateY(-14px);
        }

        .package-header {
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 2px dashed rgba(0, 206, 209, 0.2);
        }

        .package-name {
            font-size: 1.7rem;
            color: var(--steel-dark);
            margin-bottom: 0.8rem;
            font-family: 'Syne', sans-serif;
        }

        .package-price {
            font-size: 3rem;
            color: var(--cyan);
            font-weight: 800;
            font-family: 'Syne', sans-serif;
        }

        .package-price span {
            font-size: 1.1rem;
            color: var(--steel-light);
            font-weight: 500;
        }

        .package-features {
            list-style: none;
            margin-bottom: 2.5rem;
            flex-grow: 1;
        }

        .package-features li {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 206, 209, 0.1);
            display: flex;
            align-items: center;
            gap: 0.9rem;
            color: var(--steel-light);
            font-size: 0.98rem;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li i {
            color: var(--cyan);
            font-size: 1.1rem;
        }

        .package-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            color: var(--white);
            border: none;
            border-radius: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: block;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            font-size: 0.92rem;
            box-shadow: var(--shadow-neon);
        }

        .package-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 28px rgba(0, 206, 209, 0.5), 0 10px 32px rgba(0, 206, 209, 0.4);
        }

        /* Services Section */
        .services {
            background: var(--white);
        }

        .services-grid {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        .service-card {
            background: linear-gradient(145deg, var(--off-white) 0%, var(--white) 100%);
            padding: 2.8rem;
            border-radius: 24px;
            box-shadow: 0 12px 48px rgba(0, 206, 209, 0.08);
            display: flex;
            gap: 1.8rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.06), transparent);
            transition: left 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            border-color: var(--cyan);
            transform: translateX(12px);
            box-shadow: 0 18px 56px rgba(0, 206, 209, 0.18);
        }

        .service-icon {
            width: 76px;
            height: 76px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.9rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-neon);
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.08) rotate(-2deg);
        }

        .service-content h3 {
            font-size: 1.55rem;
            margin-bottom: 1.1rem;
            color: var(--steel-dark);
            font-family: 'Syne', sans-serif;
        }

        .service-content p {
            color: var(--steel-light);
            line-height: 1.85;
            margin-bottom: 0;
            font-size: 0.98rem;
        }

        /* Booking Form - Glass Style */
        .booking {
            background: linear-gradient(145deg, var(--steel-dark) 0%, var(--steel-gray) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .booking::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 30% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 45%),
                radial-gradient(ellipse at 70% 30%, rgba(0, 206, 209, 0.06) 0%, transparent 45%);
        }

        .booking-container {
            max-width: 840px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 3.5rem;
            border-radius: 32px;
            border: 1px solid rgba(0, 255, 255, 0.18);
            position: relative;
            z-index: 1;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
        }

        .booking-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.8rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            margin-bottom: 0.7rem;
            font-weight: 600;
            color: var(--white);
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1.1rem 1.3rem;
            border: 2px solid rgba(0, 206, 209, 0.25);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            font-family: 'Manrope', sans-serif;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cyan-neon);
            box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.15), 0 0 20px rgba(0, 206, 209, 0.25);
            background: rgba(255, 255, 255, 0.12);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.55);
        }

        .submit-btn {
            grid-column: 1 / -1;
            padding: 1.4rem;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            color: var(--white);
            border: none;
            border-radius: 14px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: var(--shadow-neon);
        }

        .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 35px rgba(0, 206, 209, 0.5), 0 14px 40px rgba(0, 206, 209, 0.4);
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(145deg, var(--off-white) 0%, var(--white) 100%);
        }

        .testimonials-grid {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.4rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2.4rem;
            border-radius: 24px;
            box-shadow: 0 12px 48px rgba(0, 206, 209, 0.08);
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 206, 209, 0.1);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 64px rgba(0, 206, 209, 0.18);
            border-color: var(--cyan);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 24px;
            right: 28px;
            font-size: 6rem;
            color: var(--cyan);
            opacity: 0.12;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            line-height: 1;
            pointer-events: none;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 1.6rem;
        }

        .testimonial-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--cyan);
            box-shadow: 0 4px 16px rgba(0, 206, 209, 0.25);
        }

        .testimonial-info h4 {
            color: var(--steel-dark);
            margin-bottom: 0.3rem;
            font-size: 1.15rem;
        }

        .testimonial-info .stars {
            color: #FFD700;
            font-size: 0.95rem;
        }

        .testimonial-text {
            color: var(--steel-light);
            line-height: 1.8;
            font-style: italic;
            font-size: 0.98rem;
        }

        /* FAQ Section */
        .faq {
            background: var(--white);
        }

        .faq-container {
            max-width: 920px;
            margin: 0 auto;
        }

        .faq-item {
            background: linear-gradient(145deg, var(--off-white) 0%, var(--white) 100%);
            margin-bottom: 1.2rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 206, 209, 0.08);
            border: 1px solid rgba(0, 206, 209, 0.12);
            transition: all 0.35s ease;
        }

        .faq-item:hover {
            border-color: var(--cyan);
            box-shadow: 0 8px 32px rgba(0, 206, 209, 0.14);
        }

        .faq-question {
            padding: 1.6rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.35s ease;
        }

        .faq-question:hover {
            background: rgba(0, 206, 209, 0.04);
        }

        .faq-question h3 {
            font-size: 1.15rem;
            color: var(--steel-dark);
            font-weight: 600;
            max-width: 85%;
        }

        .faq-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: transform 0.35s ease;
            flex-shrink: 0;
            box-shadow: var(--shadow-neon);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-answer {
            max-height: 350px;
        }

        .faq-answer p {
            padding: 0 2rem 1.8rem;
            color: var(--steel-light);
            line-height: 1.85;
            font-size: 0.98rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(145deg, var(--cyan) 0%, var(--steel-dark) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 7rem 2rem;
        }

        .cta-section::before,
        .cta-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
            border-radius: 50%;
            animation: float 12s ease-in-out infinite;
        }

        .cta-section::before {
            top: -180px;
            left: -180px;
            animation-delay: 0s;
        }

        .cta-section::after {
            bottom: -180px;
            right: -180px;
            animation-delay: 6s;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 820px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.9rem;
            margin-bottom: 1.3rem;
            font-family: 'Syne', sans-serif;
        }

        .cta-section p {
            font-size: 1.28rem;
            margin-bottom: 2.4rem;
            opacity: 0.94;
            line-height: 1.75;
        }

        .cta-btn-white {
            background: var(--white);
            color: var(--cyan);
            padding: 1.2rem 3.4rem;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 800;
            display: inline-block;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
            text-transform: uppercase;
            letter-spacing: 1.6px;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
        }

        .cta-btn-white::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.15), transparent);
            transition: left 0.6s ease;
        }

        .cta-btn-white:hover::before {
            left: 100%;
        }

        .cta-btn-white:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28), 0 0 30px rgba(0, 206, 209, 0.3);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(145deg, var(--off-white) 0%, var(--white) 100%);
        }

        .contact-container {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 4.5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2.2rem;
        }

        .contact-card {
            background: var(--white);
            padding: 2.2rem;
            border-radius: 22px;
            box-shadow: 0 12px 48px rgba(0, 206, 209, 0.08);
            display: flex;
            align-items: flex-start;
            gap: 1.6rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 206, 209, 0.1);
        }

        .contact-card:hover {
            transform: translateX(14px);
            box-shadow: 0 18px 56px rgba(0, 206, 209, 0.18);
            border-color: var(--cyan);
        }

        .contact-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.6rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-neon);
        }

        .contact-details h3 {
            font-size: 1.3rem;
            margin-bottom: 0.6rem;
            color: var(--steel-dark);
            font-family: 'Syne', sans-serif;
        }

        .contact-details p,
        .contact-details a {
            color: var(--steel-light);
            text-decoration: none;
            line-height: 1.7;
            transition: color 0.3s ease;
            font-size: 0.98rem;
        }

        .contact-details a:hover {
            color: var(--cyan);
        }

        .contact-form-wrapper {
            background: var(--white);
            padding: 3.2rem;
            border-radius: 26px;
            box-shadow: 0 12px 48px rgba(0, 206, 209, 0.08);
            border: 1px solid rgba(0, 206, 209, 0.1);
        }

        .contact-form-wrapper h3 {
            font-size: 1.95rem;
            margin-bottom: 2.4rem;
            color: var(--steel-dark);
            font-family: 'Syne', sans-serif;
        }

        .contact-form .form-group {
            margin-bottom: 1.6rem;
        }

        .contact-form .form-group label {
            color: var(--steel-dark);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .contact-form .form-group input,
        .contact-form .form-group textarea {
            border-color: rgba(0, 206, 209, 0.15);
            background: var(--off-white);
            color: var(--steel-dark);
        }

        .contact-form .form-group input:focus,
        .contact-form .form-group textarea:focus {
            border-color: var(--cyan);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(0, 206, 209, 0.1);
        }

        /* Footer */
        footer {
            background: linear-gradient(145deg, var(--steel-dark) 0%, #0F1419 100%);
            color: var(--white);
            padding: 4.5rem 2rem 2.5rem;
        }

        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 3.2rem;
            margin-bottom: 3.5rem;
        }

        .footer-col h3 {
            font-size: 1.4rem;
            margin-bottom: 1.8rem;
            color: var(--cyan-neon);
            position: relative;
            padding-bottom: 0.9rem;
            font-family: 'Syne', sans-serif;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 56px;
            height: 3px;
            background: linear-gradient(90deg, var(--cyan), var(--cyan-neon));
            border-radius: 2px;
            box-shadow: 0 0 10px var(--cyan);
        }

        .footer-col p {
            line-height: 1.85;
            opacity: 0.92;
            margin-bottom: 1.8rem;
            font-size: 0.98rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.9rem;
        }

        .footer-col ul li a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.92;
            transition: all 0.35s ease;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.98rem;
        }

        .footer-col ul li a:hover {
            color: var(--cyan-neon);
            padding-left: 6px;
            opacity: 1;
        }

        .footer-col ul li a i {
            color: var(--cyan);
            font-size: 0.85rem;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .newsletter-form input {
            padding: 1.1rem 1.4rem;
            border: 2px solid rgba(0, 206, 209, 0.25);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.55);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--cyan-neon);
            box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.12);
        }

        .newsletter-form button {
            padding: 1.1rem;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-neon));
            color: var(--white);
            border: none;
            border-radius: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 1.3px;
            font-size: 0.92rem;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-neon), 0 8px 28px rgba(0, 206, 209, 0.4);
        }

        .social-links {
            display: flex;
            gap: 1.1rem;
            margin-top: 1.8rem;
        }

        .social-links a {
            width: 44px;
            height: 44px;
            background: rgba(0, 206, 209, 0.15);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--cyan);
            font-size: 1.05rem;
        }

        .social-links a:hover {
            background: var(--cyan);
            transform: translateY(-4px);
            box-shadow: var(--shadow-neon);
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 206, 209, 0.18);
            padding-top: 2.4rem;
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.2rem;
        }

        .footer-bottom p {
            opacity: 0.88;
            font-size: 0.95rem;
        }

        .footer-bottom a {
            color: var(--cyan-neon);
            text-decoration: none;
            margin: 0 0.6rem;
            transition: color 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 4rem;
            }

            .hero-content h1 {
                font-size: 3.4rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                order: -1;
                max-width: 580px;
                margin: 0 auto;
                transform: perspective(1000px) rotateY(0) rotateX(0);
            }

            .about-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .milestones-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid,
            .packages-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 2.5rem;
                box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
                border-bottom: 1px solid rgba(0, 206, 209, 0.2);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }

            .section-title h2 {
                font-size: 2.3rem;
            }

            .process-timeline {
                flex-direction: column;
                gap: 3rem;
            }

            .process-timeline::before {
                display: none;
            }

            .features-grid,
            .packages-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .milestones-grid {
                grid-template-columns: 1fr;
            }

            .booking-form {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .package-card.featured {
                transform: scale(1);
            }

            .package-card.featured:hover {
                transform: translateY(-14px);
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(36px);
            transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Neon Glow Utility */
        .neon-glow {
            text-shadow: 0 0 12px rgba(0, 206, 209, 0.5),
                         0 0 24px rgba(0, 206, 209, 0.35),
                         0 0 36px rgba(0, 206, 209, 0.2);
        }

        /* Morphing Shape Animation */
        @keyframes morph {
            0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
            50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
            75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
        }
