
        :root {
            --primary-dark: #0B132B;
            --primary-white: #FFFFFF;
            --primary-blue: #3A86FF;
            --light-bg: #F8FAFC;
            --gray-text: #64748B;
            --border-color: #E2E8F0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--primary-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ========== NAVBAR STYLES ========== */
        .navbar {
            background: transparent;
            padding: 20px 0;
            position: relative;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(11, 19, 43, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 28px;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            text-decoration: none;
            color: var(--primary-dark);
        }
        
        .logo-emoji {
            font-size: 36px;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--primary-dark);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-blue);
        }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            color: white !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
        }
        
        .nav-cta::after {
            display: none;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(58, 134, 255, 0.4);
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary-dark);
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        
        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(11, 19, 43, 0.85) 100%), 
                        url('https://images.pexels.com/photos/534216/pexels-photo-534216.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%233A86FF" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 80px 0;
        }
        
        .hero-text {
            color: white;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(58, 134, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            margin-bottom: 25px;
            border: 1px solid rgba(58, 134, 255, 0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }
        
        .hero-title {
            font-size: 56px;
            line-height: 1.15;
            margin-bottom: 25px;
            font-weight: 800;
        }
        
        .hero-title span {
            background: linear-gradient(135deg, var(--primary-blue), #60A5FA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-desc {
            font-size: 18px;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 35px;
            max-width: 520px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            color: white;
            padding: 16px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(58, 134, 255, 0.4);
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(58, 134, 255, 0.5);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 16px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.4);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-img-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
        }
        
        .hero-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .floating-card {
            position: absolute;
            background: white;
            padding: 20px 25px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            animation: floatCard 4s ease-in-out infinite;
        }
        
        .floating-card.card-1 {
            top: 20px;
            left: -40px;
            animation-delay: 0s;
        }
        
        .floating-card.card-2 {
            bottom: 40px;
            right: -30px;
            animation-delay: 1s;
        }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .card-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-blue), #60A5FA);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .card-stat {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-dark);
        }
        
        .card-label {
            font-size: 13px;
            color: var(--gray-text);
        }
        
        /* ========== ABOUT SECTION ========== */
        .about-section {
            padding: 120px 0;
            background: var(--light-bg);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-badge {
            display: inline-block;
            background: rgba(58, 134, 255, 0.1);
            color: var(--primary-blue);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 42px;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-subtitle {
            font-size: 17px;
            color: var(--gray-text);
            max-width: 650px;
            margin: 0 auto;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-image {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(11, 19, 43, 0.12);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            color: white;
            padding: 30px;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(58, 134, 255, 0.3);
        }
        
        .exp-number {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
        }
        
        .exp-text {
            font-size: 14px;
            opacity: 0.95;
        }
        
        .about-content h3 {
            font-size: 32px;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }
        
        .about-content p {
            color: var(--gray-text);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.85;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        
        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .feature-check {
            width: 26px;
            height: 26px;
            background: rgba(58, 134, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 13px;
            flex-shrink: 0;
        }
        
        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            margin-top: 25px;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            gap: 15px;
        }
        
        /* ========== COUNTER SECTION ========== */
        .counter-section {
            padding: 90px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2744 100%);
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" fill-opacity="0.03" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"></path></svg>') bottom/cover no-repeat;
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .counter-item {
            text-align: center;
            color: white;
            padding: 30px 20px;
        }
        
        .counter-icon {
            width: 75px;
            height: 75px;
            background: rgba(58, 134, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: var(--primary-blue);
            border: 1px solid rgba(58, 134, 255, 0.3);
        }
        
        .counter-number {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .counter-label {
            font-size: 16px;
            opacity: 0.85;
        }
        
        /* ========== VISION & MISSION ========== */
        .vision-mission {
            padding: 120px 0;
            background: white;
        }
        
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .vm-card {
            background: var(--light-bg);
            padding: 55px 45px;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(11, 19, 43, 0.1);
            border-color: var(--primary-blue);
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), #60A5FA);
        }
        
        .vm-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            margin-bottom: 28px;
            box-shadow: 0 15px 35px rgba(58, 134, 255, 0.3);
        }
        
        .vm-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        .vm-card p {
            color: var(--gray-text);
            line-height: 1.85;
            font-size: 16px;
        }
        
        /* ========== WHY CHOOSE US ========== */
        .why-choose {
            padding: 120px 0;
            background: var(--light-bg);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
        
        .feature-card {
            background: white;
            padding: 45px 35px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            transition: height 0.4s ease;
            z-index: 0;
        }
        
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 55px rgba(11, 19, 43, 0.12);
            border-color: var(--primary-blue);
        }
        
        .feature-card:hover::after {
            height: 100%;
        }
        
        .feature-card > * {
            position: relative;
            z-index: 1;
        }
        
        .feature-card:hover .feature-icon,
        .feature-card:hover h3,
        .feature-card:hover p {
            color: white;
        }
        
        .feature-icon {
            width: 85px;
            height: 85px;
            background: rgba(58, 134, 255, 0.1);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 38px;
            color: var(--primary-blue);
            transition: all 0.4s ease;
        }
        
        .feature-card:hover .feature-icon {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 18px;
            color: var(--primary-dark);
            transition: all 0.4s ease;
        }
        
        .feature-card p {
            color: var(--gray-text);
            font-size: 15px;
            line-height: 1.75;
            transition: all 0.4s ease;
        }
        
        /* ========== WORK PROCESS ========== */
        .work-process {
            padding: 120px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-blue), #60A5FA);
            transform: translateX(-50%);
            border-radius: 4px;
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 65px;
            position: relative;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .step-content {
            flex: 1;
            padding: 35px;
            background: var(--light-bg);
            border-radius: 25px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .step-content:hover {
            background: white;
            box-shadow: 0 20px 50px rgba(11, 19, 43, 0.1);
            border-color: var(--primary-blue);
            transform: scale(1.03);
        }
        
        .step-number {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            font-weight: 700;
            margin: 0 40px;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
            position: relative;
            z-index: 2;
            animation: pulseRing 2s infinite;
        }
        
        @keyframes pulseRing {
            0% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(58, 134, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0); }
        }
        
        .step-content h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--primary-dark);
        }
        
        .step-content p {
            color: var(--gray-text);
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* ========== SERVICES SECTION ========== */
        .services-section {
            padding: 120px 0;
            background: var(--light-bg);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }
        
        .service-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(11, 19, 43, 0.12);
            border-color: var(--primary-blue);
        }
        
        .service-header {
            padding: 35px 35px 25px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .service-emoji {
            width: 70px;
            height: 70px;
            background: rgba(58, 134, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            flex-shrink: 0;
        }
        
        .service-header h3 {
            font-size: 23px;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.3;
        }
        
        .service-body {
            padding: 0 35px 30px;
            flex-grow: 1;
        }
        
        .service-body p {
            color: var(--gray-text);
            font-size: 15px;
            line-height: 1.8;
        }
        
        .service-footer {
            padding: 25px 35px;
            border-top: 1px solid var(--border-color);
            background: rgba(248, 250, 252, 0.5);
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            gap: 15px;
        }
        
        /* ========== BOOKING FORM ========== */
        .booking-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, #162038 100%);
            position: relative;
            overflow: hidden;
        }
        
        .booking-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(58, 134, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .booking-info {
            color: white;
        }
        
        .booking-info .section-badge {
            background: rgba(58, 134, 255, 0.2);
            color: #60A5FA;
        }
        
        .booking-info h2 {
            font-size: 42px;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .booking-info > p {
            font-size: 17px;
            opacity: 0.9;
            line-height: 1.8;
            margin-bottom: 35px;
        }
        
        .booking-benefits {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .benefit-icon {
            width: 45px;
            height: 45px;
            background: rgba(58, 134, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 18px;
        }
        
        .booking-form-wrapper {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
        }
        
        .form-title {
            font-size: 26px;
            margin-bottom: 30px;
            color: var(--primary-dark);
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 22px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 14px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--border-color);
            border-radius: 14px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
            outline: none;
        }
        
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(58, 134, 255, 0.1);
        }
        
        select.form-control {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 18px;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 110px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 17px;
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
        }
        
        /* ========== PRICING PLANS ========== */
        .pricing-section {
            padding: 120px 0;
            background: white;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            align-items: stretch;
        }
        
        .plan-card {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 30px;
            padding: 45px 35px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .plan-card.featured {
            border-color: var(--primary-blue);
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(58, 134, 255, 0.2);
        }
        
        .plan-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 25px;
            right: -30px;
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            color: white;
            padding: 8px 45px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 55px rgba(11, 19, 43, 0.12);
        }
        
        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .plan-icon {
            width: 85px;
            height: 85px;
            background: rgba(58, 134, 255, 0.1);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
        }
        
        .plan-name {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .plan-price {
            margin-bottom: 25px;
        }
        
        .price-value {
            font-size: 52px;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        
        .price-period {
            font-size: 16px;
            color: var(--gray-text);
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 35px;
            text-align: left;
        }
        
        .plan-features li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--gray-text);
            font-size: 15px;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .check-icon {
            color: var(--primary-blue);
            font-size: 16px;
        }
        
        .plan-btn {
            width: 100%;
            padding: 16px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-size: 16px;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            background: transparent;
        }
        
        .plan-btn:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        .plan-card.featured .plan-btn {
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            color: white;
            border: none;
        }
        
        .plan-card.featured .plan-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
        }
        
        /* ========== REVIEWS SECTION ========== */
        .reviews-section {
            padding: 120px 0;
            background: var(--light-bg);
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .review-card {
            background: white;
            padding: 40px 35px;
            border-radius: 25px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 55px rgba(11, 19, 43, 0.1);
            border-color: var(--primary-blue);
        }
        
        .review-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
            color: #FBBF24;
            font-size: 18px;
        }
        
        .review-text {
            color: var(--gray-text);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-blue), #60A5FA);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: 700;
        }
        
        .author-info h4 {
            font-size: 17px;
            color: var(--primary-dark);
            margin-bottom: 3px;
        }
        
        .author-info span {
            font-size: 13px;
            color: var(--gray-text);
        }
        
        .quote-icon {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 60px;
            color: rgba(58, 134, 255, 0.08);
            font-family: Georgia, serif;
        }
        
        /* ========== FAQ SECTION ========== */
        .faq-section {
            padding: 120px 0;
            background: white;
        }
        
        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--light-bg);
            border-radius: 18px;
            margin-bottom: 18px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .faq-item.active {
            border-color: var(--primary-blue);
            box-shadow: 0 10px 30px rgba(58, 134, 255, 0.1);
        }
        
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 17px;
            color: var(--primary-dark);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--primary-blue);
        }
        
        .faq-icon {
            width: 35px;
            height: 35px;
            background: rgba(58, 134, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-icon {
            background: var(--primary-blue);
            color: white;
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .faq-answer-inner {
            padding: 0 30px 25px;
            color: var(--gray-text);
            line-height: 1.8;
            font-size: 15px;
        }
        
        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue) 0%, #2563EB 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }
        
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .cta-content h2 {
            font-size: 44px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .cta-content p {
            font-size: 19px;
            opacity: 0.95;
            margin-bottom: 35px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: white;
            color: var(--primary-blue);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cta-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        /* ========== CONTACT SECTION ========== */
        .contact-section {
            padding: 120px 0;
            background: var(--light-bg);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 60px;
        }
        
        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        
        .contact-icon-box {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
            box-shadow: 0 10px 25px rgba(58, 134, 255, 0.3);
        }
        
        .contact-details h4 {
            font-size: 19px;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }
        
        .contact-details p,
        .contact-details a {
            color: var(--gray-text);
            text-decoration: none;
            font-size: 15px;
            line-height: 1.7;
            transition: color 0.3s ease;
        }
        
        .contact-details a:hover {
            color: var(--primary-blue);
        }
        
        .contact-form-wrapper {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(11, 19, 43, 0.08);
        }
        
        /* ========== FOOTER ========== */
        .footer {
            background: var(--primary-dark);
            padding: 80px 0 0;
            color: white;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 50px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-col h4 {
            font-size: 20px;
            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(--primary-blue);
            border-radius: 3px;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 15px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .social-link {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 14px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary-blue);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .newsletter-form input {
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-form input:focus {
            border-color: var(--primary-blue);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .newsletter-form button {
            padding: 15px 25px;
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
            font-family: inherit;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(58, 134, 255, 0.4);
        }
        
        .footer-bottom {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        
        .footer-legal {
            display: flex;
            gap: 25px;
        }
        
        .footer-legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: var(--primary-blue);
        }
        
        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), #2563EB);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(58, 134, 255, 0.4);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        
        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-title {
                font-size: 44px;
            }
            
            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                max-width: 550px;
                margin: 0 auto;
            }
            
            .floating-card.card-1 {
                left: 20px;
            }
            
            .floating-card.card-2 {
                right: 20px;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .experience-badge {
                bottom: 20px;
                right: 20px;
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .vm-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .booking-container {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }
            
            .plan-card.featured {
                transform: none;
            }
            
            .plan-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 40px;
                gap: 25px;
                transition: right 0.4s ease;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                flex-direction: column !important;
            }
            
            .process-line {
                left: 32px;
            }
            
            .step-number {
                margin: 0 0 20px 0;
            }
            
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .counter-number {
                font-size: 38px;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 30px;
            }
            
            .hero-badge {
                font-size: 12px;
            }
            
            .btn-primary, .btn-secondary {
                padding: 14px 28px;
                font-size: 14px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .booking-form-wrapper,
            .contact-form-wrapper {
                padding: 30px 25px;
            }
        }
