﻿/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --saga-green: #2e7d4b;
    --saga-green-light: #dcefe1;
    --saga-green-dark: #1f4d33;
    --gold: #c79b2b;
    --gold-light: #f7e6a8;
    --gold-shiny: #e1b54a;
    --black: #111111;
    --gray-light: #f5f5f2;
    --cream: #fbfaf6;
    --shadow: 0 18px 45px rgba(47, 93, 74, 0.09);
    --shadow-hover: 0 24px 60px rgba(47, 93, 74, 0.14);
    --radius: 24px;
    --transition: 0.4s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #f4fbf4 0%, #ffffff 100%);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 500;
}

body.loading {
    overflow: hidden;
}

.loader-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at top left, rgba(225, 181, 74, 0.35), transparent 35%),
        linear-gradient(135deg, rgba(30, 77, 51, 0.96) 0%, rgba(46, 125, 75, 0.96) 45%, rgba(14, 47, 29, 0.98) 100%);
    color: #fff;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    max-width: 620px;
    text-align: center;
    animation: fadeInUp 0.9s ease both;
}

.loader-logo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    margin-bottom: 24px;
}

.loader-content h1 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.loader-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.loader-accent {
    font-family: 'Great Vibes', 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: #f8e5a8;
    margin-top: 6px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-shadow: 0 0 18px rgba(255, 215, 122, 0.3);
}

.loader-bar {
    width: min(320px, 80vw);
    height: 2px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, rgba(255,255,255,0), #f8e5a8 50%, rgba(255,255,255,0));
    position: absolute;
    left: -40%;
    animation: loadingLine 1.4s ease-in-out infinite;
}

@keyframes loadingLine {
    0% { left: -40%; }
    100% { left: 140%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    background: var(--white);
    color: var(--black);
    position: relative;
    isolation: isolate;
}

section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(225, 181, 74, 0.12), transparent 42%);
    pointer-events: none;
    z-index: -1;
}

section.bg-saga {
    background: linear-gradient(135deg, rgba(46, 125, 75, 0.06) 0%, rgba(255,255,255,0.98) 100%);
    color: var(--black);
}

section.bg-saga h1,
section.bg-saga h2,
section.bg-saga h3,
section.bg-saga .gold-text,
section.bg-saga .gold-text-shiny {
    color: var(--black);
}

section.bg-saga p {
    color: rgba(51, 51, 51, 0.9);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.01em;
    font-feature-settings: 'liga' 1, 'calt' 1;
}

.navbar .logo,
.section-header h2,
.hero h1,
.hero h2,
.hero .hero-tagline {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-style: normal;
}

p,
li,
span,
a:not(.btn):not(.nav-links li a):not(.book-now-nav) {
    color: var(--black);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-light);
}
::-webkit-scrollbar-thumb {
    background: var(--saga-green);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--saga-green-light);
}

/* ===== GOLD TEXT ON SAGA GREEN ===== */
.gold-text {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(199, 155, 43, 0.18);
}
.gold-text-shiny {
    color: var(--gold-shiny);
    text-shadow: 0 0 20px rgba(225, 181, 74, 0.35), 0 0 6px rgba(225, 181, 74, 0.2);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: none;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.35);
}

