
        :root {
            --neo-mint: #9BE8D8;
            --neo-mint-light: #C8F4EB;
            --neo-mint-dark: #6DD9C5;
            --deep-indigo: #1A1F3D;
            --deep-indigo-light: #2D3561;
            --deep-indigo-dark: #0F1229;
            --white: #FFFFFF;
            --light-gray: #F8FAFB;
            --text-gray: #555555;
            --gradient-primary: linear-gradient(135deg, var(--neo-mint) 0%, var(--deep-indigo) 100%);
            --shadow-soft: 0 10px 40px rgba(26, 31, 61, 0.1);
            --shadow-hover: 0 20px 60px rgba(26, 31, 61, 0.15);
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--deep-indigo);
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--gradient-primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition-smooth);
            box-shadow: 0 8px 25px rgba(155, 232, 216, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--deep-indigo) 0%, var(--neo-mint-dark) 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .btn-primary:hover::before {
            left: 0;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(155, 232, 216, 0.5);
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: transparent;
            color: var(--deep-indigo);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition-smooth);
            border: 2px solid var(--neo-mint);
        }
        
        .btn-secondary:hover {
            background: var(--neo-mint);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(155, 232, 216, 0.4);
        }
        
        .section-padding {
            padding: 120px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2 {
            font-size: 48px;
            color: var(--deep-indigo);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 650px;
            margin: 30px auto 0;
        }
        
        /* ==================== NAVBAR ==================== */
        .navbar {
            padding: 20px 0;
            background: transparent;
            transition: var(--transition-smooth);
            z-index: 1000;
            position: relative;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--deep-indigo);
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 8px 25px rgba(155, 232, 216, 0.4);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--deep-indigo);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            transition: var(--transition-smooth);
            padding: 5px 0;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neo-mint);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--neo-mint-dark);
        }
        
        .nav-cta {
            padding: 12px 28px !important;
            background: var(--gradient-primary) !important;
            color: white !important;
            border-radius: 50px !important;
            box-shadow: 0 6px 20px rgba(155, 232, 216, 0.4);
        }
        
        .nav-cta::after {
            display: none !important;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(155, 232, 216, 0.5);
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
            background: none;
            border: none;
        }
        
        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--deep-indigo);
            border-radius: 3px;
            transition: var(--transition-smooth);
        }
        
        /* ==================== HERO SECTION ==================== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, rgba(155, 232, 216, 0.1) 0%, rgba(26, 31, 61, 0.05) 100%);
            overflow: hidden;
            padding-top: 100px;
        }
        
        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .shape-1 {
            width: 600px;
            height: 600px;
            background: var(--neo-mint);
            top: -200px;
            right: -200px;
            animation: float 8s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--deep-indigo);
            bottom: -150px;
            left: -150px;
            animation: float 10s ease-in-out infinite reverse;
        }
        
        .shape-3 {
            width: 250px;
            height: 250px;
            background: var(--neo-mint-dark);
            top: 50%;
            left: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            animation: fadeInLeft 1s ease;
        }
        
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: rgba(155, 232, 216, 0.2);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--deep-indigo);
            margin-bottom: 25px;
            border: 1px solid var(--neo-mint);
        }
        
        .hero-badge i {
            color: var(--neo-mint-dark);
        }
        
        .hero-content h1 {
            font-size: 64px;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--deep-indigo);
        }
        
        .hero-content h1 span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 19px;
            color: var(--text-gray);
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .hero-stats {
            display: flex;
            gap: 50px;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid rgba(155, 232, 216, 0.3);
        }
        
        .hero-stat h3 {
            font-size: 42px;
            color: var(--deep-indigo);
            font-family: 'Poppins', sans-serif;
        }
        
        .hero-stat p {
            font-size: 14px;
            color: var(--text-gray);
            margin: 0;
        }
        
        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.3s both;
        }
        
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-img-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }
        
        .hero-img-wrapper img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            display: block;
        }
        
        .hero-floating-card {
            position: absolute;
            background: white;
            padding: 20px 28px;
            border-radius: 20px;
            box-shadow: var(--shadow-hover);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: floatCard 4s ease-in-out infinite;
        }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .hero-floating-card.card-1 {
            bottom: 40px;
            left: -40px;
        }
        
        .hero-floating-card.card-2 {
            top: 40px;
            right: -40px;
            animation-delay: 1s;
        }
        
        .floating-icon {
            width: 55px;
            height: 55px;
            background: var(--neo-mint-light);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--deep-indigo);
        }
        
        .floating-text h4 {
            font-size: 18px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: var(--deep-indigo);
        }
        
        .floating-text p {
            font-size: 13px;
            color: var(--text-gray);
            margin: 0;
        }
        
        /* ==================== ABOUT US ==================== */
        .about-section {
            background: var(--light-gray);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-images {
            position: relative;
        }
        
        .about-img-main {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }
        
        .about-img-main img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            display: block;
        }
        
        .about-experience-badge {
            position: absolute;
            bottom: 40px;
            right: -40px;
            background: var(--gradient-primary);
            color: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-hover);
        }
        
        .about-experience-badge h3 {
            font-size: 48px;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 5px;
        }
        
        .about-experience-badge p {
            font-size: 14px;
            margin: 0;
            opacity: 0.9;
        }
        
        .about-content h2 {
            font-size: 44px;
            color: var(--deep-indigo);
            margin-bottom: 25px;
        }
        
        .about-content p {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.9;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 35px 0;
        }
        
        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .about-feature-item i {
            width: 45px;
            height: 45px;
            background: var(--neo-mint-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-indigo);
            font-size: 18px;
        }
        
        .about-feature-item span {
            font-weight: 600;
            font-size: 15px;
            color: var(--deep-indigo);
        }
        
        /* ==================== COUNTER SECTION ==================== */
        .counter-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" 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>') no-repeat bottom;
            background-size: cover;
        }
        
        .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;
        }
        
        .counter-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 20px;
            backdrop-filter: blur(10px);
        }
        
        .counter-item h3 {
            font-size: 52px;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .counter-item p {
            font-size: 17px;
            opacity: 0.9;
            margin: 0;
        }
        
        /* ==================== VISION & MISSION ==================== */
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .vm-card {
            background: white;
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .vm-icon {
            width: 75px;
            height: 75px;
            background: var(--neo-mint-light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--deep-indigo);
            margin-bottom: 25px;
        }
        
        .vm-card h3 {
            font-size: 32px;
            color: var(--deep-indigo);
            margin-bottom: 20px;
        }
        
        .vm-card p {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.9;
        }
        
        /* ==================== WHY CHOOSE US ==================== */
        .why-us-section {
            background: var(--light-gray);
        }
        
        .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;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient-primary);
            transition: height 0.4s ease;
            z-index: 0;
        }
        
        .feature-card:hover::after {
            height: 100%;
        }
        
        .feature-card > * {
            position: relative;
            z-index: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .feature-card:hover .feature-icon,
        .feature-card:hover h3,
        .feature-card:hover p {
            color: white;
        }
        
        .feature-icon {
            width: 85px;
            height: 85px;
            background: var(--neo-mint-light);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            color: var(--deep-indigo);
            margin: 0 auto 25px;
            transition: var(--transition-smooth);
        }
        
        .feature-card:hover .feature-icon {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .feature-card h3 {
            font-size: 22px;
            color: var(--deep-indigo);
            margin-bottom: 15px;
            transition: var(--transition-smooth);
        }
        
        .feature-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
            transition: var(--transition-smooth);
        }
        
        /* ==================== WORK PROCESS ==================== */
        .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(--neo-mint), var(--deep-indigo));
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .process-item {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .process-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .process-content {
            width: calc(50% - 50px);
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
        }
        
        .process-content:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-hover);
        }
        
        .process-number {
            width: 65px;
            height: 65px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 700;
            color: white;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 8px 25px rgba(155, 232, 216, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 8px 25px rgba(155, 232, 216, 0.4); }
            50% { box-shadow: 0 8px 35px rgba(155, 232, 216, 0.7); }
        }
        
        .process-content h3 {
            font-size: 22px;
            color: var(--deep-indigo);
            margin-bottom: 12px;
        }
        
        .process-content p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
        }
        
        /* ==================== SERVICES SECTION ==================== */
        .services-section {
            background: var(--light-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }
        
        .service-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .service-icon-wrapper {
            padding: 40px 40px 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--neo-mint-light);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--deep-indigo);
            flex-shrink: 0;
            transition: var(--transition-smooth);
        }
        
        .service-card:hover .service-icon {
            background: var(--gradient-primary);
            color: white;
        }
        
        .service-card-body {
            padding: 0 40px 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--deep-indigo);
            margin-bottom: 15px;
        }
        
        .service-card-body p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--deep-indigo);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition-smooth);
            align-self: flex-start;
        }
        
        .service-link:hover {
            color: var(--neo-mint-dark);
            gap: 12px;
        }
        
        /* ==================== BOOKING FORM ==================== */
        .booking-section {
            /*background: linear-gradient(135deg, rgba(155, 232, 216, 0.1) 0%, rgba(26, 31, 61, 0.05) 100%);*/
        }
        
        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .booking-form {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-hover);
        }
        
        .booking-form h3 {
            font-size: 32px;
            color: var(--deep-indigo);
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 14px;
            color: var(--deep-indigo);
            margin-bottom: 10px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 14px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition-smooth);
            background: var(--light-gray);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neo-mint);
            background: white;
            box-shadow: 0 0 0 4px rgba(155, 232, 216, 0.2);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .booking-info h3 {
            font-size: 36px;
            color: var(--deep-indigo);
            margin-bottom: 25px;
        }
        
        .booking-info > p {
            font-size: 17px;
            color: var(--text-gray);
            margin-bottom: 35px;
            line-height: 1.8;
        }
        
        .booking-benefits {
            list-style: none;
        }
        
        .booking-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 16px;
            color: var(--deep-indigo);
        }
        
        .booking-benefits li i {
            width: 28px;
            height: 28px;
            background: var(--neo-mint-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-indigo);
            font-size: 13px;
            flex-shrink: 0;
            margin-top: 3px;
        }
        
        /* ==================== WELLNESS PLANS ==================== */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
        
        .plan-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            position: relative;
        }
        
        .plan-card.featured {
            transform: scale(1.05);
            border: 3px solid var(--neo-mint);
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .plan-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient-primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .plan-header {
            background: var(--light-gray);
            padding: 40px 35px 30px;
            text-align: center;
        }
        
        .plan-icon {
            width: 80px;
            height: 80px;
            background: var(--neo-mint-light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--deep-indigo);
            margin: 0 auto 20px;
        }
        
        .plan-header h3 {
            font-size: 26px;
            color: var(--deep-indigo);
            margin-bottom: 10px;
        }
        
        .plan-price {
            font-size: 48px;
            font-weight: 800;
            color: var(--deep-indigo);
            font-family: 'Poppins', sans-serif;
        }
        
        .plan-price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-gray);
        }
        
        .plan-body {
            padding: 35px;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .plan-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 15px;
            color: var(--text-gray);
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features li i {
            color: var(--neo-mint-dark);
            font-size: 16px;
        }
        
        .plan-btn {
            width: 100%;
            justify-content: center;
        }
        
        /* ==================== REVIEWS SECTION ==================== */
        .reviews-slider {
            overflow: hidden;
            position: relative;
        }
        
        .reviews-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }
        
        .review-card {
            min-width: calc(33.333% - 20px);
            background: white;
            padding: 40px 35px;
            border-radius: 25px;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
        }
        
        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .review-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }
        
        .review-stars i {
            color: #FFB800;
            font-size: 18px;
        }
        
        .review-text {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .review-avatar {
            width: 55px;
            height: 55px;
            background: var(--neo-mint-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            color: var(--deep-indigo);
        }
        
        .review-author-info h4 {
            font-size: 18px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--deep-indigo);
        }
        
        .review-author-info p {
            font-size: 14px;
            color: var(--text-gray);
            margin: 0;
        }
        
        .reviews-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }
        
        .reviews-nav button {
            width: 55px;
            height: 55px;
            border: 2px solid var(--neo-mint);
            background: transparent;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-size: 20px;
            color: var(--deep-indigo);
        }
        
        .reviews-nav button:hover {
            background: var(--neo-mint);
            transform: scale(1.1);
        }
        
        /* ==================== FAQ SECTION ==================== */
        .faq-section {
            background: var(--light-gray);
        }
        
        .faq-list {
            max-width: 850px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 18px;
            margin-bottom: 18px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition-smooth);
        }
        
        .faq-item:hover {
            box-shadow: var(--shadow-soft);
        }
        
        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        
        .faq-question h3 {
            font-size: 18px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--deep-indigo);
            margin: 0;
        }
        
        .faq-question i {
            font-size: 20px;
            color: var(--neo-mint-dark);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .faq-answer-inner {
            padding: 0 30px 25px;
        }
        
        .faq-answer p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 48px;
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-content .btn-primary {
            background: white;
            color: var(--deep-indigo);
        }
        
        .cta-content .btn-primary::before {
            background: var(--neo-mint);
        }
        
        /* ==================== CONTACT SECTION ==================== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }
        
        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .contact-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: var(--transition-smooth);
        }
        
        .contact-card:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-hover);
        }
        
        .contact-card-icon {
            width: 65px;
            height: 65px;
            background: var(--neo-mint-light);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--deep-indigo);
            flex-shrink: 0;
        }
        
        .contact-card-text h4 {
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--deep-indigo);
            margin-bottom: 5px;
        }
        
        .contact-card-text p {
            font-size: 15px;
            color: var(--text-gray);
            margin: 0;
        }
        
        .contact-card-text a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        
        .contact-card-text a:hover {
            color: var(--neo-mint-dark);
        }
        
        .contact-form-wrapper {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-hover);
        }
        
        .contact-form-wrapper h3 {
            font-size: 32px;
            color: var(--deep-indigo);
            margin-bottom: 30px;
        }
        
        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--deep-indigo-dark);
            color: white;
            padding-top: 100px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
            gap: 50px;
            padding-bottom: 70px;
        }
        
        .footer-col h3 {
            font-size: 24px;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 25px;
            color: var(--neo-mint);
        }
        
        .footer-about p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: var(--transition-smooth);
        }
        
        .footer-social a:hover {
            background: var(--neo-mint);
            color: var(--deep-indigo);
            transform: translateY(-5px);
        }
        
        .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: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--neo-mint);
            padding-left: 8px;
        }
        
        .footer-links a i {
            font-size: 12px;
            color: var(--neo-mint);
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .newsletter-form input {
            padding: 16px 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition-smooth);
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--neo-mint);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .newsletter-form button {
            padding: 16px 30px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 14px;
            color: white;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-family: 'Poppins', sans-serif;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(155, 232, 216, 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition-smooth);
        }
        
        .footer-bottom-links a:hover {
            color: var(--neo-mint);
        }
        
        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 52px;
            }
            
            .section-title h2 {
                font-size: 40px;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 40px;
                gap: 25px;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
                transition: right 0.4s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .mobile-toggle {
                display: flex;
                z-index: 1001;
            }
            
            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 44px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-image {
                max-width: 600px;
                margin: 0 auto;
            }
            
            .hero-floating-card.card-1 {
                left: 20px;
            }
            
            .hero-floating-card.card-2 {
                right: 20px;
            }
            
            .about-grid,
            .vm-grid,
            .booking-wrapper,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .about-experience-badge {
                right: 20px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .plans-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }
            
            .plan-card.featured {
                transform: none;
            }
            
            .plan-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .review-card {
                min-width: calc(50% - 15px);
            }
            
            .process-line {
                left: 30px;
            }
            
            .process-item,
            .process-item:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 90px;
            }
            
            .process-number {
                left: 30px;
                transform: translateX(-50%);
            }
            
            .process-content {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 25px;
            }
            
            .about-content h2 {
                font-size: 32px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .counter-item h3 {
                font-size: 40px;
            }
            
            .vm-card {
                padding: 35px 25px;
            }
            
            .vm-card h3 {
                font-size: 26px;
            }
            
            .booking-form,
            .contact-form-wrapper {
                padding: 35px 25px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .review-card {
                min-width: 100%;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 30px;
            }
            
            .hero-img-wrapper img {
                height: 350px;
            }
            
            .hero-floating-card {
                display: none;
            }
            
            .btn-primary,
            .btn-secondary {
                padding: 14px 28px;
                font-size: 14px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            box-shadow: 0 8px 25px rgba(155, 232, 216, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            z-index: 999;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(155, 232, 216, 0.5);
        }
