/* ==========================================================================
   AURA VITA — LUXURY WELLNESS SANCTUARY & LONGEVITY RETREAT
   Modern Luxury CSS Design System & Animation Engine
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
    --sage-dark:      #122119;
    --sage:           #1F362B;
    --sage-medium:    #2A4739;
    --sage-light:     #3B604E;
    --sage-soft:      #EBF0EC;
    --gold:           #C5A059;
    --gold-light:     #DFC287;
    --gold-dark:      #9E7D3B;
    --gold-glow:      rgba(197, 160, 89, 0.35);
    --linen:          #F7F5F0;
    --linen-card:     #FFFFFF;
    --linen-dark:     #EDE8DF;
    --charcoal:       #181D1A;
    --charcoal-light: #2D3631;
    --text-main:      #2C3530;
    --text-muted:     #63756C;
    --rose-quartz:    #D8A48F;
    --coral:          #D97D64;
    --white:          #FFFFFF;
    
    /* Glassmorphism */
    --glass-bg:       rgba(255, 255, 255, 0.85);
    --glass-dark:     rgba(18, 33, 25, 0.88);
    --glass-border:   rgba(197, 160, 89, 0.25);
    
    /* Shadows */
    --shadow-sm:      0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow-md:      0 12px 32px rgba(18, 33, 25, 0.08);
    --shadow-lg:      0 24px 60px rgba(18, 33, 25, 0.14);
    --shadow-gold:    0 12px 35px rgba(197, 160, 89, 0.28);
    
    /* Typography */
    --font-display:   'Cinzel', serif;
    --font-serif:     'Cormorant Garamond', serif;
    --font-sans:      'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--linen);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--linen);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* --- Utility Layout --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    width: 100%;
    padding: 0 2rem;
}

.section {
    padding: 6.5rem 0;
    position: relative;
}

.section-sm {
    padding: 4rem 0;
}

.section-dark {
    background-color: var(--sage-dark);
    color: var(--linen);
}

.section-sage {
    background-color: var(--sage);
    color: var(--linen);
}

.section-light {
    background-color: var(--linen-card);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-sage { color: var(--sage); }
.text-muted { color: var(--text-muted); }

/* --- Typography Helpers --- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.eyebrow::before, .eyebrow::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: var(--gold);
}

.eyebrow-left::after { display: none; }
.eyebrow-plain::before, .eyebrow-plain::after { display: none; }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
}

.section-dark .section-subtitle,
.section-sage .section-subtitle {
    color: rgba(247, 245, 240, 0.75);
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto 2.5rem;
}

.gold-divider-left {
    margin: 1.5rem 0 2rem;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* --- Buttons & Badges --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 40px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: var(--gold);
    color: var(--sage-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(197, 160, 89, 0.4);
}

.btn-sage {
    background: var(--sage);
    color: var(--linen);
    box-shadow: 0 10px 25px rgba(31, 54, 43, 0.25);
}

.btn-sage:hover {
    background: var(--sage-medium);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(31, 54, 43, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--sage-dark);
    border: 1px solid var(--sage-medium);
}

.btn-outline-dark:hover {
    background: var(--sage);
    color: var(--linen);
    border-color: var(--sage);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.65rem 1.4rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1.15rem 2.5rem;
    font-size: 0.9rem;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    background: var(--sage-soft);
    color: var(--sage-dark);
}

.badge-gold {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-dark);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* --- Navigation Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    padding: 1.1rem 0;
    box-sizing: border-box;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    padding: 0.65rem 0;
    background: var(--glass-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
}

.brand-logo .logo-main {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    color: var(--white);
    line-height: 1;
}

.brand-logo .logo-sub {
    font-size: 0.54rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.3rem 0;
    white-space: nowrap;
    display: inline-block;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Navigation Dropdowns */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
}

.dropdown-caret {
    font-size: 0.62rem;
    margin-left: 4px;
    color: var(--gold);
    transition: transform var(--transition-fast);
    display: inline-block;
}