/* ===== BACKGROUND SECTIONS ===== */
.bg-saga {
    background: #ffffff;
    color: var(--black);
    box-shadow: inset 0 1px 0 rgba(135, 168, 139, 0.05);
}
.bg-saga h1,
.bg-saga h2,
.bg-saga h3,
.bg-saga h4,
.bg-saga h5,
.bg-saga p,
.bg-saga li,
.bg-saga span,
.bg-saga a,
.bg-saga .section-header h2,
.bg-saga .section-header p,
.bg-saga .service-card h3,
.bg-saga .testimonial-card p,
.bg-saga .contact-info .info-card .text h4,
.bg-saga .contact-info .info-card .text p {
    color: var(--black);
}
.bg-saga .gold-text,
.bg-saga .gold-text-shiny,
.bg-saga .section-header .ornament,
.bg-saga .hero-badge,
.bg-saga .chart-value,
.bg-saga .popup-label,
.bg-saga .overlay-label,
.bg-saga .service-card .price {
    color: var(--gold);
}
.bg-saga .gold-text-shiny {
    color: var(--gold-shiny);
}
.bg-saga .service-card {
    background: #ffffff;
    border: 1px solid rgba(135, 168, 139, 0.08);
}
.bg-saga .service-card .price {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gold);
}
.bg-white {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    color: var(--black);
    box-shadow: inset 0 1px 0 rgba(47, 93, 74, 0.04);
}
.bg-light {
    background: #ffffff;
    color: var(--black);
    box-shadow: inset 0 1px 0 rgba(135, 168, 139, 0.04);
}
.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light p,
.bg-light li,
.bg-light span,
.bg-light a,
.bg-light .section-header h2,
.bg-light .section-header p {
    color: var(--black);
}
.bg-light .gold-text,
.bg-light .gold-text-shiny,
.bg-light .section-header .ornament,
.bg-light .highlight-icon,
.bg-light .chart-value,
.bg-light .hero-badge {
    color: var(--gold);
}
.bg-light .gold-text-shiny {
    color: var(--gold-shiny);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(24, 24, 24, 0.06);
    border-bottom: 1px solid rgba(47, 93, 74, 0.08);
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.48rem;
    font-weight: 700;
    color: var(--saga-green-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
    line-height: 1.2;
    letter-spacing: 0.015em;
}
.navbar .logo img {
    height: 72px;
    width: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.navbar .logo .brand-text {
    display: inline-flex;
    align-items: center;
    gap: 0.2em;
    flex-wrap: wrap;
    color: inherit;
}
.navbar .logo .brand-green {
    color: var(--saga-green) !important;
}
.navbar .logo .brand-gold {
    color: var(--gold-shiny) !important;
    text-shadow: 0 0 10px rgba(225, 181, 74, 0.2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-links li a {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--black);
    transition: all 0.3s ease;
    position: relative;
}
.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(135, 168, 139, 0.14);
    color: var(--saga-green-dark);
}
.nav-links li a.book-now-nav {
    background: var(--gold);
    color: var(--white);
    padding: 8px 24px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}
.nav-links li a.book-now-nav:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,247,242,0.95));
    border: 1px solid rgba(45, 90, 75, 0.12);
    box-shadow: 0 10px 24px rgba(45, 90, 75, 0.08);
    transition: all 0.3s ease;
}
.hamburger:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(45, 90, 75, 0.12);
}
.hamburger span {
    width: 24px;
    height: 2.6px;
    background: linear-gradient(90deg, var(--saga-green), var(--gold));
    border-radius: 999px;
    transition: all 0.3s ease;
}
.hamburger.active {
    background: linear-gradient(135deg, var(--saga-green), #4d7e5d);
}
.hamburger.active span {
    background: var(--white);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f7fcf6 0%, #edf7ee 48%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}
.hero::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -15%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(92, 143, 121, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -18%;
    left: -12%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(202, 165, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--black);
}
.hero-content h1 .gold-text {
    color: var(--gold);
}
.hero-content p {
    font-size: 1.2rem;
    color: #1f1f1f;
    margin-bottom: 32px;
    max-width: 520px;
    font-weight: 500;
    line-height: 1.9;
}

.hero-badge,
.ornament {
    color: var(--saga-green-dark);
    font-weight: 600;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: linear-gradient(135deg, #6f9981 0%, #86b49b 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(92, 143, 121, 0.2);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #5f8870 0%, #78a987 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(92, 143, 121, 0.28);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--saga-green-dark);
    box-shadow: 0 10px 30px rgba(202, 165, 74, 0.24);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #d0b05b 0%, var(--gold-light) 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(202, 165, 74, 0.32);
}
.btn-outline {
    background: transparent;
    color: var(--saga-green);
    border: 2px solid rgba(47, 93, 74, 0.18);
}
.btn-outline:hover {
    background: var(--saga-green);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-white {
    background: var(--white);
    color: var(--saga-green);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-illustration .yoga-svg {
    width: 100%;
    max-width: 480px;
    animation: floatYoga 6s ease-in-out infinite;
}
@keyframes floatYoga {
    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-slideshow {
    width: 100%;
    height: 520px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 90px rgba(45, 90, 75, 0.15);
    background: #f4f6f0;
}
.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slideshow .slide.active {
    opacity: 1;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    align-items: stretch;
    margin-bottom: 22px;
}

.quote-card {
    max-width: none;
}

.hero-slideshow .slide-indicators {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.hero-slideshow .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(255,255,255,0);
}
.hero-slideshow .dot:hover {
    transform: scale(1.15);
    background: rgba(255,255,255,0.55);
}
.hero-slideshow .dot.active {
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(225,181,74,0.45);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: all 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    animation: floatAround 20s infinite linear;
}
.floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    background: var(--gold);
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}
.floating-element:nth-child(2) {
    width: 80px;
    height: 80px;
    background: var(--saga-green);
    bottom: 15%;
    right: 8%;
    animation-duration: 18s;
    animation-delay: -5s;
}
.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    background: var(--gold);
    top: 60%;
    left: 3%;
    animation-duration: 22s;
    animation-delay: -10s;
}
@keyframes floatAround {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(47, 93, 74, 0.06);
}
.section-header h2 .gold-text {
    color: var(--gold);
}
.section-header p {
    font-size: 1.1rem;
    color: #2d3d33;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 600;
    line-height: 1.8;
}
.section-header .ornament {
    display: block;
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 6px;
    letter-spacing: 8px;
}
.bg-saga .section-header h2 {
    color: var(--white);
}
.bg-saga .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FEATURES / SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.services-row {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.offer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 65px rgba(20, 40, 20, 0.12);
}

.contact-offer {
    margin: 30px 0 0;
}

.offer-eyebrow {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.offer-banner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    color: var(--white);
}

.offer-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
    max-width: 620px;
    line-height: 1.75;
}

.contact-offer {
    background: linear-gradient(135deg, rgba(46, 125, 75, 0.12), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(46, 125, 75, 0.18);
}

.contact-offer .offer-eyebrow {
    color: var(--saga-green-dark);
}

.contact-offer h2 {
    color: var(--saga-green-dark);
}

.contact-offer p {
    color: var(--black);
}

.contact-offer .btn {
    background: var(--saga-green-dark);
    color: #fff;
    border-color: transparent;
}

.bg-saga .offer-banner {
    background: rgba(255,255,255,0.06);
}

.offer-banner .btn {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .offer-banner {
        flex-direction: column;
        text-align: left;
    }
}

.services-row .service-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    min-width: 300px;
}

.services-row::-webkit-scrollbar {
    height: 8px;
}

.services-row::-webkit-scrollbar-thumb {
    background: rgba(46, 125, 75, 0.4);
    border-radius: 999px;
}

.services-row::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}
.service-card {
    background: linear-gradient(145deg, rgba(235, 251, 236, 0.98), rgba(220, 244, 214, 0.98));
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    border: 1px solid rgba(163, 214, 175, 0.45);
    position: relative;
    overflow: visible;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--saga-green));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.service-card .icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}
