/* ═══════════════════════════════════════════════════════════════
   Wincare Ayurveda — Main Stylesheet
   Brand: Deep Green | Turmeric Gold | Terracotta | Cream/White
   Typography: Marcellus (headings) | Poppins (UI) | Nunito Sans (body)
═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  /* Brand Colors */
  --green-dark: #1E3D20;
  --green-primary: #2D5A27;
  --green-mid: #3D7A35;
  --green-light: #4A7C59;
  --green-pale: #E8F0E5;

  --gold: #F4C430;
  --gold-dark: #C9A227;
  --gold-light: #FDE68A;
  --gold-pale: #FFFBEB;

  --terracotta: #C1694F;
  --terracotta-light: #E8937A;
  --terracotta-pale: #FDF0EC;

  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #3D3D3D;
  --text-light: #6B6B6B;
  --text-muted: #9B9B9B;
  --border: #E2DACE;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Marcellus', Georgia, serif;
  --font-ui: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --section-py: 80px;
  --section-px: 20px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 90, 39, 0.08);
  --shadow-md: 0 6px 24px rgba(45, 90, 39, 0.12);
  --shadow-lg: 0 16px 48px rgba(45, 90, 39, 0.16);
  --shadow-gold: 0 4px 20px rgba(244, 196, 48, 0.25);

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-med: 0.35s ease;
  --trans-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Nav Height */
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -60px;
  left: 0;
  background: var(--green-primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 9999;
  transition: top var(--trans-fast);
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

/* ── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--green-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
  font-family: var(--font-ui);
  font-weight: 600;
}

p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ── Section Helpers ───────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background-color: var(--green-pale);
}

.section--dark {
  background-color: var(--green-dark);
  color: var(--cream);
}

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

.section--gold {
  background-color: var(--gold-pale);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.section-title {
  color: var(--green-dark);
  margin-bottom: 12px;
}

.section--dark .section-title {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.divider-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans-med);
  text-align: center;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
  min-height: 40px;
}

.btn-lg {
  padding: 17px 40px;
  font-size: 1.05rem;
  min-height: 56px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Loading state */
.btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 8px;
}

/* ── NAVBAR ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--trans-med), box-shadow var(--trans-med), padding var(--trans-med);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(45, 90, 39, 0.12);
  backdrop-filter: blur(8px);
}

.navbar {
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.nav-logo:hover .logo-img,
.footer-logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-leaf {
  font-size: 1.8rem;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: black;
}

.logo-sub {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.site-header.scrolled .logo-main {
  color: var(--green-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--trans-fast);
  position: relative;
}

.site-header.scrolled .nav-link {
  color: var(--text-dark);
}

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

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--green-primary);
  background: var(--green-pale);
}

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  font-weight: 700;
  padding: 9px 20px;
  box-shadow: 0 2px 12px rgba(244, 196, 48, 0.35);
}

.nav-link.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.bar {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-fast);
}

.site-header.scrolled .bar {
  background: var(--green-dark);
}

/* Hamburger → X animation */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ── FLASH MESSAGES ─────────────────────────────────────────── */
.flash-message {
  position: fixed;
  top: calc(var(--nav-h) + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  max-width: 90vw;
  animation: slideDown 0.4s ease;
}

.flash-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.flash-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.flash-info {
  background: #cce5ff;
  color: #004085;
  border-left: 4px solid #0d6efd;
}

.flash-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: inherit;
  opacity: 0.7;
}