.nav-item-dropdown:hover .dropdown-caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(23, 40, 31, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 14px;
    padding: 0.6rem 0.4rem;
    min-width: 255px;
    list-style: none;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s ease;
    z-index: 1200;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(23, 40, 31, 0.97);
    border-left: 1px solid rgba(197, 160, 89, 0.35);
    border-top: 1px solid rgba(197, 160, 89, 0.35);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.65rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(247, 245, 240, 0.88);
    border-radius: 8px;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0.02em;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(197, 160, 89, 0.18);
    color: var(--gold-light);
    padding-left: 1.45rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-actions .btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Currency Selector */
.currency-select-wrap {
    position: relative;
}

.currency-select {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.45rem 1.8rem 0.45rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23DFC287' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
}

.currency-select option {
    background: var(--sage-dark);
    color: var(--linen);
}

/* Ambient Audio Button */
.audio-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    padding: 0.45rem 0.85rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.audio-toggle-btn.playing {
    background: rgba(197, 160, 89, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.sound-waves {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 12px;
}

.sound-waves span {
    display: inline-block;
    width: 2px;
    height: 4px;
    background: currentColor;
    border-radius: 2px;
    transition: height 0.2s ease;
}

.audio-toggle-btn.playing .sound-waves span:nth-child(1) { animation: wave 0.8s infinite ease-in-out; }
.audio-toggle-btn.playing .sound-waves span:nth-child(2) { animation: wave 0.8s 0.2s infinite ease-in-out; }
.audio-toggle-btn.playing .sound-waves span:nth-child(3) { animation: wave 0.8s 0.4s infinite ease-in-out; }

@keyframes wave {
    0%, 100% { height: 3px; }
    50% { height: 12px; }
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: all var(--transition-fast);
}

.nav-hamburger:hover {
    background: rgba(197, 160, 89, 0.2);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition-fast);
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--gold);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--gold);
}

/* Mobile Drawer Backdrop */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 33, 25, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 380px;
    height: 100vh;
    background: var(--sage-dark);
    border-left: 1px solid var(--glass-border);
    padding: 5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right var(--transition-base);
    z-index: 1600;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
    right: 0;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6);
}

.drawer-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold-light);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.drawer-close-btn:hover {
    background: var(--gold);
    color: var(--sage-dark);
}

.mobile-drawer-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--linen);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