.service-card h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 8px;
}
.service-card p {
    color: #2f2f2f;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.7;
}
.service-card .service-popup {
    display: none;
}
.service-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 22, 18, 0.75);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.service-overlay.open {
    display: flex;
}
.service-overlay .overlay-card {
    position: relative;
    width: min(900px, 100%);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 40px 120px rgba(10, 30, 20, 0.25);
    padding: 36px 34px;
}
.service-overlay .close-overlay {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(45, 90, 75, 0.12);
    background: rgba(255, 255, 255, 0.96);
    color: #2d5a4b;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}
.service-overlay .close-overlay:hover {
    transform: scale(1.05);
    background: #f8fff5;
}
.overlay-header {
    margin-bottom: 28px;
    display: grid;
    gap: 12px;
}
.overlay-label {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}
.overlay-title {
    font-size: clamp(2rem, 2.4vw, 2.7rem);
    color: var(--black);
    margin: 0;
    line-height: 1.05;
}
.overlay-description {
    color: #4a5e4f;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 760px;
}
.overlay-list-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2f4e3c;
    margin-bottom: 16px;
}
.popup-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.popup-list li {
    margin: 0;
}
.service-cta {
    margin: 16px auto 0;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(250, 242, 211, 0.9);
    color: #5e4c2f;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.18);
    max-width: 260px;
}
.service-booking {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(245, 255, 242, 0.98);
    color: #1f3b2d;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(45, 90, 75, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.service-booking:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 24px rgba(45, 90, 75, 0.12);
    background: #f5fff4;
}
.service-booking::after {
    content: 'Book';
    float: right;
    font-size: 0.84rem;
    color: var(--gold);
    font-weight: 700;
}
body.overlay-active nav,
body.overlay-active main,
body.overlay-active footer {
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
}
body.overlay-active .service-overlay {
    pointer-events: auto;
}
body.overlay-active .service-overlay .overlay-card {
    pointer-events: auto;
}
.service-overlay .overlay-card::-webkit-scrollbar {
    width: 10px;
}
.service-overlay .overlay-card::-webkit-scrollbar-thumb {
    background: rgba(45, 90, 75, 0.18);
    border-radius: 999px;
}
.service-overlay .overlay-card::-webkit-scrollbar-track {
    background: transparent;
}
.popup-list li a {
    display: block;
}
.service-booking::after {
    content: 'Book';
    float: right;
    font-size: 0.84rem;
    color: var(--gold);
    font-weight: 700;
}
.service-card .price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.popup-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.popup-category {
    font-size: 1rem;
    font-weight: 600;
    color: var(--saga-green);
}
.popup-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 260px;
    overflow-y: auto;
}
.popup-list li {
    margin-bottom: 10px;
}
.popup-list li:last-child {
    margin-bottom: 0;
}
.service-booking {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(240, 250, 240, 0.98);
    color: #1f3b2d;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(45, 90, 75, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.service-booking:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 20px rgba(45, 90, 75, 0.12);
    background: #f7fff4;
}
.service-booking::after {
    content: 'Book';
    float: right;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 700;
}
.service-card .price {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 20px;
    background: var(--saga-green);
    color: var(--gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.home-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.highlight-card {
    background: linear-gradient(145deg, rgba(235, 251, 236, 0.98), rgba(220, 244, 214, 0.98));
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 70px rgba(92, 143, 121, 0.07);
    border: 1px solid rgba(163, 214, 175, 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.highlight-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 80px rgba(92, 143, 121, 0.14);
}
.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 38%);
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.highlight-card:hover::before {
    opacity: 1;
}
.highlight-card > * {
    position: relative;
}
.highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 32px rgba(45, 90, 75, 0.08);
    color: var(--saga-green);
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--saga-green-dark);
}
.highlight-card p {
    color: #273126;
    line-height: 1.8;
    font-weight: 600;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 32px;
    align-items: start;
    margin-top: 40px;
}

