        :root {
            --primary: #0D6EFD;
            --secondary: #FFFFFF;
            --accent: #084298;
            --neon-blue: #00f3ff;
            --neon-purple: #bc13fe;
            --dark: #0a0e27;
            --gray: #1a1f3a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--dark);
            color: var(--secondary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(13, 110, 253, 0.2);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 15px 5%;
            background: rgba(10, 14, 39, 0.95);
            box-shadow: 0 10px 40px rgba(13, 110, 253, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--secondary);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--neon-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 0 30px rgba(13, 110, 253, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 30px rgba(13, 110, 253, 0.5); }
            50% { box-shadow: 0 0 50px rgba(13, 110, 253, 0.8); }
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--secondary), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--neon-blue));
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--secondary);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
        }

        .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;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(13, 110, 253, 0.5);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 30px;
            height: 3px;
            background: var(--secondary);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at top, rgba(13, 110, 253, 0.15), transparent 50%),
                        radial-gradient(ellipse at bottom right, rgba(188, 19, 254, 0.1), transparent 50%);
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            top: 20%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: var(--neon-blue);
            border-radius: 50%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            top: 60%;
            right: 10%;
            width: 120px;
            height: 120px;
            background: var(--neon-purple);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            animation-delay: 5s;
        }

        .shape:nth-child(3) {
            bottom: 20%;
            left: 20%;
            width: 60px;
            height: 60px;
            background: var(--primary);
            transform: rotate(45deg);
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(30px) rotate(240deg); }
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(13, 110, 253, 0.1);
            border: 1px solid rgba(13, 110, 253, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            color: var(--neon-blue);
            margin-bottom: 30px;
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 10px rgba(0, 243, 255, 0.2); }
            to { box-shadow: 0 0 30px rgba(0, 243, 255, 0.6); }
        }

        .hero h1 {
            font-size: 64px;
            line-height: 1.1;
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--neon-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: transparent;
            color: var(--secondary);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            border-color: var(--neon-blue);
            background: rgba(13, 110, 253, 0.1);
            transform: translateY(-3px);
        }

        .hero-image {
            position: absolute;
            right: 5%;
            top: 20%;
            transform: translateY(-50%);
            width: 500px;
            height: 600px;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(188, 19, 254, 0.2));
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid rgba(13, 110, 253, 0.3);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 20px;
            animation: floatCard 6s infinite ease-in-out;
        }

        .floating-card.card-1 {
            bottom: 100px;
            left: -50px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            top: 100px;
            right: -30px;
            animation-delay: 3s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .floating-card i {
            font-size: 30px;
            color: var(--neon-blue);
            margin-bottom: 10px;
        }

        .floating-card h4 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .floating-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Section Styles */
        section {
            padding: 100px 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--secondary), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* About Section */
        .about {
            background: linear-gradient(180deg, var(--dark), var(--gray));
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(13, 110, 253, 0.2);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .about-card:hover::before {
            opacity: 1;
        }

        .about-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
        }

        .about-card i {
            font-size: 40px;
            color: var(--neon-blue);
            margin-bottom: 20px;
            display: block;
        }

        .about-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .about-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* Milestones */
        .milestones {
            background: var(--gray);
            position: relative;
            overflow: hidden;
        }

        .milestones::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
        }

        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .milestone-item {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(13, 110, 253, 0.2);
            transition: all 0.3s ease;
        }

        .milestone-item:hover {
            transform: translateY(-10px);
            background: rgba(13, 110, 253, 0.1);
            border-color: var(--primary);
        }

        .milestone-number {
            font-size: 56px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--neon-blue), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            display: block;
        }

        .milestone-label {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        /* Features Section */
        .features {
            background: var(--dark);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-box {
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(188, 19, 254, 0.05));
            border: 1px solid rgba(13, 110, 253, 0.2);
            border-radius: 25px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(13, 110, 253, 0.2), transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-box:hover::after {
            opacity: 1;
        }

        .feature-box:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--neon-blue);
            box-shadow: 0 20px 50px rgba(13, 110, 253, 0.3);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--secondary);
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
        }

        .feature-box h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .feature-box p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* Process Section */
        .process {
            background: linear-gradient(180deg, var(--gray), var(--dark));
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--neon-blue));
            z-index: 0;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .step-number {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 48px;
            font-weight: 800;
            color: var(--secondary);
            border: 5px solid var(--dark);
            box-shadow: 0 10px 40px rgba(13, 110, 253, 0.4);
            transition: all 0.3s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 15px 50px rgba(13, 110, 253, 0.6);
        }

        .step h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .step p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            max-width: 250px;
            margin: 0 auto;
        }

        /* Packages Section */
        .packages {
            background: var(--dark);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .package-card {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(13, 110, 253, 0.2);
            border-radius: 30px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .package-card.featured {
            border-color: var(--neon-blue);
            transform: scale(1.05);
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(188, 19, 254, 0.1));
        }

        .package-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: 20px;
            right: -35px;
            background: linear-gradient(135deg, var(--neon-blue), var(--primary));
            color: var(--dark);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: 700;
        }

        .package-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 30px 60px rgba(13, 110, 253, 0.3);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .package-icon {
            font-size: 50px;
            color: var(--neon-blue);
            margin-bottom: 20px;
        }

        .package-card h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .package-price {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 30px;
        }

        .package-price span {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
        }

        .package-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .package-features li {
            padding: 10px 0;
            color: rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .package-features li i {
            color: var(--neon-blue);
        }

        /* Services Section */
        .services {
            background: linear-gradient(180deg, var(--dark), var(--gray));
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 60px;
        }

        .service-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(13, 110, 253, 0.2);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            gap: 30px;
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: rgba(13, 110, 253, 0.1);
            border-color: var(--primary);
            transform: translateX(10px);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--secondary);
            flex-shrink: 0;
        }

        .service-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .service-content p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* Booking Form */
        .booking-section {
            background: var(--gray);
            padding: 80px 5%;
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(13, 110, 253, 0.3);
            border-radius: 30px;
            padding: 60px;
            position: relative;
            overflow: hidden;
        }

        .booking-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(13, 110, 253, 0.1), transparent 70%);
        }

        .booking-form {
            position: relative;
            z-index: 1;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(13, 110, 253, 0.3);
            border-radius: 10px;
            color: var(--secondary);
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Testimonials */
        .testimonials {
            background: var(--dark);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(188, 19, 254, 0.05));
            border: 1px solid rgba(13, 110, 253, 0.2);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-blue);
            box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 80px;
            color: var(--primary);
            opacity: 0.2;
            font-family: serif;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .testimonial-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--secondary);
        }

        .author-info h4 {
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .author-info p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        /* FAQ Section */
        .faq {
            background: linear-gradient(180deg, var(--gray), var(--dark));
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(13, 110, 253, 0.2);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: rgba(13, 110, 253, 0.05);
        }

        .faq-question h3 {
            font-size: 18px;
            color: var(--secondary);
            font-weight: 600;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 300px;
        }

        .faq-answer p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(188, 19, 254, 0.2));
            padding: 100px 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .cta-section p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
        }

        /* Contact Section */
        .contact {
            background: var(--dark);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 32px;
            margin-bottom: 30px;
            color: var(--secondary);
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--secondary);
            flex-shrink: 0;
        }

        .contact-text h4 {
            color: var(--secondary);
            margin-bottom: 5px;
            font-size: 18px;
        }

        .contact-text p, .contact-text a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: var(--neon-blue);
        }

        .contact-form-wrapper {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(13, 110, 253, 0.2);
            border-radius: 30px;
            padding: 50px;
        }

        .contact-form-wrapper h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--secondary);
        }

        /* Footer */
        footer {
            background: var(--gray);
            padding: 80px 5% 30px;
            border-top: 1px solid rgba(13, 110, 253, 0.2);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto 60px;
        }

        .footer-col h4 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--secondary);
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
            padding-left: 5px;
        }

        .footer-links a i {
            color: var(--primary);
            font-size: 12px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(13, 110, 253, 0.3);
            border-radius: 10px;
            color: var(--secondary);
            font-family: 'Outfit', sans-serif;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .newsletter-form button {
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: none;
            border-radius: 10px;
            color: var(--secondary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--neon-blue);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 48px; }
            .hero-image { display: none; }
            .about-grid,
            .features-grid,
            .packages-grid,
            .services-grid,
            .testimonials-grid { grid-template-columns: 1fr; }
            .milestones-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { flex-direction: column; gap: 40px; }
            .process-steps::before { display: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: rgba(10, 14, 39, 0.98);
                flex-direction: column;
                padding: 100px 40px;
                transition: right 0.3s ease;
                gap: 25px;
            }

            .nav-menu.active { right: 0; }
            .mobile-toggle { display: flex; }
            .hero h1 { font-size: 36px; }
            .section-header h2 { font-size: 36px; }
            .form-row { grid-template-columns: 1fr; }
            .packages-grid .package-card.featured { transform: scale(1); }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .booking-container { padding: 40px 25px; }
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