.mobile-nav-links a:hover, .mobile-nav-links a.active {
    color: var(--gold);
    padding-left: 0.5rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(18, 33, 25, 0.75) 0%,
        rgba(18, 33, 25, 0.45) 40%,
        rgba(18, 33, 25, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    padding: 0 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 300;
    color: rgba(247, 245, 240, 0.9);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Hero Quick Booking Widget */
.quick-booking-bar {
    position: relative;
    z-index: 3;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
    color: var(--text-main);
}

.quick-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.quick-field label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.quick-field select,
.quick-field input {
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sage-dark);
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(31, 54, 43, 0.2);
    width: 100%;
}

.quick-field select:focus,
.quick-field input:focus {
    border-bottom-color: var(--gold);
}

/* Page Inner Hero */
.page-hero {
    position: relative;
    padding: 11rem 0 6rem;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

/* Page Hero Background Images */
.hero-bg-treatments    { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/spa-ayurveda.jpg"); }
.hero-bg-schedule      { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/sound-healing.jpg"); }
.hero-bg-programs      { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/nature-chalet.jpg"); }
.hero-bg-program-detail{ background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/spa-ayurveda.jpg"); }
.hero-bg-practitioners { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/doctor-consultation.jpg"); }
.hero-bg-policy        { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/spa-ayurveda.jpg"); }
.hero-bg-apothecary    { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/apothecary-herbs.jpg"); }
.hero-bg-gallery       { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/hero-wellness.jpg"); }
.hero-bg-contact       { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/hero-wellness.jpg"); }
.hero-bg-about         { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/hero-wellness.jpg"); }
.hero-bg-home          { background-image: url("/demo-previews/aura-vita-luxury-wellness-sanctuary-holistic-longevity-retreat-website-template/images/hero-wellness.jpg"); }

.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(18, 33, 25, 0.8) 0%, rgba(18, 33, 25, 0.6) 50%, rgba(18, 33, 25, 0.95) 100%);
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Cards & Glass Cards --- */
.card {
    background: var(--linen-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.3);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--glass-dark);
    backdrop-filter: blur(8px);
    color: var(--gold);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.card-price {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.card-price span {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--linen);
}

/* --- Interactive Pillars Grid --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.pillar-item {
    background: var(--linen-card);
    border-radius: 16px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    border: 1px solid rgba(31, 54, 43, 0.06);
    transition: all var(--transition-base);
    position: relative;
}

.pillar-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.pillar-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold-dark);
    font-size: 1.8rem;
    transition: all var(--transition-base);
}

.pillar-item:hover .pillar-icon {
    background: var(--gold);
    color: var(--sage-dark);
    transform: scale(1.1) rotate(5deg);
}

.pillar-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pillar-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Interactive Dosha / Wellness Quiz --- */
.quiz-container {
    background: var(--white);
    color: var(--text-main);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(197, 160, 89, 0.4);
    max-width: 850px;
    margin: 0 auto;
}

.quiz-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.quiz-steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--linen-dark);
    transform: translateY(-50%);
    z-index: 1;
}

.quiz-step-bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--linen);
    color: var(--sage-dark);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(197, 160, 89, 0.35);
    transition: all var(--transition-fast);
}

.quiz-step-bubble.active {
    background: var(--gold);
    color: var(--sage-dark);
    border-color: var(--gold-dark);
    box-shadow: 0 0 15px var(--gold-glow);
}

.quiz-step-bubble.completed {
    background: var(--sage);
    color: var(--linen);
    border-color: var(--sage);
}

.quiz-question-title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 1.75rem;
    text-align: center;
    line-height: 1.3;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.quiz-option-card {
    background: var(--linen);
    color: var(--text-main);
    border: 2px solid rgba(197, 160, 89, 0.2);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quiz-option-card:hover {
    border-color: var(--gold);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.quiz-option-card.selected {
    border-color: var(--gold-dark);
    background: rgba(197, 160, 89, 0.14);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

.quiz-option-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.quiz-option-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--sage-dark);
    margin-bottom: 0.4rem;
}

.quiz-option-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.quiz-result-box {
    text-align: center;
    padding: 2.5rem;
    background: rgba(197, 160, 89, 0.08);
    border-radius: 16px;
    border: 1px solid var(--gold);
    color: var(--text-main);
}

.quiz-result-box h3 {
    color: var(--sage-dark);
}

/* --- Interactive Rate & Retreat Calculator --- */
.calc-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    background: var(--linen-card);
    color: var(--text-main);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.calc-form-group {
    margin-bottom: 1.75rem;
}

.calc-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.pill-group {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pill-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    background: var(--linen);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.pill-btn:hover {
    border-color: var(--gold);
}

.pill-btn.active {
    background: var(--sage);
    color: var(--linen);
    border-color: var(--sage);
    box-shadow: 0 4px 12px rgba(31, 54, 43, 0.2);
}

.addon-checkbox-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.addon-checkbox-card:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.04);
}

.addon-checkbox-card.selected {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
}

.calc-summary-card {
    background: var(--sage-dark);
    color: var(--linen);
    border-radius: 18px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--glass-border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 2px solid var(--gold);
}

.summary-total .total-amount {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold-light);
    font-weight: 700;
}

/* --- Interactive Daily Schedule Timetable --- */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.schedule-day-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    background: var(--linen-card);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition-fast);
}

.schedule-day-tab.active, .schedule-day-tab:hover {
    background: var(--sage);
    color: var(--linen);
    border-color: var(--sage);
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 140px 1.5fr 1fr auto;
    align-items: center;
    gap: 1.5rem;
    background: var(--linen-card);
    padding: 1.5rem 2rem;
    border-radius: 14px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.schedule-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.schedule-time {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.schedule-instructor {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.schedule-instructor img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- Interactive Sanctuary Hotspot Map --- */
.sanctuary-map-wrap {
    position: relative;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    /* Do NOT use overflow: hidden here so tooltips never clip */
}

.sanctuary-map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.map-pin {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--sage-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 0 0 6px rgba(197, 160, 89, 0.4);
    animation: pinPulse 2s infinite ease-in-out;
    transition: transform var(--transition-fast);
    z-index: 10;
}

.map-pin:hover {
    transform: scale(1.2);
    background: var(--linen-card);
}

@keyframes pinPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.4); }
    50% { box-shadow: 0 0 0 14px rgba(197, 160, 89, 0.1); }
}

.pin-tooltip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(31, 54, 43, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--linen);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    width: 270px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    border: 1px solid var(--gold);
    z-index: 30;
    pointer-events: none;
}

/* Placement variants */
.pin-placement-top .pin-tooltip {
    bottom: 50px;
    top: auto;
}

.pin-placement-bottom .pin-tooltip {
    top: 50px;
    bottom: auto;
}

/* --- Filter Bar --- */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.65rem 1.6rem;
    border-radius: 30px;
    background: var(--linen-card);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: var(--sage-dark);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* --- Dedicated Product Details Page Specs --- */
.product-hero-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 1.25rem;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3.5rem;
}

.gallery-main-slot {
    grid-row: span 2;
    position: relative;
    cursor: pointer;
}

.gallery-slot {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-slot img, .gallery-main-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery-slot:hover img, .gallery-main-slot:hover img {
    transform: scale(1.05);
}

.program-schedule-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--gold);
    margin: 2rem 0;
}

.timeline-step {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--linen-card);
}

