
        /* ===== CSS RESET & VARIABLES ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0F172A;
            --secondary-dark: #334155;
            --accent-blue: #3B82F6;
            --light-bg: #F8FAFC;
            --neon-blue: #3B82F6;
            --neon-purple: #8B5CF6;
            --neon-cyan: #06B6D4;
            --neon-pink: #EC4899;
            --gradient-1: linear-gradient(135deg, #3B82F6, #8B5CF6);
            --gradient-2: linear-gradient(135deg, #06B6D4, #3B82F6);
            --gradient-3: linear-gradient(135deg, #8B5CF6, #EC4899);
            --gradient-neon: linear-gradient(135deg, #3B82F6, #06B6D4, #8B5CF6);
            --shadow-neon: 0 0 20px rgba(59, 130, 246, 0.3);
            --shadow-card: 0 10px 40px rgba(15, 23, 42, 0.1);
            --font-primary: 'Space Grotesk', sans-serif;
            --font-secondary: 'Inter', sans-serif;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-secondary);
            background: var(--light-bg);
            color: var(--primary-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 10px;
        }

        /* ===== FLOATING ELEMENTS ===== */
        .floating-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            pointer-events: none;
            z-index: -1;
            animation: floatOrb 20s ease-in-out infinite;
        }
        .orb-1 {
            width: 400px;
            height: 400px;
            background: var(--neon-blue);
            top: 10%;
            left: -5%;
            animation-delay: 0s;
        }
        .orb-2 {
            width: 300px;
            height: 300px;
            background: var(--neon-purple);
            top: 50%;
            right: -5%;
            animation-delay: -7s;
        }
        .orb-3 {
            width: 350px;
            height: 350px;
            background: var(--neon-cyan);
            bottom: 10%;
            left: 30%;
            animation-delay: -14s;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, -50px) scale(1.1); }
            50% { transform: translate(-30px, 30px) scale(0.9); }
            75% { transform: translate(40px, 60px) scale(1.05); }
        }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        .preloader-content {
            text-align: center;
        }
        .preloader-logo {
            font-family: var(--font-primary);
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulse 1.5s ease-in-out infinite;
        }
        .preloader-bar {
            width: 200px;
            height: 3px;
            background: var(--secondary-dark);
            border-radius: 10px;
            margin: 20px auto;
            overflow: hidden;
        }
        .preloader-bar::after {
            content: '';
            display: block;
            width: 50%;
            height: 100%;
            background: var(--gradient-neon);
            border-radius: 10px;
            animation: loading 1.2s ease-in-out infinite;
        }
        @keyframes loading {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(300%); }
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        .navbar.scrolled {
            background: rgba(15, 23, 42, 0.95);
            padding: 10px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            z-index: 1001;
        }
        .nav-logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            box-shadow: var(--shadow-neon);
            transition: var(--transition);
        }
        .nav-logo:hover .nav-logo-icon {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
        }
        .nav-logo-text {
            font-family: var(--font-primary);
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
        }
        .nav-logo-text span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 5px;
            list-style: none;
        }
        .nav-menu a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 10px 18px;
            border-radius: 10px;
            transition: var(--transition);
            position: relative;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: var(--transition);
            border-radius: 10px;
        }
        .nav-menu a:hover {
            color: #fff;
        }
        .nav-menu a:hover::after {
            width: 30px;
        }
        .nav-menu a.active {
            color: #fff;
            background: rgba(59, 130, 246, 0.15);
        }
        .nav-menu a.active::after {
            width: 30px;
        }
        .nav-cta {
            background: var(--gradient-1) !important;
            color: #fff !important;
            padding: 12px 28px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            box-shadow: var(--shadow-neon);
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-cta::after {
            display: none !important;
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
        }
        .nav-toggle span {
            width: 28px;
            height: 2.5px;
            background: #fff;
            border-radius: 10px;
            transition: var(--transition);
        }
        .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(6px, -6px);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            background: var(--primary-dark);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero::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 no-repeat;
            opacity: 0.15;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to top, var(--light-bg), transparent);
        }
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--neon-blue);
            border-radius: 50%;
            animation: particleFloat 15s linear infinite;
            opacity: 0.3;
        }
        @keyframes particleFloat {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
        }
        .hero-grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
            background-size: 80px 80px;
        }
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }
        .hero-text {
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            color: var(--neon-blue);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
        }
        .hero-badge i {
            animation: sparkle 2s ease-in-out infinite;
        }
        @keyframes sparkle {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        .hero-title {
            font-family: var(--font-primary);
            font-size: 4rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 25px;
        }
        .hero-title .highlight {
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .hero-desc {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 520px;
        }
        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-1);
            color: #fff;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: var(--shadow-neon);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #fff;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            cursor: pointer;
        }
        .btn-secondary:hover {
            border-color: var(--neon-blue);
            background: rgba(59, 130, 246, 0.1);
            transform: translateY(-3px);
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat-number {
            font-family: var(--font-primary);
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-stat-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin-top: 5px;
        }
        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease 0.3s forwards;
            opacity: 0;
        }
        .hero-image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }
        .hero-image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        .hero-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
        }
        .hero-floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 20px;
            animation: floatCard 6s ease-in-out infinite;
        }
        .hero-card-1 {
            bottom: -30px;
            left: -40px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .hero-card-1 .card-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
        }
        .hero-card-1 .card-text h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
        }
        .hero-card-1 .card-text p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
        }
        .hero-card-2 {
            top: 30px;
            right: -30px;
            text-align: center;
        }
        .hero-card-2 .stars {
            color: #FBBF24;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        .hero-card-2 p {
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .hero-card-2 span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
        }
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: 100px 0;
            position: relative;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            color: var(--accent-blue);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .section-title {
            font-family: var(--font-primary);
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .section-title .highlight {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-desc {
            font-size: 1.1rem;
            color: var(--secondary-dark);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Dark section */
        .section-dark {
            background: var(--primary-dark);
        }
        .section-dark .section-title {
            color: #fff;
        }
        .section-dark .section-desc {
            color: rgba(255, 255, 255, 0.6);
        }
        .section-dark .section-badge {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
        }

        /* ===== ABOUT SECTION ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }
        .about-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }
        .about-image:hover img {
            transform: scale(1.05);
        }
        .about-image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--gradient-1);
            color: #fff;
            padding: 15px 25px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: var(--shadow-neon);
        }
        .about-image-badge span {
            font-size: 2rem;
            display: block;
            font-family: var(--font-primary);
        }
        .about-text h3 {
            font-family: var(--font-primary);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        .about-text p {
            color: var(--secondary-dark);
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        .about-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .about-card {
            background: #fff;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(59, 130, 246, 0.08);
        }
        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: var(--transition);
        }
        .about-card:hover::before {
            transform: scaleX(1);
        }
        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
        }
        .about-card-icon {
            width: 70px;
            height: 70px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--accent-blue);
            transition: var(--transition);
        }
        .about-card:hover .about-card-icon {
            background: var(--gradient-1);
            color: #fff;
            transform: rotate(10deg) scale(1.1);
        }
        .about-card h4 {
            font-family: var(--font-primary);
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--primary-dark);
        }
        .about-card p {
            color: var(--secondary-dark);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ===== MILESTONES SECTION ===== */
        .milestones {
            background: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }
        .milestones::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1), transparent 50%);
        }
        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        .milestone-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
        .milestone-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-5px);
        }
        .milestone-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: #fff;
            box-shadow: var(--shadow-neon);
        }
        .milestone-number {
            font-family: var(--font-primary);
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }
        .milestone-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
        }

        /* ===== FEATURES / WHY CHOOSE US ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .feature-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px 30px;
            transition: var(--transition);
            border: 1px solid rgba(59, 130, 246, 0.08);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient-1);
            opacity: 0.05;
            transition: var(--transition);
        }
        .feature-card:hover::after {
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.2);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }
        .feature-card:nth-child(1) .feature-icon { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
        .feature-card:nth-child(2) .feature-icon { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
        .feature-card:nth-child(3) .feature-icon { background: rgba(6, 182, 212, 0.1); color: #06B6D4; }
        .feature-card:nth-child(4) .feature-icon { background: rgba(236, 72, 153, 0.1); color: #EC4899; }
        .feature-card:nth-child(5) .feature-icon { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .feature-card:nth-child(6) .feature-icon { background: rgba(16, 185, 129, 0.1); color: #10B981; }
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        .feature-card h4 {
            font-family: var(--font-primary);
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            position: relative;
            z-index: 2;
        }
        .feature-card p {
            color: var(--secondary-dark);
            font-size: 0.95rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        /* ===== WORK PROCESS ===== */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }
        .process-grid::before {
            content: '';
            position: absolute;
            top: 80px;
            left: 12%;
            width: 76%;
            height: 3px;
            background: var(--gradient-1);
            z-index: 0;
            opacity: 0.3;
        }
        .process-card {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .process-step {
            width: 100px;
            height: 100px;
            background: var(--gradient-1);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            transition: var(--transition);
            box-shadow: var(--shadow-neon);
        }
        .process-step:hover {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 0 50px rgba(59, 130, 246, 0.4);
        }
        .process-step-num {
            font-family: var(--font-primary);
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
        }
        .process-card h4 {
            font-family: var(--font-primary);
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #fff;
        }
        .process-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ===== PACKAGES SECTION ===== */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .package-card {
            background: #fff;
            border-radius: 24px;
            padding: 45px 35px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(59, 130, 246, 0.08);
            transition: var(--transition);
        }
        .package-card.featured {
            background: var(--primary-dark);
            border-color: rgba(59, 130, 246, 0.3);
            transform: scale(1.05);
        }
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(59, 130, 246, 0.15);
        }
        .package-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        .package-popular {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--gradient-3);
            color: #fff;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        .package-icon {
            width: 80px;
            height: 80px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        .package-card:nth-child(1) .package-icon {
            background: rgba(59, 130, 246, 0.1);
            color: var(--accent-blue);
        }
        .package-card:nth-child(2) .package-icon {
            background: rgba(139, 92, 246, 0.15);
            color: var(--neon-purple);
        }
        .package-card:nth-child(3) .package-icon {
            background: rgba(6, 182, 212, 0.1);
            color: var(--neon-cyan);
        }
        .package-name {
            font-family: var(--font-primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .package-card.featured .package-name {
            color: #fff;
        }
        .package-price {
            font-family: var(--font-primary);
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        .package-price .currency {
            font-size: 1.5rem;
            vertical-align: super;
        }
        .package-price .period {
            font-size: 1rem;
            color: var(--secondary-dark);
            font-weight: 400;
        }
        .package-card.featured .package-price {
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .package-card.featured .package-price .period {
            -webkit-text-fill-color: rgba(255,255,255,0.5);
        }
        .package-desc {
            color: var(--secondary-dark);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .package-card.featured .package-desc {
            color: rgba(255, 255, 255, 0.6);
        }
        .package-features {
            list-style: none;
            text-align: left;
            margin-bottom: 35px;
        }
        .package-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(59, 130, 246, 0.08);
        }
        .package-card.featured .package-features li {
            color: rgba(255, 255, 255, 0.8);
            border-color: rgba(255, 255, 255, 0.05);
        }
        .package-features li i {
            color: #10B981;
            font-size: 0.9rem;
        }
        .package-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
            justify-content: center;
        }
        .package-btn-outline {
            border: 2px solid var(--accent-blue);
            color: var(--accent-blue);
        }
        .package-btn-outline:hover {
            background: var(--accent-blue);
            color: #fff;
        }
        .package-btn-filled {
            background: var(--gradient-1);
            color: #fff;
            border: none;
            box-shadow: var(--shadow-neon);
        }
        .package-btn-filled:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
        }

        /* ===== SERVICES SECTION ===== */
        /* ============================================
   SERVICES STATIC GRID — No Carousel
   ============================================ */

.services-static-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.service-static-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-static-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue, #2563EB), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-static-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(37, 99, 235, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.service-static-card:hover::before {
    opacity: 1;
}

/* Card Image */
.service-static-card-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.service-static-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.service-static-card:hover .service-static-card-img img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

.service-static-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 15, 30, 0.95) 0%,
        rgba(10, 15, 30, 0.4) 40%,
        rgba(10, 15, 30, 0.1) 100%
    );
    z-index: 1;
}