.flash-close:hover {
  opacity: 1;
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, #1A3B0E 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/foot_massage.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.8
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 61, 32, 0.85) 0%,
      rgba(45, 90, 39, 0.75) 60%,
      rgba(74, 124, 89, 0.5) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(244, 196, 48, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74, 124, 89, 0.15) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 130px 20px 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244, 196, 48, 0.12);
  border: 1px solid rgba(244, 196, 48, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-subheading {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.hero-title .highlight {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF 0%, #FDE68A 40%, #F4C430 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.02em;
}

.hero-caption {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
  margin-top: 10px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 620px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-scroll {
  position: absolute;
  padding-bottom: 10px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-scroll span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

/* ── INTRO SECTION ──────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.intro-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}

.intro-badge-float .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green-primary);
  display: block;
  line-height: 1;
}

.intro-badge-float .text {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-light);
}

.intro-text .section-label {
  margin-bottom: 8px;
}

.intro-text h2 {
  margin-bottom: 16px;
}

.intro-text p {
  color: var(--text-light);
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green-dark);
}

.intro-feature i {
  color: var(--gold-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--trans-med);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  transform: scaleX(0);
  transition: transform var(--trans-med);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--trans-med);
}

.service-card:hover .service-icon-wrap {
  background: var(--green-primary);
}

.service-icon-wrap i {
  font-size: 1.5rem;
  color: var(--green-primary);
  transition: color var(--trans-med);
}

.service-card:hover .service-icon-wrap i {
  color: var(--white);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-light);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-primary);
  font-weight: 700;
}

/* Full services page cards */
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0;
  transition: all var(--trans-med);
  margin-bottom: 24px;
}

.service-full-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.service-full-icon {
  padding: 32px 28px;
  background: var(--green-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 120px;
  border-right: 1px solid var(--border);
}

.service-full-icon i {
  font-size: 2rem;
  color: var(--green-primary);
}

.service-full-icon .duration {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  font-weight: 500;
}

.service-full-body {
  padding: 28px 32px;
}

.service-full-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.service-full-body p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.service-full-price-col {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 140px;
  border-left: 1px solid var(--border);
  text-align: center;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green-primary);
  line-height: 1;
}

.price-tag span {
  font-size: 1rem;
  color: var(--text-light);
  font-family: var(--font-ui);
}

/* ── BENEFITS / WHY US ──────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--trans-med);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(244, 196, 48, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  border: 1px solid rgba(244, 196, 48, 0.2);
  transition: background var(--trans-med);
}

.benefit-card:hover .benefit-icon {
  background: rgba(244, 196, 48, 0.25);
}

.benefit-icon i {
  color: var(--gold);
}

.benefit-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--trans-slow);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: calc(33.333% - 19px);
  flex-shrink: 0;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--gold-light);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-primary);
  flex-shrink: 0;
  overflow: hidden;
}

.author-info .name {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.9rem;
}

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

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  align-items: center;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 0.9rem;
  transition: all var(--trans-fast);
}

.slider-btn:hover {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--trans-fast);
  border: none;
}

.slider-dot.active {
  background: var(--green-primary);
  width: 24px;
  border-radius: 4px;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background-color: var(--green-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/page_banner_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 1;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 61, 32, 0.85) 0%,
      rgba(45, 90, 39, 0.78) 50%,
      rgba(15, 35, 17, 0.90) 100%);
  z-index: 2;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 3;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
  z-index: 3;
}

.cta-banner .cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

/* ── PAGE HERO BANNERS ────────────────────────────────────────── */
.page-hero {
  background-color: var(--green-dark);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background image layer with 0.8 opacity */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/page_banner_bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 1;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

/* Green Overlay layer */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 61, 32, 0.82) 0%,
      rgba(45, 90, 39, 0.72) 50%,
      rgba(15, 35, 17, 0.88) 100%);
  z-index: 2;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

/* Page Specific Banners with Generated Images & 0.8 Opacity + Green Overlay */
.page-hero--about::before {
  background-image: url('../images/banner_about.png');
}

.page-hero--services::before {
  background-image: url('../images/banner_services.png');
}

.page-hero--gallery::before {
  background-image: url('../images/banner_gallery.png');
}

.page-hero--contact::before {
  background-image: url('../images/banner_contact.png');
}

.page-hero--booking::before {
  background-image: url('../images/banner_booking.png');
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  position: relative;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}

.page-hero .breadcrumb a {
  color: var(--gold-light);
  font-weight: 500;
  transition: color var(--trans-fast);
}

.page-hero .breadcrumb a:hover {
  color: var(--gold);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

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

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform var(--trans-med);
}

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

.philosophy-card i {
  font-size: 2rem;
  color: var(--green-primary);
  margin-bottom: 14px;
}

.philosophy-card h4 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.philosophy-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Team / Practitioner card */
.practitioner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 320px 1fr;
}

.practitioner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.practitioner-info {
  padding: 44px;
}

.practitioner-info h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.practitioner-title {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.qual-list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.qual-item i {
  color: var(--gold-dark);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}

.gallery-item img {
  width: 100%;
  transition: transform var(--trans-slow);
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(30, 61, 32, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--trans-med);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-med);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--trans-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── BOOKING FORM ───────────────────────────────────────────── */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-group label .required {
  color: var(--terracotta);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all var(--trans-fast);
  outline: none;
  min-height: 48px;
}

.form-control:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.field-error {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: #dc3545;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Honey-pot field */
.hp-field {
  display: none !important;
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.sidebar-card h4 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-service-list .s-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.sidebar-service-list .s-item:last-child {
  border-bottom: none;
}

.s-item .s-name {
  color: var(--text-mid);
}

.s-item .s-price {
  font-weight: 600;
  color: var(--green-primary);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail i {
  color: var(--green-primary);
  width: 16px;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--green-primary);
}

/* Success State */
.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 44px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), var(--green-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: var(--white);
}

.success-card h2 {
  margin-bottom: 12px;
}

.success-card p {
  color: var(--text-light);
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info-card h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ci-text .label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.ci-text .value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.ci-text a {
  color: rgba(255, 255, 255, 0.9);
}

.ci-text a:hover {
  color: var(--gold);
}

.hours-table {
  width: 100%;
  font-size: 0.85rem;
  margin-top: 16px;
}

.hours-table td {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.75);
}

.hours-table td:last-child {
  text-align: right;
  color: rgba(255, 255, 255, 0.9);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── ADMIN ──────────────────────────────────────────────────── */
/* (Admin-specific styles are in admin.css) */

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-main {
  color: black;
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: all var(--trans-fast);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list i {
  color: var(--gold);
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-hours {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-hours p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-tagline-small {
  font-size: 0.75rem;
}

/* ── FLOATING BUTTONS ───────────────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 800;
  transition: all var(--trans-med);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.floating-tooltip {
  position: absolute;
  right: 68px;
  background: var(--text-dark);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
}

.floating-book {
  position: fixed;
  right: 24px;
  bottom: 28px;
  display: none;
  /* shown on mobile via media query */
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  z-index: 800;
  transition: all var(--trans-med);
}

.floating-book:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 170px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(45, 90, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 800;
  transition: all var(--trans-med);
  backdrop-filter: blur(4px);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--green-primary);
  transform: translateY(-2px);
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 0.4;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .practitioner-card {
    grid-template-columns: 1fr;
  }

  .practitioner-image {
    min-height: 300px;
  }

  .philosophy-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .testimonial-card {
    min-width: calc(50% - 14px);
  }

  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 48px;
    --nav-h: 64px;
  }

  /* Navbar */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: -100%;
    width: min(320px, 85vw);
    height: calc(100vh - var(--nav-h));
    background: var(--white);
    flex-direction: column;
    padding: 24px 16px;
    gap: 6px;
    overflow-y: auto;
    transition: right var(--trans-med);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    align-items: stretch;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    color: var(--text-dark) !important;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }

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

  .nav-link.nav-cta {
    background: var(--gold);
    color: var(--green-dark) !important;
    text-align: center;
    margin-top: 8px;
  }

  /* Hero */
  .hero-stats {
    gap: 24px;
  }

  /* Services full card becomes stacked */
  .service-full-card {
    grid-template-columns: 1fr;
    border-left: 3px solid var(--green-primary);
  }

  .service-full-icon {
    flex-direction: row;
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-width: unset;
  }

  .service-full-body {
    padding: 20px 24px;
  }

  .service-full-price-col {
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 24px;
    border-left: none;
    border-top: 1px solid var(--border);
    min-width: unset;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 20px;
  }

  /* Testimonials */
  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  /* Gallery */
  .gallery-grid {
    columns: 2;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Floating */
  .floating-book {
    display: flex;
  }

  .floating-whatsapp {
    bottom: 92px;
  }

  .scroll-top {
    bottom: 160px;
  }

  /* Philosophy */
  .philosophy-cards {
    grid-template-columns: 1fr;
  }

  /* Booking sidebar */
  .booking-sidebar {
    order: -1;
  }
}

@media (max-width: 480px) {
  :root {
    --section-py: 40px;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    columns: 1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PRINT ──────────────────────────────────────────────────── */
@media print {

  .site-header,
  .site-footer,
  .floating-whatsapp,
  .floating-book,
  .scroll-top {
    display: none !important;
  }

  main {
    padding-top: 0 !important;
  }
}

/* ─── BOOK NOW UI MODAL ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: rgba(15, 28, 16, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  color: #4b5563;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #e5e7eb;
  color: var(--green-dark);
  transform: rotate(90deg);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-primary);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 8px 0 4px 0;
}

.modal-subheading {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.modal-treatment-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f9f7f2;
  border: 1px solid rgba(45, 90, 39, 0.12);
  border-radius: 14px;
  padding: 12px 16px;
  margin: 18px 0 20px 0;
}

.modal-treatment-img-wrap {
  width: 80px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-treatment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-treatment-info {
  flex-grow: 1;
}

.modal-treatment-info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--green-dark);
  margin: 0 0 4px 0;
}

.modal-treatment-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold-dark);
  font-weight: 600;
}

.modal-treatment-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-primary);
  flex-shrink: 0;
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-form .form-group {
  margin-bottom: 14px;
}

.modal-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 5px;
}

.modal-form label .req {
  color: #dc2626;
}

.modal-form .form-control {
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-form .form-control:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.15);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}

@media (max-width: 576px) {
  .modal-container {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .modal-treatment-card {
    flex-direction: row;
    gap: 12px;
    padding: 10px 12px;
  }

  .modal-treatment-img-wrap {
    width: 64px;
    height: 54px;
  }

  .modal-treatment-info h3 {
    font-size: 0.95rem;
  }

  .modal-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── CONDITIONS TREATED SECTION ──────────────────────────────── */
.conditions-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.condition-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(45, 90, 39, 0.12) !important;
}

@media (max-width: 992px) {
  .conditions-grid-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}