.timeline-step-time {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    text-transform: uppercase;
}

.timeline-step-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin: 0.25rem 0;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
}

.inclusion-icon {
    color: var(--gold);
    font-size: 1.1rem;
}

/* --- Testimonial Transformation Carousel / Grid --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--linen-card);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    color: var(--text-main);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.author-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- FAQ Accordion --- */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq-search-input {
    width: 100%;
    padding: 1.15rem 1.75rem;
    border-radius: 30px;
    background: var(--linen-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.faq-search-input:focus {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.faq-item {
    background: var(--linen-card);
    border-radius: 14px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    user-select: none;
}

.faq-header:hover {
    color: var(--gold-dark);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
    color: var(--gold);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Interactive Drawer / Modal --- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 33, 25, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--linen-card);
    border-radius: 20px;
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    transform: scale(0.92);
    transition: transform var(--transition-base);
}

.modal-backdrop.open .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    background: none;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--coral);
}

/* Side Booking Drawer */
.side-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: var(--linen-card);
    box-shadow: -15px 0 50px rgba(0,0,0,0.3);
    z-index: 2500;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right var(--transition-base);
    overflow-y: auto;
}

.side-drawer.open {
    right: 0;
}

/* Form Styles */
.form-control {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 10px;
    background: var(--linen);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.92rem;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    border-color: var(--gold);
    background: var(--white);
}

/* Toast Notification */
.toast-notice {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--sage-dark);
    color: var(--linen);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.toast-notice.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Floating Booking CTA */
.floating-booking-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 900;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
    animation: floatPulse 3s infinite ease-in-out;
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* --- Footer --- */
.site-footer {
    background-color: var(--sage-dark);
    color: var(--linen);
    padding: 6rem 0 2.5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 4.5rem;
}

.footer-brand .logo-main {
    font-family: var(--font-display);
    font-size: 1.65rem;
    letter-spacing: 0.28em;
    color: var(--white);
}

.footer-brand .logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

.footer-desc {
    color: rgba(247, 245, 240, 0.7);
    font-size: 0.9rem;
    margin: 1.25rem 0 1.5rem;
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(247, 245, 240, 0.75);
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(247, 245, 240, 0.5);
}

