
        :root {
            --primary-dark: #1B1B1B;
            --primary-gold: #FFD700;
            --light-gray: #E6E6E6;
            --white: #FFFFFF;
            --text-gray: #666666;
            --transition: all 0.4s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--primary-dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        /* Container */
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Buttons */
        .btn-primary {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
            color: var(--primary-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FFA500 0%, var(--primary-gold) 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(255, 215, 0, 0.4);
        }
        
        .btn-secondary {
            display: inline-block;
            padding: 12px 35px;
            background: transparent;
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 48px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), #FFA500);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-gray);
            font-size: 18px;
            max-width: 700px;
            margin: 25px auto 0;
        }
        
        /* ==================== NAVBAR ==================== */
        .navbar {
            padding: 20px 0;
            transition: var(--transition);
            z-index: 1000;
            position: relative;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-dark);
        }
        
        .logo-emoji {
            font-size: 36px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--primary-dark);
            font-weight: 500;
            font-size: 16px;
            transition: var(--transition);
            position: relative;
            padding: 8px 0;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--primary-gold);
        }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%) !important;
            color: var(--primary-dark) !important;
            padding: 12px 30px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
        }
        
        .nav-cta::after {
            display: none !important;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--primary-dark);
            transition: var(--transition);
            border-radius: 2px;
        }
        
        /* ==================== HERO SECTION ==================== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, rgba(27, 27, 27, 0.9) 0%, rgba(27, 27, 27, 0.7) 100%),
                        url('https://images.pexels.com/photos/29252366/pexels-photo-29252366.jpeg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 850px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid var(--primary-gold);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }
        
        .hero-badge i {
            color: var(--primary-gold);
        }
        
        .hero-content h1 {
            font-size: 64px;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.1;
        }
        
        .hero-content h1 span {
            color: var(--primary-gold);
            position: relative;
        }
        
        .hero-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 650px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .hero-stats {
            display: flex;
            gap: 50px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hero-stat h3 {
            font-size: 42px;
            color: var(--primary-gold);
            font-weight: 800;
        }
        
        .hero-stat p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        
        .hero-shape {
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 700px;
            height: 700px;
            border: 2px solid rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }
        
        .hero-shape::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid rgba(255, 215, 0, 0.05);
            border-radius: 50%;
        }
        
        @keyframes rotate {
            from { transform: translateY(-50%) rotate(0deg); }
            to { transform: translateY(-50%) rotate(360deg); }
        }
        
        /* ==================== ABOUT SECTION ==================== */
        .about-section {
            background: var(--white);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 2;
        }
        
        .about-image img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
            color: var(--primary-dark);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            z-index: 3;
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
        }
        
        .about-experience-badge h3 {
            font-size: 48px;
            font-weight: 900;
            margin: 0;
        }
        
        .about-experience-badge p {
            font-size: 14px;
            font-weight: 600;
            margin: 0;
        }
        
        .about-content h2 {
            font-size: 44px;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }
        
        .about-content h2 span {
            color: var(--primary-gold);
        }
        
        .about-text {
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 30px;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 35px;
        }
        
        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .about-feature-item i {
            color: var(--primary-gold);
            font-size: 20px;
        }
        
        .about-feature-item span {
            font-weight: 500;
            color: var(--primary-dark);
        }
        
        /* ==================== COUNTER SECTION ==================== */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d2d 100%);
            position: relative;
            overflow: hidden;
        }
        
        .counter-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, var(--primary-gold) 35px, var(--primary-gold) 70px);
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .counter-item {
            text-align: center;
            padding: 40px 20px;
            position: relative;
        }
        
        .counter-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 60%;
            width: 1px;
            background: rgba(255, 215, 0, 0.2);
        }
        
        .counter-item:last-child::after {
            display: none;
        }
        
        .counter-icon {
            font-size: 50px;
            color: var(--primary-gold);
            margin-bottom: 20px;
        }
        
        .counter-number {
            font-size: 52px;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .counter-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        /* ==================== VISION MISSION SECTION ==================== */
        .vision-mission-section {
            background: var(--light-gray);
        }
        
        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .vm-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-gold), #FFA500);
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        }
        
        .vm-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin-bottom: 25px;
        }
        
        .vm-card h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        .vm-card p {
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.9;
        }
        
        /* ==================== WHY CHOOSE US ==================== */
        .why-choose-section {
            background: var(--white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 45px 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
            transition: left 0.5s ease;
        }
        
        .feature-card:hover::before {
            left: 0;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-gold);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
        }
        
        .feature-emoji {
            font-size: 60px;
            margin-bottom: 25px;
            display: block;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-emoji {
            transform: scale(1.2) rotate(10deg);
        }
        
        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 18px;
            color: var(--primary-dark);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        .feature-card p {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.8;
        }
        
        /* ==================== WORK PROCESS ==================== */
        .process-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #333 100%);
            position: relative;
            overflow: hidden;
        }
        
        .process-section .section-title h2 {
            color: var(--white);
        }
        
        .process-section .section-title p {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .process-timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .process-line {
            position: absolute;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 4px;
            background: rgba(255, 215, 0, 0.2);
        }
        
        .process-line-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-gold), #FFA500);
            width: 0;
            animation: fillLine 3s ease forwards;
            animation-delay: 0.5s;
        }
        
        @keyframes fillLine {
            to { width: 100%; }
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            font-weight: 900;
            color: var(--primary-dark);
            margin: 0 auto 25px;
            position: relative;
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
            animation: bounceIn 0.6s ease backwards;
        }
        
        .process-step:nth-child(1) .step-number { animation-delay: 0.2s; }
        .process-step:nth-child(2) .step-number { animation-delay: 0.4s; }
        .process-step:nth-child(3) .step-number { animation-delay: 0.6s; }
        .process-step:nth-child(4) .step-number { animation-delay: 0.8s; }
        
        @keyframes bounceIn {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .process-step h3 {
            color: var(--white);
            font-size: 22px;
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        .process-step p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* ==================== SERVICES SECTION ==================== */
        .services-section {
            background: var(--light-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .service-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.15);
        }
        
        .service-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(27, 27, 27, 0.7) 100%);
            opacity: 0;
            transition: var(--transition);
        }
        
        .service-card:hover .service-image-overlay {
            opacity: 1;
        }
        
        .service-emoji {
            position: absolute;
            bottom: 15px;
            left: 20px;
            font-size: 45px;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition);
        }
        
        .service-card:hover .service-emoji {
            transform: translateY(0);
            opacity: 1;
        }
        
        .service-content {
            padding: 30px 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-family: 'Poppins', sans-serif;
        }
        
        .service-content p {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
        }
        
        .service-link:hover {
            gap: 15px;
            color: #FFA500;
        }
        
        /* ==================== BOOKING FORM SECTION ==================== */
        .booking-section {
            background: var(--white);
        }
        
        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .booking-info h2 {
            font-size: 42px;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }
        
        .booking-info h2 span {
            color: var(--primary-gold);
        }
        
        .booking-info > p {
            color: var(--text-gray);
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 35px;
        }
        
        .booking-features-list {
            list-style: none;
        }
        
        .booking-features-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            color: var(--text-gray);
            font-size: 16px;
        }
        
        .booking-features-list li i {
            color: var(--primary-gold);
            font-size: 20px;
            margin-top: 3px;
        }
        
        .booking-form-container {
            background: var(--light-gray);
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .booking-form-container h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--primary-dark);
            font-family: 'Poppins', sans-serif;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 14px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid transparent;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* ==================== WELLNESS PLANS SECTION ==================== */
        .wellness-section {
            background: linear-gradient(135deg, #f8f4e8 0%, #fff9e6 100%);
            position: relative;
            overflow: hidden;
        }
        
        .wellness-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .plan-card {
            background: var(--white);
            border-radius: 25px;
            padding: 45px 40px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .plan-card.featured {
            border: 3px solid var(--primary-gold);
            transform: scale(1.03);
        }
        
        .plan-card.featured:hover {
            transform: scale(1.05);
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        }
        
        .plan-badge {
            position: absolute;
            top: 25px;
            right: 25px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
            color: var(--primary-dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .plan-emoji {
            font-size: 55px;
            margin-bottom: 20px;
            display: block;
        }
        
        .plan-card h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-family: 'Poppins', sans-serif;
        }
        
        .plan-price {
            font-size: 42px;
            font-weight: 900;
            color: var(--primary-gold);
            margin-bottom: 25px;
        }
        
        .plan-price span {
            font-size: 16px;
            color: var(--text-gray);
            font-weight: 500;
        }
        
        .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 var(--light-gray);
            color: var(--text-gray);
            font-size: 15px;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features li i {
            color: var(--primary-gold);
            font-size: 16px;
        }
        
        /* ==================== REVIEWS SECTION ==================== */
        .reviews-section {
            background: var(--white);
        }
        
        .reviews-slider {
            position: relative;
            overflow: hidden;
        }
        
        .reviews-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }
        
        .review-card {
            min-width: calc(33.333% - 20px);
            background: var(--light-gray);
            padding: 40px 35px;
            border-radius: 20px;
            transition: var(--transition);
        }
        
        .review-card:hover {
            background: var(--white);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .review-stars {
            color: var(--primary-gold);
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .review-text {
            color: var(--text-gray);
            font-size: 16px;
            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;
            border-radius: 50%;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--white);
            font-weight: 700;
        }
        
        .review-author-info h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary-dark);
            font-family: 'Poppins', sans-serif;
            margin-bottom: 3px;
        }
        
        .review-author-info span {
            font-size: 13px;
            color: var(--text-gray);
        }
        
        .reviews-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }
        
        .review-nav-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            border: 2px solid var(--primary-gold);
            background: transparent;
            color: var(--primary-gold);
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .review-nav-btn:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
        }
        
        /* ==================== FAQ SECTION ==================== */
        .faq-section {
            background: var(--light-gray);
        }
        
        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-dark);
            font-family: 'Poppins', sans-serif;
            margin: 0;
            flex: 1;
        }
        
        .faq-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 20px;
            font-weight: 700;
            transition: var(--transition);
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .faq-answer-content {
            padding: 0 30px 25px;
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d2d 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-bg-shape {
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            border: 2px solid rgba(255, 215, 0, 0.1);
            border-radius: 50%;
        }
        
        .cta-bg-shape::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 50px;
            width: 350px;
            height: 350px;
            border: 2px solid rgba(255, 215, 0, 0.08);
            border-radius: 50%;
        }
        
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 48px;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .cta-content h2 span {
            color: var(--primary-gold);
        }
        
        .cta-content p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 19px;
            max-width: 650px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }
        
        /* ==================== CONTACT SECTION ==================== */
        .contact-section {
            background: var(--white);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }
        
        .contact-info h2 {
            font-size: 40px;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }
        
        .contact-info > p {
            color: var(--text-gray);
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary-gold);
            flex-shrink: 0;
        }
        
        .contact-item-text h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 5px;
            font-family: 'Poppins', sans-serif;
        }
        
        .contact-item-text p,
        .contact-item-text a {
            color: var(--text-gray);
            font-size: 15px;
            text-decoration: none;
            transition: var(--transition);
            line-height: 1.6;
        }
        
        .contact-item-text a:hover {
            color: var(--primary-gold);
        }
        
        .contact-form-wrapper {
            background: var(--light-gray);
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }
        
        .contact-form-wrapper h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--primary-dark);
            font-family: 'Poppins', sans-serif;
        }
        
        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--primary-dark);
            color: var(--white);
            padding-top: 80px;
        }
        
        .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 h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }
        
        .footer-links a i {
            font-size: 12px;
            opacity: 0;
            transition: var(--transition);
        }
        
        .footer-links a:hover i {
            opacity: 1;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .newsletter-form p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            margin-bottom: 10px;
        }
        
        .newsletter-input-wrapper {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-input-wrapper input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }
        
        .newsletter-input-wrapper input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-input-wrapper input:focus {
            outline: none;
            border-color: var(--primary-gold);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .newsletter-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
            color: var(--primary-dark);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }
        
        .footer-bottom {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .footer-bottom-links a:hover {
            color: var(--primary-gold);
        }
        
        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
            
            .process-line {
                display: none;
            }
        }
        
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 48px;
            }
            
            .about-grid,
            .booking-wrapper,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .vm-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .counter-item::after {
                display: none;
            }
            
            .plans-grid {
                grid-template-columns: 1fr;
            }
            
            .plan-card.featured {
                transform: none;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .review-card {
                min-width: calc(50% - 15px);
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 40px 40px;
                gap: 25px;
                transition: right 0.4s ease;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .hero-stats {
                gap: 30px;
            }
            
            .hero-stat h3 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 34px;
            }
            
            .hero-content h1 {
                font-size: 38px;
            }
            
            .hero-content p {
                font-size: 17px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 25px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .counter-grid {
                grid-template-columns: 1fr;
            }
            
            .process-grid {
                grid-template-columns: 1fr;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .review-card {
                min-width: 100%;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .newsletter-input-wrapper {
                flex-direction: column;
            }
            
            .cta-content h2 {
                font-size: 34px;
            }
            
            .about-content h2 {
                font-size: 32px;
            }
        }
        
        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 22px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
        }