.why-list {
    display: grid;
    gap: 18px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fcf7 100%);
    border: 1px solid rgba(45, 90, 75, 0.1);
    box-shadow: 0 16px 40px rgba(35, 84, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--saga-green));
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(35, 84, 58, 0.12);
    border-color: rgba(199, 155, 43, 0.22);
}

.why-item-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(199, 155, 43, 0.2) 0%, rgba(46, 125, 75, 0.16) 100%);
    color: var(--saga-green-dark);
    font-size: 1.35rem;
    box-shadow: inset 0 0 0 1px rgba(46, 125, 75, 0.09);
}

.why-item-content {
    flex: 1;
}

.why-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(46, 125, 75, 0.08);
    color: var(--saga-green-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-item h3 {
    margin-bottom: 8px;
    color: var(--saga-green-dark);
    font-size: 1.28rem;
}

.why-item p {
    color: #455848;
    line-height: 1.8;
    font-weight: 600;
}

.stats-charts {
    display: grid;
    gap: 20px;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    position: relative;
    padding: 24px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fcf7 100%);
    box-shadow: 0 14px 34px rgba(35, 84, 58, 0.08);
    border: 1px solid rgba(45, 90, 75, 0.1);
    text-align: center;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(199, 155, 43, 0.3), rgba(46, 125, 75, 0.3));
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--saga-green-dark);
    margin-bottom: 8px;
}