/* --- Scroll Animation Classes --- */
.reveal-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive Layout Utilities & Helper Classes
   ========================================================================== */

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-img-wrap {
    position: relative;
    max-width: 100%;
}

.about-badge-img {
    position: absolute;
    width: 48%;
    bottom: -10%;
    right: -5%;
    border: 6px solid var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.practitioner-card-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3.5rem;
    align-items: center;
    background: var(--linen);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.practitioner-card-grid:hover {
    box-shadow: var(--shadow-md);
}

.program-details-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}

.program-details-sticky {
    position: sticky;
    top: 100px;
}

.stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2.25rem;
}

/* ==========================================================================
   Comprehensive Responsive Breakpoints
   ========================================================================== */

/* --- 1380px (Compact Desktops & Standard Laptops) --- */
@media (max-width: 1380px) {
    .nav-container {
        padding: 0 1.25rem;
        gap: 0.75rem;
    }
    .brand-logo .logo-main {
        font-size: 1.35rem;
        letter-spacing: 0.2em;
    }
    .nav-menu {
        gap: 0.85rem;
    }
    .nav-link {
        font-size: 0.73rem;
        letter-spacing: 0.05em;
    }
    .nav-actions {
        gap: 0.55rem;
    }
    .nav-actions .btn-sm {
        padding: 0.5rem 1.05rem;
        font-size: 0.7rem;
    }
    .currency-select {
        font-size: 0.7rem;
        padding: 0.35rem 1.45rem 0.35rem 0.6rem;
    }
    .audio-toggle-btn {
        font-size: 0.68rem;
        padding: 0.35rem 0.65rem;
    }
}