.service-static-card-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--accent-blue, #2563EB), var(--accent-purple, #7C3AED));
    color: #fff;
    backdrop-filter: blur(8px);
}

/* Card Body */
.service-static-card-body {
    padding: 28px 28px 30px;
    position: relative;
}

.service-static-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.service-static-icon i {
    font-size: 20px;
    color: var(--accent-blue, #2563EB);
    transition: color 0.4s ease;
}

.service-static-card:hover .service-static-icon {
    background: linear-gradient(135deg, var(--accent-blue, #2563EB), var(--accent-purple, #7C3AED));
    border-color: transparent;
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.service-static-card:hover .service-static-icon i {
    color: #fff;
}

.service-static-card-body h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-static-card:hover .service-static-card-body h4 {
    color: var(--accent-blue, #2563EB);
}

.service-static-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.service-static-card:hover .service-static-desc {
    color: rgba(255, 255, 255, 0.7);
}

.service-static-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue, #2563EB);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-static-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue, #2563EB), var(--accent-purple, #7C3AED));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-static-link:hover {
    color: var(--accent-purple, #7C3AED);
    gap: 12px;
}

.service-static-link:hover::after {
    width: 100%;
}

.service-static-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-static-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE — Services Static Grid
   ============================================ */

@media (max-width: 992px) {
    .services-static-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .service-static-card-img {
        height: 190px;
    }
    .service-static-card-body {
        padding: 22px 22px 24px;
    }
    .service-static-card-body h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .services-static-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-static-card-img {
        height: 220px;
    }
    .service-static-card-body {
        padding: 24px 24px 26px;
    }
    .service-static-card-body h4 {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .services-static-grid {
        gap: 20px;
    }
    .service-static-card-img {
        height: 200px;
    }
    .service-static-card-body {
        padding: 20px 18px 22px;
    }
    .service-static-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }
    .service-static-icon i {
        font-size: 18px;
    }
    .service-static-card-body h4 {
        font-size: 17px;
    }
    .service-static-desc {
        font-size: 13px;
    }
}

        /* ===== BOOKING FORM ===== */
        .booking-section {
            background: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }
        .booking-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
            border-radius: 50%;
        }
        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .booking-info h3 {
            font-family: var(--font-primary);
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .booking-info p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.05rem;
        }
        .booking-features {
            list-style: none;
        }
        .booking-features li {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }
        .booking-features li i {
            width: 35px;
            height: 35px;
            background: rgba(59, 130, 246, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
        }
        .booking-form-wrapper {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
        }
        .booking-form-wrapper h4 {
            font-family: var(--font-primary);
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 25px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 0.95rem;
            font-family: var(--font-secondary);
            transition: var(--transition);
            outline: none;
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--neon-blue);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
        }
        .form-group select option {
            background: var(--primary-dark);
            color: #fff;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--gradient-1);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-secondary);
            box-shadow: var(--shadow-neon);
        }
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-carousel-wrapper {
            overflow: hidden;
            position: relative;
        }
        .testimonials-carousel {
            display: flex;
            gap: 30px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .testimonial-card {
            min-width: calc(33.333% - 20px);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 35px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        .testimonial-card:hover {
            border-color: rgba(59, 130, 246, 0.3);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
        }
        .testimonial-stars {
            color: #FBBF24;
            font-size: 1rem;
            margin-bottom: 20px;
        }
        .testimonial-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .testimonial-name {
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
        }
        .testimonial-role {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        /* ===== FAQ SECTION ===== */
        .faq-grid {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: 16px;
            margin-bottom: 15px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(59, 130, 246, 0.08);
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(59, 130, 246, 0.2);
        }
        .faq-item.active {
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 30px;
            cursor: pointer;
            transition: var(--transition);
        }
        .faq-question h4 {
            font-family: var(--font-primary);
            font-size: 1.1rem;
            color: var(--primary-dark);
            flex: 1;
        }
        .faq-toggle {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(59, 130, 246, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-blue);
            transition: var(--transition);
            flex-shrink: 0;
            margin-left: 15px;
        }
        .faq-item.active .faq-toggle {
            background: var(--gradient-1);
            color: #fff;
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .faq-answer p {
            padding: 0 30px 25px;
            color: var(--secondary-dark);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.15), transparent 50%);
        }
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        .cta-content h2 {
            font-family: var(--font-primary);
            font-size: 3rem;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .cta-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.15rem;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        .cta-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== CONTACT SECTION ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        .contact-info-cards {
            display: grid;
            gap: 20px;
            margin-bottom: 30px;
        }
        .contact-info-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: #fff;
            border-radius: 16px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(59, 130, 246, 0.08);
            transition: var(--transition);
        }
        .contact-info-card:hover {
            transform: translateX(10px);
            border-color: rgba(59, 130, 246, 0.2);
        }
        .contact-info-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: rgba(59, 130, 246, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--accent-blue);
            flex-shrink: 0;
            transition: var(--transition);
        }
        .contact-info-card:hover .contact-info-icon {
            background: var(--gradient-1);
            color: #fff;
        }
        .contact-info-text h4 {
            font-family: var(--font-primary);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        .contact-info-text p, .contact-info-text a {
            color: var(--secondary-dark);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .contact-info-text a:hover {
            color: var(--accent-blue);
        }
        .contact-map {
            border-radius: 16px;
            overflow: hidden;
            height: 200px;
            box-shadow: var(--shadow-card);
        }
        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .contact-form-wrapper {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(59, 130, 246, 0.08);
        }
        .contact-form-wrapper h3 {
            font-family: var(--font-primary);
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }
        .contact-form .form-group label {
            color: var(--secondary-dark);
        }
        .contact-form .form-group input,
        .contact-form .form-group select,
        .contact-form .form-group textarea {
            background: var(--light-bg);
            border: 1px solid rgba(59, 130, 246, 0.15);
            color: var(--primary-dark);
        }
        .contact-form .form-group input::placeholder,
        .contact-form .form-group textarea::placeholder {
            color: var(--secondary-dark);
        }
        .contact-form .form-group input:focus,
        .contact-form .form-group select:focus,
        .contact-form .form-group textarea:focus {
            border-color: var(--accent-blue);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--primary-dark);
            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.3fr;
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-col h4 {
            font-family: var(--font-primary);
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 10px;
        }
        .footer-about p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        .footer-socials {
            display: flex;
            gap: 12px;
        }
        .footer-socials a {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
            text-decoration: none;
        }
        .footer-socials a:hover {
            background: var(--gradient-1);
            color: #fff;
            border-color: transparent;
            transform: translateY(-3px);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: var(--neon-blue);
            transform: translateX(5px);
        }
        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        .newsletter-form input {
            flex: 1;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
            font-family: var(--font-secondary);
        }
        .newsletter-form input:focus {
            border-color: var(--neon-blue);
        }
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .newsletter-form button {
            padding: 14px 24px;
            background: var(--gradient-1);
            color: #fff;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        .newsletter-form button:hover {
            box-shadow: var(--shadow-neon);
            transform: translateY(-2px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 25px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer-bottom-links a:hover {
            color: var(--neon-blue);
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--gradient-1);
            color: #fff;
            border: none;
            border-radius: 16px;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-neon);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
        }

        /* ===== ANIMATIONS ON SCROLL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .hero-title { font-size: 3rem; }
            .service-card { min-width: 340px; }
            .testimonial-card { min-width: calc(50% - 15px); }
        }

        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-text { order: 1; }
            .hero-visual { order: 0; }
            .hero-desc { margin: 0 auto 40px; }
            .hero-btns { justify-content: center; }
            .hero-stats { justify-content: center; }
            .about-grid { grid-template-columns: 1fr; }
            .about-cards { grid-template-columns: repeat(2, 1fr); }
            .milestones-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .process-grid::before { display: none; }
            .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
            .package-card.featured { transform: none; }
            .booking-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 100px 30px 30px;
                transition: var(--transition);
                gap: 5px;
            }
            .nav-menu.active { right: 0; }
            .nav-toggle { display: flex; }
            .nav-menu a { width: 100%; padding: 14px 20px; }
        }

        @media (max-width: 768px) {
            .section { padding: 70px 0; }
            .section-title { font-size: 2.2rem; }
            .hero { min-height: auto; padding: 120px 0 80px; }
            .hero-title { font-size: 2.3rem; }
            .hero-image-wrapper img { height: 350px; }
            .hero-stats { flex-wrap: wrap; gap: 25px; }
            .hero-floating-card { display: none; }
            .about-cards { grid-template-columns: 1fr; }
            .milestones-grid { grid-template-columns: 1fr 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: 1fr; }
            .service-card { min-width: 300px; }
            .testimonial-card { min-width: 100%; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .cta-content h2 { font-size: 2rem; }
            .packages-grid { max-width: 100%; }
            .booking-info h3 { font-size: 2rem; }
        }

        @media (max-width: 480px) {
            .container { padding: 0 20px; }
            .hero-title { font-size: 1.9rem; }
            .section-title { font-size: 1.8rem; }
            .hero-btns { flex-direction: column; align-items: center; }
            .cta-btns { flex-direction: column; align-items: center; }
            .hero-stat-number { font-size: 2rem; }
            .milestone-number { font-size: 2.5rem; }
            .newsletter-form { flex-direction: column; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }



        /* ===== PAGE HERO ===== */
        .page-hero {
            position: relative; min-height: 60vh; display: flex; align-items: center;
            padding: 140px 0 80px; overflow: hidden;
            background: var(--gradient-hero);
        }
        .page-hero::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at 30% 50%, rgba(96,165,250,0.08) 0%, transparent 60%),
                        radial-gradient(ellipse at 70% 30%, rgba(167,139,250,0.06) 0%, transparent 50%);
            pointer-events: none;
        }
        .page-hero-grid {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-size: 60px 60px;
            background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }
        .page-hero-content { position: relative; z-index: 2; text-align: center; width: 100%; }
        .page-hero .breadcrumb {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            margin-bottom: 20px; font-size: 0.85rem;
        }
        .page-hero .breadcrumb a { color: var(--accent-blue); }
        .page-hero .breadcrumb a:hover { text-decoration: underline; }
        .page-hero .breadcrumb span { color: var(--text-muted); }
        .page-hero .breadcrumb i { font-size: 0.65rem; color: var(--text-muted); }
        .page-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
            margin-bottom: 20px; letter-spacing: -0.02em;
        }
        .page-hero h1 .highlight {
            background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .page-hero p {
            max-width: 650px; margin: 0 auto; font-size: 1.1rem;
            color: var(--text-secondary); line-height: 1.8;
        }