.stat-card p {
    color: #566b55;
    font-weight: 600;
    line-height: 1.65;
    font-size: 0.96rem;
}

.metrics-graph {
    background: linear-gradient(135deg, #ffffff 0%, #f7fcf7 100%);
    border-radius: 24px;
    padding: 24px 22px;
    box-shadow: 0 16px 40px rgba(35, 84, 58, 0.08);
    border: 1px solid rgba(45, 90, 75, 0.1);
}

.metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.metrics-header h4 {
    margin: 0 0 4px;
    color: var(--saga-green-dark);
    font-size: 1.3rem;
}

.graph-kicker {
    margin: 0 0 6px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
}

.graph-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(199, 155, 43, 0.16);
    color: var(--saga-green-dark);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}

.metrics-header p {
    margin: 0;
    color: #546a58;
    line-height: 1.7;
    font-weight: 600;
}

.metric-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.metric-row--stacked {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.metric-label-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-label-block span {
    color: #2f4f39;
    font-weight: 700;
}

.metric-label-block strong {
    color: var(--black);
    font-size: 1.1rem;
    line-height: 1.2;
}

@media (max-width: 700px) {
    .metric-row--stacked {
        grid-template-columns: 1fr;
    }
    .metric-label-block {
        margin-bottom: 10px;
    }
}

.metric-row span {
    color: #2f4f39;
    font-weight: 700;
    width: 92px;
}

.metric-bar {
    height: 12px;
    background: rgba(45, 90, 75, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.metric-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--saga-green));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.metric-row strong {
    color: var(--black);
    font-weight: 700;
}

@media (max-width: 1000px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .stat-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .why-item {
        flex-direction: column;
    }
    .why-item-icon {
        width: 48px;
        height: 48px;
    }
    .stat-cards {
        grid-template-columns: 1fr;
    }
    .metrics-header {
        flex-direction: column;
    }
    .metric-row {
        grid-template-columns: 1fr;
    }
    .metric-row strong {
        justify-self: end;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(202, 165, 74, 0.14);
    color: var(--saga-green-dark);
    font-size: 0.95rem;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(202, 165, 74, 0.2);
}

@media (max-width: 768px) {
    .home-highlight-grid,
    .satisfaction-grid {
        grid-template-columns: 1fr;
    }
}

.bg-saga .service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.bg-saga .service-card h3 {
    color: var(--white);
}
.bg-saga .service-card p {
    color: rgba(255, 255, 255, 0.9);
}
.bg-saga .service-card .price {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.testimonial-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(252,248,240,0.96));
    border-radius: 26px;
    padding: 30px 28px;
    box-shadow: 0 25px 60px rgba(45, 90, 75, 0.08);
    border: 1px solid rgba(47, 93, 74, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(45, 90, 75, 0.12);
}
.testimonial-card p {
    color: #222222;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 22px;
    font-weight: 600;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.testimonial-author strong {
    color: var(--saga-green-dark);
    font-size: 1.05rem;
}
.testimonial-author span {
    color: #5b5b5b;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .home-highlight-grid,
    .satisfaction-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--gray-light), #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--saga-green);
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(45, 90, 75, 0.06);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 90, 75, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    padding: 16px;
    text-align: center;
}
.gallery-item:hover .overlay {
    opacity: 1;
}
.gallery-item .pose-emoji {
    font-size: 4.5rem;
    animation: gentlePulse 3s ease-in-out infinite;
}
@keyframes gentlePulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.gallery-item:nth-child(2) .pose-emoji {
    animation-delay: 0.3s;
}
.gallery-item:nth-child(3) .pose-emoji {
    animation-delay: 0.6s;
}
.gallery-item:nth-child(4) .pose-emoji {
    animation-delay: 0.9s;
}
.gallery-item:nth-child(5) .pose-emoji {
    animation-delay: 1.2s;
}
.gallery-item:nth-child(6) .pose-emoji {
    animation-delay: 1.5s;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    border: 1px solid rgba(45, 90, 75, 0.06);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.team-card .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gray-light), #e8e3dc);
    border: 4px solid var(--gold);
    transition: all 0.4s ease;
    overflow: hidden;
}
.team-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-card:hover .avatar {
    border-color: var(--saga-green);
    transform: scale(1.05);
}
.team-card h3 {
    font-size: 1.3rem;
    color: var(--saga-green);
}
.team-card .role {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.team-card p {
    color: #4d4d4d;
    font-size: 0.9rem;
    font-weight: 300;
}
.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}
.team-card .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saga-green);
    transition: all 0.3s ease;
}
.team-card .social-links a:hover {
    background: var(--saga-green);
    color: var(--gold);
    transform: translateY(-2px);
}