/* --- 1280px (Medium Laptops, Tablets & Split Windows - Switch to Mobile Drawer) --- */
@media (max-width: 1280px) {
    .nav-menu,
    .nav-actions .btn {
        display: none !important;
    }
    .nav-hamburger {
        display: flex !important;
    }
    .site-header {
        padding: 0.85rem 0;
    }
    .site-header.scrolled {
        padding: 0.65rem 0;
    }
    .quick-booking-bar {
        grid-template-columns: repeat(2, 1fr) 1fr;
        gap: 1.25rem;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .calc-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* --- 992px (Standard Tablets Portrait & Small Laptops) --- */
@media (max-width: 992px) {
    .section {
        padding: 5rem 0;
    }
    .section-sm {
        padding: 3.5rem 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-bottom: 3.5rem;
    }
    .about-badge-img {
        width: 42%;
        right: 0;
        bottom: -6%;
    }
    .program-details-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .program-details-sticky {
        position: static;
    }
    .quiz-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .quiz-container {
        padding: 2.75rem 2rem;
    }
    .quick-booking-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-booking-bar > div:last-child {
        grid-column: span 2;
    }
    .quick-booking-bar > div:last-child .btn {
        width: 100%;
    }
    .product-hero-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    .gallery-main-slot {
        grid-row: span 1;
        aspect-ratio: 16 / 10;
    }
    .gallery-slot {
        aspect-ratio: 16 / 9;
    }
}

/* --- 880px (Compact Tablets) --- */
@media (max-width: 880px) {
    .practitioner-card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.25rem 1.75rem;
    }
    .practitioner-card-grid > div:first-child {
        max-width: 320px;
        margin: 0 auto;
    }
    .schedule-item {
        grid-template-columns: 120px 1fr auto;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
    .schedule-item .schedule-instructor {
        grid-column: span 2;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 768px (Standard Mobile Devices & Phablets) --- */
@media (max-width: 768px) {
    .hero {
        padding: 6.5rem 0 3.5rem;
        min-height: auto;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    .page-hero {
        padding: 6.5rem 0 3.25rem;
    }
    .page-hero .hero-title {
        font-size: clamp(1.9rem, 7.5vw, 2.8rem);
    }
    .page-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .quick-booking-bar {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        border-radius: 16px;
    }
    .quick-booking-bar > div:last-child {
        grid-column: span 1;
    }
    .quiz-options-grid {
        grid-template-columns: 1fr;
    }
    .quiz-container {
        padding: 2rem 1.25rem;
        border-radius: 18px;
    }
    .quiz-question-title {
        font-size: 1.45rem;
    }
    .calc-container {
        padding: 2rem 1.25rem;
        border-radius: 18px;
    }
    .calc-summary-card {
        padding: 1.75rem 1.25rem;
    }
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    .schedule-item .schedule-instructor {
        grid-column: auto;
    }
    .schedule-tabs {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .schedule-day-tab {
        padding: 0.6rem 1.1rem;
        font-size: 0.8rem;
    }
    .filter-bar {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .filter-btn {
        padding: 0.55rem 1.15rem;
        font-size: 0.78rem;
    }
    .modal-card {
        padding: 2.25rem 1.25rem 1.75rem;
        border-radius: 16px;
        max-width: 94%;
        max-height: 92vh;
    }
    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.35rem;
    }
    .side-drawer {
        width: 100%;
        max-width: 100%;
        padding: 2.5rem 1.5rem 2rem;
    }
    .toast-notice {
        width: calc(100% - 2rem);
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1rem 1.25rem;
        font-size: 0.88rem;
    }
    .floating-booking-btn {
        bottom: 1.25rem;
        left: 1.25rem;
        font-size: 0.75rem;
        padding: 0.65rem 1.15rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 2rem;
    }
    .pin-tooltip {
        width: 230px;
        padding: 1rem 1.15rem;
        font-size: 0.8rem;
        bottom: 44px;
    }
}

/* --- 600px (Standard Smartphones) --- */
@media (max-width: 600px) {
    .container, .container-narrow, .container-fluid {
        padding: 0 1.15rem;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .stats-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .stats-row > div div:first-child {
        font-size: 1.75rem !important;
    }
    .stats-row > div div:last-child {
        font-size: 0.68rem !important;
    }
    .about-badge-img {
        width: 44%;
        right: 0;
        bottom: -4%;
        border-width: 4px;
    }
    .program-schedule-timeline {
        padding-left: 1.5rem;
    }
    .timeline-step::before {
        left: -2.1rem;
        width: 14px;
        height: 14px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .brand-logo .logo-main {
        font-size: 1.3rem;
        letter-spacing: 0.22em;
    }
    .brand-logo .logo-sub {
        font-size: 0.52rem;
        letter-spacing: 0.22em;
    }
    .nav-container {
        padding: 0 1.15rem;
    }
    .currency-select {
        font-size: 0.7rem;
        padding: 0.35rem 1.5rem 0.35rem 0.6rem;
    }
    .audio-toggle-btn {
        font-size: 0.68rem;
        padding: 0.35rem 0.65rem;
    }
    .faq-header {
        padding: 1.25rem 1.25rem;
        font-size: 1.15rem;
    }
    .faq-content {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.88rem;
    }
    .faq-search-input {
        padding: 0.95rem 1.25rem;
        font-size: 0.88rem;
    }
}

/* --- 480px (Mobile Phones) --- */
@media (max-width: 480px) {
    .site-header .audio-toggle-btn {
        display: none;
    }
    .brand-logo .logo-main {
        font-size: 1.22rem;
        letter-spacing: 0.2em;
    }
}

/* --- 420px (Compact Mobile Devices e.g. iPhone SE / 360-390px) --- */
@media (max-width: 420px) {
    .container, .container-narrow, .container-fluid {
        padding: 0 0.9rem;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .quiz-steps-indicator::before {
        left: 15%;
        width: 70%;
    }
    .quiz-step-bubble {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    .summary-total .total-amount {
        font-size: 1.8rem;
    }
    .card-body {
        padding: 1.5rem 1.25rem;
    }
    .pillar-item {
        padding: 2rem 1.25rem;
    }
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    .floating-booking-btn {
        bottom: 0.85rem;
        left: 0.85rem;
        font-size: 0.72rem;
        padding: 0.6rem 1rem;
    }
}

/* --- Global Scrollbar & Horizontal Overflow Prevention --- */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

