
        :root {
            --primary: #1C1C1C;
            --secondary: #BFA181;
            --accent: #D4AF77;
            --light: #F5F5F5;
            --white: #FFFFFF;
            --gradient: linear-gradient(135deg, #1C1C1C 0%, #333333 100%);
            --gradient-gold: linear-gradient(135deg, #BFA181 0%, #D4AF77 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--primary);
            overflow-x: hidden;
            background-color: var(--white);
        }

        /* Navbar Styles */
        .navbar {
            position: relative;
            padding: 25px 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(28, 28, 28, 0.12);
            padding: 18px 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 26px;
            font-weight: 800;
            text-decoration: none;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            box-shadow: 0 8px 20px rgba(191, 161, 129, 0.35);
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 38px;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.3px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--secondary);
            transition: width 0.3s ease;
            border-radius: 10px;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--secondary);
        }

        .nav-cta {
            background: var(--primary);
            color: white !important;
            padding: 13px 30px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 6px 22px rgba(28, 28, 28, 0.25);
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(191, 161, 129, 0.45);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 30px;
            height: 3px;
            background: var(--primary);
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.93) 0%, rgba(60, 60, 60, 0.88) 100%),
                        url('https://images.pexels.com/photos/5900225/pexels-photo-5900225.jpeg') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(191, 161, 129, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(191, 161, 129, 0.1) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 40px 100px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 62px;
            font-weight: 900;
            color: white;
            line-height: 1.15;
            margin-bottom: 28px;
            font-family: 'Playfair Display', serif;
            animation: fadeInUp 1s ease-out;
        }

        .hero-text h1 span {
            display: block;
            color: var(--secondary);
            font-style: italic;
        }

        .hero-text p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 38px;
            line-height: 1.85;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            padding: 17px 42px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 32px rgba(191, 161, 129, 0.45);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.04);
            box-shadow: 0 18px 45px rgba(191, 161, 129, 0.6);
            background: var(--accent);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 17px 42px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
            border-color: white;
            transform: translateY(-5px);
        }

        .hero-visual {
            animation: fadeInRight 1s ease-out 0.3s both;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            padding: 45px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .hero-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--light);
        }

        .hero-card-header h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }

        .hero-card-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid var(--light);
        }

        .stat-item:last-child {
            border-bottom: none;
        }

        .stat-label {
            font-weight: 500;
            color: #555;
        }

        .stat-value {
            font-weight: 800;
            color: var(--secondary);
            font-size: 18px;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Section Common Styles */
        .section {
            padding: 110px 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 75px;
        }

        .section-subtitle {
            display: inline-block;
            background: linear-gradient(135deg, rgba(191, 161, 129, 0.15), rgba(191, 161, 129, 0.08));
            color: var(--secondary);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
            border: 1px solid rgba(191, 161, 129, 0.25);
        }

        .section-title {
            font-size: 50px;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 22px;
            line-height: 1.2;
            font-family: 'Playfair Display', serif;
        }

        .section-title span {
            color: var(--secondary);
            position: relative;
        }

        .section-desc {
            font-size: 17px;
            color: #666;
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.85;
        }

        /* About Section */
        .about-section {
            background: var(--light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-images {
            position: relative;
        }

        .about-img-main {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(28, 28, 28, 0.18);
        }

        .about-img-main img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-img-main:hover img {
            transform: scale(1.06);
        }

        .experience-badge {
            position: absolute;
            bottom: -28px;
            right: -28px;
            background: var(--gradient);
            color: white;
            padding: 32px;
            border-radius: 22px;
            text-align: center;
            box-shadow: 0 18px 45px rgba(28, 28, 28, 0.35);
            animation: floatBadge 3s ease-in-out infinite;
        }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .experience-badge .number {
            font-size: 52px;
            font-weight: 900;
            display: block;
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 14px;
            font-weight: 500;
            opacity: 0.95;
        }

        .about-content h3 {
            font-size: 40px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 26px;
            line-height: 1.25;
            font-family: 'Playfair Display', serif;
        }

        .about-content p {
            font-size: 16px;
            color: #555;
            line-height: 1.92;
            margin-bottom: 18px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin: 32px 0;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            color: var(--primary);
            font-size: 15px;
        }

        .about-feature-item i {
            width: 28px;
            height: 28px;
            background: var(--gradient-gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        .btn-about {
            background: var(--primary);
            color: white;
            padding: 15px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(28, 28, 28, 0.3);
        }

        .btn-about:hover {
            background: var(--secondary);
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(191, 161, 129, 0.45);
        }

        /* Counter Section */
        .counter-section {
            background: var(--gradient);
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 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>') bottom/cover no-repeat;
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 45px;
            position: relative;
            z-index: 2;
        }

        .counter-item {
            text-align: center;
            color: white;
            padding: 35px 20px;
        }

        .counter-icon {
            font-size: 52px;
            margin-bottom: 18px;
            display: block;
        }

        .counter-number {
            font-size: 56px;
            font-weight: 900;
            display: block;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .counter-label {
            font-size: 16px;
            font-weight: 500;
            opacity: 0.92;
            letter-spacing: 0.5px;
        }

        /* Vision & Mission */
        .vision-mission-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .vm-card {
            background: white;
            border-radius: 24px;
            padding: 52px;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-gold);
        }

        .vm-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 28px 65px rgba(28, 28, 28, 0.14);
        }

        .vm-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, rgba(191, 161, 129, 0.15), rgba(191, 161, 129, 0.08));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin-bottom: 28px;
        }

        .vm-card h3 {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .vm-card p {
            font-size: 16px;
            color: #666;
            line-height: 1.88;
        }

        /* Why Choose Us */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .why-card {
            background: white;
            border-radius: 20px;
            padding: 42px 30px;
            text-align: center;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .why-card:hover {
            transform: translateY(-12px);
            border-color: var(--secondary);
            box-shadow: 0 22px 55px rgba(191, 161, 129, 0.18);
        }

        .why-icon {
            width: 82px;
            height: 82px;
            background: linear-gradient(135deg, rgba(191, 161, 129, 0.15), rgba(191, 161, 129, 0.08));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin: 0 auto 24px;
            transition: all 0.4s ease;
        }

        .why-card:hover .why-icon {
            background: var(--gradient-gold);
            transform: scale(1.08) rotate(5deg);
        }

        .why-card h4 {
            font-size: 21px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .why-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.75;
        }

        /* Work Process */
        .process-section {
            background: var(--light);
        }

        .process-timeline {
            position: relative;
            display: flex;
            justify-content: space-between;
            margin-top: 65px;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 85px;
            left: 8%;
            right: 8%;
            height: 4px;
            background: var(--gradient-gold);
            border-radius: 10px;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 18px;
        }

        .step-number {
            width: 96px;
            height: 96px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            font-weight: 900;
            margin: 0 auto 26px;
            position: relative;
            z-index: 2;
            box-shadow: 0 12px 35px rgba(28, 28, 28, 0.3);
            transition: all 0.4s ease;
        }

        .process-step:hover .step-number {
            background: var(--gradient-gold);
            transform: scale(1.12);
            box-shadow: 0 15px 45px rgba(191, 161, 129, 0.5);
        }

        .step-icon {
            font-size: 46px;
            margin-bottom: 16px;
            display: block;
        }

        .process-step h4 {
            font-size: 19px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 14px;
            color: #666;
            line-height: 1.65;
        }

        /* Services Section */
        .services-section {
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 28px 65px rgba(28, 28, 28, 0.14);
        }

        .service-img {
            height: 210px;
            overflow: hidden;
            position: relative;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.12);
        }

        .service-body {
            padding: 32px 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(191, 161, 129, 0.15), rgba(191, 161, 129, 0.08));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 18px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: var(--gradient-gold);
        }

        .service-body h3 {
            font-size: 21px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .service-body p {
            font-size: 14.5px;
            color: #666;
            line-height: 1.78;
            margin-bottom: 22px;
            flex: 1;
        }

        .btn-service {
            background: var(--primary);
            color: white;
            padding: 12px 26px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            text-align: center;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-service:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(191, 161, 129, 0.4);
        }

        /* BMI Calculator */
        .bmi-calculator {
            background: white;
            border-radius: 28px;
            padding: 58px;
            box-shadow: 0 22px 65px rgba(0, 0, 0, 0.09);
            max-width: 850px;
            margin: 0 auto;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .bmi-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 42px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 14.5px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 16px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(191, 161, 129, 0.15);
        }

        .bmi-result {
            grid-column: span 2;
            background: var(--gradient);
            color: white;
            padding: 35px;
            border-radius: 16px;
            text-align: center;
            margin-top: 22px;
            display: none;
        }

        .bmi-result.show {
            display: block;
            animation: slideInResult 0.5s ease;
        }

        @keyframes slideInResult {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .bmi-value {
            font-size: 58px;
            font-weight: 900;
            display: block;
            font-family: 'Playfair Display', serif;
        }

        .bmi-category {
            font-size: 20px;
            font-weight: 600;
            margin-top: 10px;
        }

        .btn-calculate {
            grid-column: span 2;
            background: var(--gradient-gold);
            color: var(--primary);
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .btn-calculate:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(191, 161, 129, 0.45);
        }

        /* Booking Form */
        .booking-section {
            background: var(--light);
        }

        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .booking-info h3 {
            font-size: 38px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 24px;
            line-height: 1.25;
            font-family: 'Playfair Display', serif;
        }

        .booking-info > p {
            font-size: 17px;
            color: #666;
            line-height: 1.85;
            margin-bottom: 32px;
        }

        .booking-features {
            list-style: none;
        }

        .booking-features li {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            font-size: 16px;
            color: var(--primary);
            font-weight: 600;
            border-bottom: 1px solid #ddd;
        }

        .booking-features li:last-child {
            border-bottom: none;
        }

        .booking-features li i {
            width: 32px;
            height: 32px;
            background: var(--gradient-gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            flex-shrink: 0;
        }

        .booking-form-wrapper {
            background: white;
            border-radius: 26px;
            padding: 50px;
            box-shadow: 0 22px 65px rgba(0, 0, 0, 0.09);
        }

        .booking-form-wrapper h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 32px;
            text-align: center;
            font-family: 'Playfair Display', serif;
        }

        .booking-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .booking-form input,
        .booking-form select,
        .booking-form textarea {
            padding: 17px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .booking-form input:focus,
        .booking-form select:focus,
        .booking-form textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(191, 161, 129, 0.15);
        }

        .btn-book {
            background: var(--gradient);
            color: white;
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .btn-book:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(28, 28, 28, 0.35);
        }

        /* Pricing Plans */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 55px;
        }

        .plan-card {
            background: white;
            border-radius: 26px;
            padding: 48px 36px;
            text-align: center;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
            transition: all 0.4s ease;
            position: relative;
            border: 3px solid transparent;
        }

        .plan-card.featured {
            border-color: var(--secondary);
            transform: scale(1.05);
        }

        .plan-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-gold);
            color: var(--primary);
            padding: 10px 28px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .plan-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 28px 65px rgba(28, 28, 28, 0.14);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .plan-icon {
            font-size: 68px;
            margin-bottom: 22px;
            display: block;
        }

        .plan-name {
            font-size: 27px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            font-family: 'Playfair Display', serif;
        }

        .plan-price {
            font-size: 54px;
            font-weight: 900;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            font-family: 'Playfair Display', serif;
        }

        .plan-price span {
            font-size: 19px;
            font-weight: 600;
        }

        .plan-desc {
            font-size: 15px;
            color: #888;
            margin-bottom: 32px;
        }

        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 38px;
        }

        .plan-features li {
            padding: 13px 0;
            font-size: 15px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid #f0f0f0;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li i {
            color: var(--secondary);
            font-size: 18px;
        }

        .btn-plan {
            background: var(--primary);
            color: white;
            padding: 16px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 16px;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(28, 28, 28, 0.25);
        }

        .btn-plan:hover {
            background: var(--secondary);
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(191, 161, 129, 0.45);
        }

        /* Reviews Section */
        .reviews-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 55px;
        }

        .review-card {
            background: white;
            border-radius: 20px;
            padding: 38px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 22px 55px rgba(28, 28, 28, 0.12);
        }

        .review-stars {
            color: var(--secondary);
            font-size: 20px;
            margin-bottom: 20px;
            letter-spacing: 3px;
        }

        .review-text {
            font-size: 15.5px;
            color: #555;
            line-height: 1.82;
            margin-bottom: 26px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .review-avatar {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
        }

        .author-info h5 {
            font-size: 18px;
            font-weight: 800;
            color: var(--primary);
        }

        .author-info p {
            font-size: 14px;
            color: #888;
        }

        /* FAQ Section */
        .faq-list {
            max-width: 920px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            box-shadow: 0 5px 22px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .faq-item:hover {
            box-shadow: 0 8px 32px rgba(28, 28, 28, 0.1);
        }

        .faq-question {
            padding: 26px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            font-size: 17px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--secondary);
        }

        .faq-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, rgba(191, 161, 129, 0.15), rgba(191, 161, 129, 0.08));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: var(--secondary);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: var(--gradient-gold);
            color: white;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 32px 26px;
            font-size: 15px;
            color: #666;
            line-height: 1.82;
        }

        .faq-item.active .faq-answer {
            max-height: 350px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(50, 50, 50, 0.92) 100%),
                        url('https://images.pexels.com/photos/6328899/pexels-photo-6328899.jpeg') center/cover no-repeat fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(191, 161, 129, 0.2) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 50px;
            font-weight: 900;
            color: white;
            margin-bottom: 22px;
            font-family: 'Playfair Display', serif;
        }

        .cta-content p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 42px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .btn-cta-large {
            background: var(--secondary);
            color: var(--primary);
            padding: 20px 52px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 900;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 15px 45px rgba(191, 161, 129, 0.5);
        }

        .btn-cta-large:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 22px 58px rgba(191, 161, 129, 0.65);
            background: var(--accent);
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 38px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 24px;
            font-family: 'Playfair Display', serif;
        }

        .contact-info > p {
            font-size: 17px;
            color: #666;
            line-height: 1.85;
            margin-bottom: 36px;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 32px;
        }

        .contact-icon {
            width: 62px;
            height: 62px;
            background: linear-gradient(135deg, rgba(191, 161, 129, 0.15), rgba(191, 161, 129, 0.08));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-size: 18px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .contact-details p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        .contact-details a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--primary);
        }

        .contact-form-wrapper {
            background: white;
            border-radius: 26px;
            padding: 52px;
            box-shadow: 0 22px 65px rgba(0, 0, 0, 0.09);
        }

        .contact-form-wrapper h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 32px;
            font-family: 'Playfair Display', serif;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .contact-form .full-width {
            grid-column: span 2;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 17px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(191, 161, 129, 0.15);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 150px;
        }

        .btn-submit {
            grid-column: span 2;
            background: var(--gradient);
            color: white;
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(28, 28, 28, 0.35);
        }

        /* Footer */
        .footer {
            background: var(--primary);
            color: white;
            padding: 85px 0 35px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 50px;
            margin-bottom: 55px;
        }

        .footer-col h4 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 26px;
            position: relative;
            padding-bottom: 16px;
            font-family: 'Playfair Display', serif;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 52px;
            height: 3px;
            background: var(--secondary);
            border-radius: 10px;
        }

        .footer-about p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.82;
            margin-bottom: 26px;
        }

        .footer-social {
            display: flex;
            gap: 14px;
        }

        .footer-social a {
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-5px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 13px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.72);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form input {
            padding: 16px 20px;
            border: 2px solid rgba(255, 255, 255, 0.18);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 15px;
            font-family: inherit;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .btn-newsletter {
            background: var(--gradient-gold);
            color: var(--primary);
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .btn-newsletter:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(191, 161, 129, 0.45);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.58);
        }

        .footer-legal {
            display: flex;
            gap: 28px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.58);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--secondary);
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(45px);
            transition: all 0.7s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .plans-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .plan-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 44px;
            }
            
            .hero-visual {
                display: none;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .about-images {
                order: -1;
            }
            
            .vision-mission-grid {
                grid-template-columns: 1fr;
            }
            
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-timeline {
                flex-wrap: wrap;
                justify-content: center;
                gap: 45px;
            }
            
            .process-timeline::before {
                display: none;
            }
            
            .booking-container {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .reviews-slider {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 82%;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 90px 35px;
                gap: 26px;
                transition: right 0.4s ease;
                box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .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);
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .plans-grid {
                grid-template-columns: 1fr;
            }
            
            .why-us-grid {
                grid-template-columns: 1fr;
            }
            
            .counter-grid {
                grid-template-columns: 1fr;
            }
            
            .bmi-form {
                grid-template-columns: 1fr;
            }
            
            .bmi-result,
            .btn-calculate {
                grid-column: span 1;
            }
            
            .contact-form {
                grid-template-columns: 1fr;
            }
            
            .contact-form .full-width,
            .btn-submit {
                grid-column: span 1;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .reviews-slider {
                grid-template-columns: 1fr;
            }
            
            .bmi-calculator {
                padding: 32px;
            }
            
            .cta-content h2 {
                font-size: 34px;
            }
            
            .container {
                padding: 0 24px;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 34px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .section {
                padding: 70px 0;
            }
        }