.bg-saga .team-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-saga .team-card h3 {
    color: var(--gold);
}
.bg-saga .team-card p {
    color: rgba(255, 255, 255, 0.8);
}
.bg-saga .team-card .avatar {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10rem;
    color: var(--saga-green);
    background: linear-gradient(135deg, var(--gray-light), #e8e3dc);
    border-radius: var(--radius);
    padding: 40px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 90, 75, 0.06);
}
.about-image .yoga-bg-icon {
    font-size: 12rem;
    opacity: 0.1;
    position: absolute;
}
.about-text h2 {
    font-size: 2.8rem;
    color: var(--saga-green);
    margin-bottom: 16px;
}
.about-text h2 .gold-text {
    color: var(--gold);
}
.about-text p {
    color: #222222;
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: 16px;
}
.about-text .stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
}
.about-text .stats .stat {
    text-align: center;
}
.about-text .stats .stat .number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--saga-green);
    font-family: 'Playfair Display', serif;
}
.about-text .stats .stat .label {
    font-size: 0.85rem;
    color: #5a5a5a;
    font-weight: 300;
}

.bg-saga .about-text h2 {
    color: var(--white);
}
.bg-saga .about-text p {
    color: rgba(255, 255, 255, 0.85);
}
.bg-saga .about-text .stats .stat .number {
    color: var(--gold);
}
.bg-saga .about-text .stats .stat .label {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 90, 75, 0.06);
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-weight: 500;
    color: var(--saga-green);
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e3dc;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-light);
    color: var(--black);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--saga-green);
    box-shadow: 0 0 0 4px rgba(45, 90, 75, 0.1);
    background: var(--white);
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form .btn {
    width: 100%;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-info .info-card {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 90, 75, 0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.contact-info .info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-hover);
}
.contact-info .info-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--saga-green);
    flex-shrink: 0;
}
.contact-info .info-card .text h4 {
    color: var(--saga-green);
    font-size: 1rem;
}
.contact-info .info-card .text p {
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 600;
}

