:root {
    --primary: #6b8e23;
    --primary-dark: #556b2f;
    --secondary: #c45c26;
    --secondary-color: #c45c26;
    --accent: #f4a261;
    --dark: #1a2e1a;
    --gray-light: #f5f5f0;
    --text: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --font-sans: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --container-max: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: var(--container-max);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    color: var(--dark);
    font-weight: 700;
}

.section-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.text-primary {
    color: var(--primary) !important;
}

.section-para {
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

.bg-gray-light {
    background-color: var(--gray-light);
}

.bg-primary-color {
    background-color: var(--primary);
}

.bg-secondary-color {
    background-color: var(--secondary);
}

/* Topbar */
.topbar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.875rem;
}

.topbar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.topbar-link:hover {
    color: var(--accent);
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    z-index: 1030;
}

.navbar {
    padding: 0.65rem 0;
}

.navbar-toggler {
    border-color: var(--primary);
    padding: 0.35rem 0.65rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28107, 142, 35, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 0.5rem 0;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
}

.dropdown-item:hover {
    background-color: rgba(107, 142, 35, 0.1);
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-call {
    border-radius: 50px;
    padding: 0.55rem 1.35rem;
    font-size: 0.9rem;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Float icons */
.float-icons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    flex-direction: column;
    gap: 0.75rem;
}

.float-icon-btn {
    width: 56px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px 0 0 12px;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.float-icon-btn:hover {
    color: var(--white);
    transform: translateX(-4px);
}

.bg-whatsapp {
    background-color: #25d366;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 46, 26, 0.4), rgba(26, 46, 26, 0.55)),
        url('/images/rhlc-yoga-hall.png') center/cover no-repeat;
    color: var(--white);
    padding: 5rem 0 4rem;
}

.hero-title {
    font-size: clamp(1.35rem, 3vw, 2.15rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 0.95rem;
    opacity: 0.92;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-form-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: var(--text);
}

.contact-form-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--dark);
    font-weight: 700;
}

.form-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text);
}

.form-control {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(107, 142, 35, 0.2);
}

.btn-submit {
    background: var(--secondary);
    border: none;
    color: var(--white);
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    transition: background 0.2s;
    font-size: 1rem;
}

.btn-submit:hover {
    background: #a34d1f;
    color: var(--white);
}

/* Stats */
.stats-section {
    padding: 2.5rem 0;
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
}

.stat-card {
    text-align: center;
    padding: 1.25rem 1rem;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e5e7eb;
}

@media (max-width: 767px) {
    .stat-card:nth-child(odd)::after {
        display: none;
    }
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
    line-height: 1.1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.35rem;
}

/* About */
.about-section {
    padding: 5rem 0;
}

.about-image {
    border-radius: var(--radius);
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

/* Gallery */
.gallery-section {
    padding: 5rem 0;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Section content sliders (About Us, The Facility, Lifestyle) */
.about-swiper .swiper-slide,
.facility-swiper .swiper-slide,
.lifestyle-swiper .swiper-slide {
    height: auto;
}

.about-swiper .swiper-pagination-bullet,
.facility-swiper .swiper-pagination-bullet,
.lifestyle-swiper .swiper-pagination-bullet {
    background: var(--primary);
}

/* Process steps */
.process-section {
    padding: 5rem 0;
}

.process-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.process-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Services */
.services-section {
    padding: 5rem 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary);
    text-align: center;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(107, 142, 35, 0.12);
}

a .service-card h4 {
    color: var(--dark);
}

/* Doctors */
.doctors-section {
    padding: 5rem 0;
}

.doctor-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.doctor-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary);
}

/* Centers */
.centers-section {
    padding: 5rem 0;
}

.center-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.center-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.center-card-body {
    padding: 1.5rem;
}

.center-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.know-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.know-more:hover {
    color: var(--primary-dark);
}

/* CTA */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cta-section .btn-light {
    border-radius: 50px;
    padding: 0.8rem 2.25rem;
    font-weight: 600;
    margin-top: 1.25rem;
}

.cta-section .btn-light:hover {
    background: #f8f9fa;
    color: var(--dark);
}

/* Facilities */
.facilities-section {
    padding: 5rem 0;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.facility-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Activities */
.activities-section {
    padding: 5rem 0;
}

.activity-tag {
    display: inline-block;
    background: rgba(107, 142, 35, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin: 0.25rem;
    font-size: 0.9rem;
}

/* Why choose */
.why-section {
    padding: 5rem 0;
}

.why-card {
    text-align: center;
    padding: 1.5rem;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Promise */
.promise-section {
    padding: 5rem 0;
}

.promise-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(107, 142, 35, 0.1);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(107, 142, 35, 0.2);
}

/* Map */
.map-section {
    padding: 0 0 5rem;
}

.map-placeholder {
    background: var(--gray-light);
    height: 400px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
}

.footer-logo {
    height: 52px;
    width: auto;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Video section */
.video-section {
    padding: 5rem 0;
}

.video-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--dark);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
}

/* RHLC content sections */
.content-section {
    padding: 5rem 0;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.floor-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: transform 0.3s;
}

.floor-card:hover {
    transform: translateY(-4px);
}

.floor-icon {
    width: 48px;
    height: 48px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
}

.governance-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .governance-flow {
        flex-direction: row;
        justify-content: center;
    }
}

.governance-item {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 200px;
}

.governance-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.governance-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .float-icons {
        display: none !important;
    }

    .content-section {
        padding: 3rem 0;
    }
}

.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.page-banner .breadcrumb-item a:hover {
    color: var(--white);
}

.page-banner .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact page (Olive-style layout) */
.contact-info-section {
    padding: 4rem 0 3rem;
    background: var(--white);
}

.contact-info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    background: var(--white);
    transition: box-shadow 0.2s;
}

.contact-info-card:hover {
    box-shadow: var(--shadow);
}

.contact-info-card h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    word-break: break-word;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-map-section {
    padding-bottom: 3rem;
    background: var(--white);
}

.contact-map-full {
    width: 100%;
    height: 450px;
    background: var(--gray-light);
}

.contact-map-full iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-form-section {
    padding: 5rem 0;
}

.contact-page-image {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

.contact-form-flat {
    box-shadow: none;
    padding: 0;
    background: transparent;
}

@media (max-width: 767px) {
    .contact-info-section {
        padding: 3rem 0 2rem;
    }

    .contact-map-full {
        height: 320px;
    }

    .contact-form-section {
        padding: 3rem 0;
    }
}