.bg-saga .contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-saga .contact-form label {
    color: var(--gold);
}
.bg-saga .contact-form input,
.bg-saga .contact-form textarea,
.bg-saga .contact-form select {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}
.bg-saga .contact-form input::placeholder,
.bg-saga .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.bg-saga .contact-form input:focus,
.bg-saga .contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}
.bg-saga .contact-info .info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-saga .contact-info .info-card .text h4 {
    color: var(--gold);
}
.bg-saga .contact-info .info-card .text p {
    color: rgba(255, 255, 255, 0.8);
}
.bg-saga .contact-info .info-card .icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
    background: #4f9f74;
    color: rgba(255, 255, 255, 0.9);
    padding: 48px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.footer p {
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.95rem;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 6px;
}
.footer ul li a {
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}
.footer ul li a:hover {
    color: var(--gold-shiny);
    padding-left: 4px;
}
.footer .social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.footer .social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
.footer .social a:hover {
    background: var(--gold);
    color: var(--saga-green-dark);
    transform: translateY(-3px);
}
.footer-heading-box {
    display: inline-flex;
    background: linear-gradient(135deg, #ffeb9f 0%, #f7d779 45%, #f2c84c 100%);
    padding: 16px 20px;
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}
.footer-heading-box h4 {
    color: #111111;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
}
.footer .bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.quote-card {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff4cd 0%, #f3d67a 40%, #f7c741 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 40px 34px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.quote-card .quote-icon {
    font-size: 2.4rem;
    color: #111111;
    opacity: 0.95;
    margin-bottom: 18px;
}

.quote-card .quote-text {
    color: #111111;
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 600;
    line-height: 1.85;
    max-width: 680px;
    margin: 0 auto;
}

.quote-card .quote-author {
    color: #111111;
    margin-top: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ===== POPUP / MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.4s ease;
}
.modal-overlay.open {
    display: flex;
}
.modal-overlay.open {
    display: flex;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 520px;
    width: 100%;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(45, 90, 75, 0.08);
}
@keyframes slideUp {
    0% {
        transform: translateY(40px) scale(0.96);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal .close-modal {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.6rem;
    color: #5b5b5b;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
}
.modal .close-modal:hover {
    color: var(--saga-green);
    transform: rotate(90deg);
}
.modal h2 {
    color: var(--saga-green);
    font-size: 1.8rem;
    margin-bottom: 4px;
}
.modal h2 .gold-text {
    color: var(--gold);
}
.modal .subtitle {
    color: #5a5a5a;
    font-weight: 300;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.modal .form-group {
    margin-bottom: 16px;
}
.modal .form-group label {
    display: block;
    font-weight: 500;
    color: var(--saga-green);
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.modal .form-group input,
.modal .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e3dc;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-light);
}
.modal .form-group input:focus,
.modal .form-group select:focus {
    outline: none;
    border-color: var(--saga-green);
    box-shadow: 0 0 0 4px rgba(45, 90, 75, 0.1);
    background: var(--white);
}
.modal .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.modal .success-msg {
    display: none;
    text-align: center;
    padding: 20px 0;
}
.modal .success-msg .icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 8px;
}
.modal .success-msg h3 {
    color: var(--saga-green);
}
.modal .success-msg p {
    color: #424242;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--saga-green);
    color: var(--gold);
    padding: 16px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    display: none;
    align-items: center;
    gap: 14px;
    animation: toastIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}
@keyframes toastIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.toast.show {
    display: flex;
}
.toast .icon {
    font-size: 1.6rem;
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .hero-content p {
        margin: 0 auto 32px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-text .stats {
        justify-content: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        padding: 18px 20px 24px;
        gap: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        display: none;
        border-bottom: 1px solid rgba(45, 90, 75, 0.08);
        border-radius: 0 0 24px 24px;
    }
    .nav-links.open {
        display: flex;
        animation: slideDownMenu 0.3s ease;
    }
    @keyframes slideDownMenu {
        0% {
            opacity: 0;
            transform: translateY(-8px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .nav-links li a {
        width: 100%;
        text-align: center;
        padding: 12px 14px;
        border-radius: 14px;
        font-weight: 600;
        color: var(--saga-green-dark);
        background: rgba(255,255,255,0.8);
    }
    .nav-links li a:hover,
    .nav-links li a.active {
        background: linear-gradient(135deg, rgba(46,125,75,0.12), rgba(225,181,74,0.15));
        color: var(--saga-green-dark);
    }
    .nav-links li a.book-now-nav {
        margin-top: 4px;
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .modal {
        padding: 28px 20px;
    }
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer .social {
        justify-content: center;
    }
    .about-text .stats {
        flex-direction: column;
        gap: 16px;
    }
    .contact-form {
        padding: 24px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-illustration .yoga-svg {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .modal {
        padding: 20px 16px;
    }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Floating particles for calm vibe */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    animation: floatParticle 20s infinite linear;
}
@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(720deg) scale(1);
        opacity: 0;
    }
}
