/* =========================================================
   Healthyou Club — Design System
   Care. Wellness. Travel.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand colors — sampled from Logo_HYC-complete-color */
  --color-primary: #0E8A73;        /* bright teal (icon gradient top) */
  --color-primary-dark: #0C4C42;   /* deep teal (wordmark) */
  --color-secondary: #145E78;      /* teal-blue (icon gradient / hand) */
  --color-secondary-dark: #0E4258;
  --color-accent: #E98A3B;         /* warm amber — sparing use, badges/highlights */
  --color-accent-dark: #C46E26;

  --gradient-brand: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(14,138,115,0.10) 0%, rgba(20,94,120,0.10) 100%);

  --color-background: #F7FBFA;
  --color-surface: #FFFFFF;
  --color-surface-alt: #EFF6F4;
  --color-foreground: #16302B;
  --color-muted-foreground: #4B615C;
  --color-border: #DCEAE6;
  --color-border-strong: #BFD8D2;
  --color-destructive: #DC2626;
  --color-on-primary: #FFFFFF;
  --color-ring: #0E8A73;

  --font-heading: 'Figtree', 'Noto Sans', system-ui, sans-serif;
  --font-body: 'Noto Sans', 'Figtree', system-ui, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(12,58,50,0.06), 0 1px 3px rgba(12,58,50,0.08);
  --shadow-md: 0 4px 16px rgba(12,58,50,0.10);
  --shadow-lg: 0 12px 32px rgba(12,58,50,0.14);

  --container-max: 1240px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-foreground);
  background: var(--color-background);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--color-primary-dark); line-height: 1.2; margin: 0 0 var(--space-3); font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 var(--space-4); color: var(--color-muted-foreground); }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
@media (max-width: 640px) {
  .container { padding-inline: var(--space-4); }
}

section { padding-block: var(--space-8); }
.section-tight { padding-block: var(--space-6); }
.section-alt { background: var(--color-surface-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(14,138,115,0.10);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.section-head { max-width: 720px; margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Header CTA — deliberately more eye-catching than a standard button:
   ambient pulsing glow + a shine sweep on hover. */
.btn-cta-highlight {
  position: relative;
  overflow: hidden;
  background: var(--gradient-brand);
  color: #fff;
  border: none;
  box-shadow: 0 0 0 0 rgba(14,138,115,0.4), 0 6px 18px rgba(12,58,50,0.28);
  animation: ctaPulse 2.8s ease-in-out infinite;
}
.btn-cta-highlight::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
.btn-cta-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 0 rgba(14,138,115,0.4), 0 10px 26px rgba(12,58,50,0.35);
}
.btn-cta-highlight:hover::before { transform: translateX(120%); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14,138,115,0.45), 0 6px 18px rgba(12,58,50,0.28); }
  50% { box-shadow: 0 0 0 7px rgba(14,138,115,0), 0 6px 22px rgba(12,58,50,0.32); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-cta-highlight { animation: none; }
  .btn-cta-highlight::before { display: none; }
}
.btn-outline {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-primary-dark);
}
.btn-outline:hover { border-color: var(--color-primary); background: rgba(14,138,115,0.06); }
.btn-ghost { background: transparent; color: var(--color-primary-dark); padding-inline: var(--space-3); }
.btn-ghost:hover { background: rgba(14,138,115,0.08); }
.btn-white { background: #fff; color: var(--color-primary-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; min-height: 36px; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Solid (not blurred) on purpose: `backdrop-filter` on this element would
     create a new CSS containing block, trapping the position:fixed mobile
     nav drawer (a descendant) inside the header's own small height instead
     of the full viewport. */
  background: rgba(247,251,250,0.98);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--color-border); }
.header-inner { display: flex; align-items: center; padding-block: var(--space-3); }
.brand-logo { flex-shrink: 0; }
.brand-logo img { height: 40px; width: auto; }
/* Flexible gap lives here: logo stays left, nav + divider + icons group
   together and sit flush against the right edge as one cluster. */
.main-nav { display: flex; align-items: center; gap: var(--space-5); margin-left: auto; }
.main-nav a {
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--color-foreground);
  padding: var(--space-2) 0;
  position: relative;
  cursor: pointer;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gradient-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition-fast);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--color-primary-dark); }
.header-actions { display: flex; align-items: center; gap: 6px; padding-left: var(--space-5); }

/* Bare icon buttons (search, WhatsApp) — no circle/border, just the glyph */
.bare-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  border: none; background: transparent; color: var(--color-primary-dark);
  cursor: pointer; transition: background var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0; padding: 0;
}
.bare-icon-btn:hover { background: rgba(14,138,115,0.08); color: var(--color-primary); }
.bare-icon-btn svg { width: 19px; height: 19px; }
.wa-switcher .bare-icon-btn { color: #25D366; }
.wa-switcher .bare-icon-btn:hover { background: rgba(37,211,102,0.1); }

.header-divider { width: 1px; height: 26px; background: var(--color-border-strong); flex-shrink: 0; }

.nav-toggle { display: none; color: var(--color-primary-dark); -webkit-appearance: none; appearance: none; }
.nav-close { display: none; }

/* ---------- Language switcher ---------- */
.lang-switcher { position: relative; flex-shrink: 0; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 4px;
  height: 34px; padding: 0 6px; border-radius: var(--radius-sm);
  border: none; background: transparent; color: var(--color-primary-dark);
  font-weight: 600; font-size: 0.76rem; cursor: pointer;
  transition: background var(--transition-fast);
}
.lang-btn:hover { background: rgba(14,138,115,0.08); }
.lang-btn .flag { font-size: 0.85rem; line-height: 1; }
.lang-btn .chevron { width: 12px; height: 12px; color: var(--color-muted-foreground); transition: transform var(--transition-fast); }
.lang-switcher.is-open .lang-btn .chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 120;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 6px; min-width: 130px;
  max-height: 340px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}
.lang-switcher.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 7px;
  width: 100%; text-align: left; padding: 7px 8px; border-radius: 8px;
  border: none; background: transparent; color: var(--color-foreground);
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
}
.lang-option .check { width: 12px; height: 12px; flex-shrink: 0; color: var(--color-primary); }
.lang-option .flag { font-size: 0.9rem; flex-shrink: 0; }
.lang-option:hover { background: var(--color-surface-alt); }
.lang-option .code { font-size: 0.76rem; font-weight: 600; color: var(--color-foreground); }

.wa-option {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left; padding: 9px 12px; border-radius: 8px;
  border: none; background: transparent; color: var(--color-foreground);
  font-size: 0.88rem; font-weight: 500; cursor: pointer; text-decoration: none;
  white-space: nowrap;
}
.wa-option:hover { background: var(--color-surface-alt); color: #25D366; }
.wa-option-label { font-weight: 600; }
.wa-option .code { font-size: 0.8rem; color: var(--color-muted-foreground); }
.wa-menu { min-width: max-content; }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; background: rgba(11,42,37,0.5); z-index: 300;
  display: flex; align-items: flex-start; justify-content: center; padding: 90px 20px 20px;
}
.search-overlay[hidden] { display: none; }
.search-panel {
  width: 100%; max-width: 620px; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.search-input-row { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--color-border); }
.search-input-row svg { width: 22px; height: 22px; color: var(--color-muted-foreground); flex-shrink: 0; }
.search-input-row input {
  flex: 1; border: none; outline: none; font-size: 1.05rem; font-family: inherit; color: var(--color-foreground);
}
.search-close { background: none; border: none; color: var(--color-muted-foreground); cursor: pointer; width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; }
.search-close:hover { background: var(--color-surface-alt); }
.search-results { max-height: 400px; overflow-y: auto; padding: 8px; }
.search-result {
  display: block; padding: 12px 14px; border-radius: 10px; cursor: pointer;
}
.search-result:hover, .search-result.is-highlighted { background: var(--color-surface-alt); }
.search-result strong { display: block; color: var(--color-primary-dark); font-size: 0.95rem; }
.search-result span { font-size: 0.8rem; color: var(--color-muted-foreground); }
.search-empty { padding: 32px 20px; text-align: center; color: var(--color-muted-foreground); font-size: 0.92rem; }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 72px; bottom: 0; right: -100vw; width: 100vw; margin-left: 0; background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: var(--space-5); gap: 0; transition: right var(--transition-base); overflow-y: auto; }
  .main-nav.is-open { right: 0; }
  .main-nav a { padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); font-size: 1.05rem; }
  .nav-close {
    display: inline-flex; align-items: center; justify-content: center;
    position: absolute; top: var(--space-4); right: var(--space-4); z-index: 5;
    width: 32px; height: 32px; border: none; background: transparent; padding: 0;
    color: #000; cursor: pointer;
  }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: none; background: transparent; cursor: pointer;
    margin-right: var(--space-3); flex-shrink: 0;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .brand-logo img { height: 26px; }
  .header-actions .header-divider { display: none; }
  .header-actions { gap: 2px; padding-left: 0; margin-left: auto; }
  .lang-btn { padding: 0 4px; }
  .bare-icon-btn { width: 34px; height: 34px; }
}

/* ---------- Hero v2 ---------- */
.hero {
  position: relative;
  padding-block: var(--space-9) calc(var(--space-9) + 40px);
  overflow: clip;
  background: linear-gradient(180deg, #0B2A25 0%, #0C4C42 45%, #145E78 100%);
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-blobs span {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35;
}
.hero-blobs span:nth-child(1) { width: 420px; height: 420px; background: #1FC9A6; top: -140px; left: -120px; }
.hero-blobs span:nth-child(2) { width: 380px; height: 380px; background: #2A8FB8; bottom: -160px; right: -100px; }
.hero-blobs span:nth-child(3) { width: 260px; height: 260px; background: #E98A3B; opacity: 0.14; top: 30%; right: 12%; }

.hero-content { position: relative; z-index: 1; }
.hero-grid-v2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid-v2 { grid-template-columns: 1fr; gap: var(--space-7); }
}

.hero-eyebrow-row { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-5); flex-wrap: wrap; }
.hero-eyebrow-row .eyebrow { background: rgba(255,255,255,0.14); color: #fff; margin-bottom: 0; }
.hero-rating-inline { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 600; font-size: 0.9rem; }
.hero-rating-inline .stars { color: var(--color-accent); }

.hero h1 { color: #fff; margin-bottom: var(--space-4); }
.hero h1 .text-gradient {
  background: linear-gradient(100deg, #4FE0BE, #7FD4F0 60%, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-content > .hero-grid-v2 p.hero-lede { color: rgba(255,255,255,0.82); font-size: 1.12rem; max-width: 540px; }

.hero-cta-row { display: flex; gap: var(--space-3); flex-wrap: wrap; margin: var(--space-5) 0 var(--space-6); }

.hero-trust-row { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-bottom: var(--space-6); }
.hero-trust-item { display: flex; align-items: center; gap: 10px; color: #fff; }
.hero-trust-item strong { font-family: var(--font-heading); font-size: 1.2rem; line-height: 1; }
.hero-trust-item span { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.7); }
.hero-trust-item svg { color: #7FE0C8; width: 22px; height: 22px; flex-shrink: 0; }

.hero-destinations { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.hero-destinations .label { color: rgba(255,255,255,0.68); font-size: 0.8rem; font-weight: 600; margin-right: 2px; }
.dest-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-size: 0.74rem; font-weight: 600;
  padding: 5px 11px; border-radius: var(--radius-full);
}
.dest-chip svg { width: 11px; height: 11px; color: #7FE0C8; }

.hero-visual { position: relative; }
.hero-visual-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.4;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.18);
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }

.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) var(--space-4);
  display: flex; align-items: center; gap: 10px;
  animation: floatY 5s ease-in-out infinite;
}
.floating-badge .badge-icon {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gradient-brand-soft); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.floating-badge .badge-icon svg { width: 19px; height: 19px; }
.floating-badge strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; color: var(--color-primary-dark); line-height: 1.1; }
.floating-badge span { font-size: 0.74rem; color: var(--color-muted-foreground); }
.floating-badge.badge-top { top: -22px; left: -18px; animation-delay: 0.3s; }
.floating-badge.badge-bottom { bottom: -22px; right: -18px; animation-delay: 1.1s; }
@media (max-width: 640px) {
  .floating-badge { padding: 10px 12px; }
  .floating-badge.badge-top { left: -8px; top: -16px; }
  .floating-badge.badge-bottom { right: -8px; bottom: -16px; }
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-animate { animation: heroFadeUp 700ms ease both; }
.hero-animate.delay-1 { animation-delay: 120ms; }
.hero-animate.delay-2 { animation-delay: 240ms; }
.hero-animate.delay-3 { animation-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .floating-badge { animation: none; }
  .hero-animate { animation: none; }
}

.hero-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.hero-panel h2 { font-size: 1.3rem; text-align: center; margin-bottom: var(--space-4); }
.quick-reply { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-4); }
.quick-reply-btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  width: 100%; text-align: left;
  background: var(--color-surface-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}
.quick-reply-btn:hover { border-color: var(--color-primary); background: #fff; transform: translateX(2px); }
.quick-reply-btn svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-primary); }
.hero-panel-divider { display: flex; align-items: center; gap: var(--space-3); color: var(--color-muted-foreground); font-size: 0.8rem; margin: var(--space-2) 0 var(--space-4); }
.hero-panel-divider::before, .hero-panel-divider::after { content: ""; flex: 1; height: 1px; background: var(--color-border); }
.hero-ask { display: flex; gap: var(--space-2); margin-top: auto; }
.hero-ask input {
  flex: 1; border: 1.5px solid var(--color-border-strong); border-radius: var(--radius-full);
  padding: 0 var(--space-4); font-size: 0.95rem; min-height: 44px; font-family: inherit;
}
.hero-ask input:focus { border-color: var(--color-primary); }
.hero-note { font-size: 0.78rem; color: var(--color-muted-foreground); text-align: center; margin-top: var(--space-3); margin-bottom: 0; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--color-surface-alt); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.card-body h3 { margin-bottom: 0; }
.card-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-primary); }
.card-body p { flex: 1; }
.card-link { font-weight: 700; color: var(--color-primary-dark); display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-2); }
.card-link svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.card-link:hover svg { transform: translateX(3px); }

/* Compact treatment card — image + title + arrow only, kept short since the
   admin panel can hold dozens of treatments in this grid */
.treatment-card-compact .card-img { aspect-ratio: 4/3; }
.treatment-card-compact .card-body {
  flex-direction: row; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-4); gap: var(--space-2);
}
.treatment-card-compact .card-body h3 { font-size: 0.96rem; margin: 0; line-height: 1.3; }
.treatment-card-compact .card-arrow { display: flex; flex-shrink: 0; color: var(--color-primary-dark); transition: transform var(--transition-fast); }
.treatment-card-compact .card-arrow svg { width: 18px; height: 18px; }
.treatment-card-compact:hover .card-arrow { transform: translateX(3px); }

/* icon feature card */
.feature-card { padding: var(--space-5); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--color-border); height: 100%; }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--gradient-brand-soft); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.1rem; }
.feature-card p { margin-bottom: 0; font-size: 0.95rem; }

/* Treatment category tiles (home page "Find Your Treatment") */
.treatment-tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 900px) { .treatment-tile-grid { grid-template-columns: 1fr; } }
.treatment-tile {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3; isolation: isolate;
}
.treatment-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.treatment-tile:hover img { transform: scale(1.06); }
.treatment-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(3,20,18,0.85) 100%);
}
.treatment-tile-icon {
  position: absolute; top: var(--space-4); left: var(--space-4);
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.9); color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center;
}
.treatment-tile-label {
  position: absolute; left: var(--space-4); right: var(--space-4); bottom: var(--space-4);
  color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;
}
.treatment-tile-label small { display: block; color: rgba(255,255,255,0.85); font-family: var(--font-body); font-weight: 400; font-size: 0.82rem; margin-top: 4px; }

/* Procedure list (Treatment detail pages) */
.procedure-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-4); }
.procedure-item {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.92rem;
}
.procedure-item svg { color: var(--color-primary); flex-shrink: 0; }

/* FAQ accordion (Treatment detail pages) */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 18px 22px; background: #fff; }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-family: var(--font-heading); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--color-primary); flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin: 14px 0 0; color: var(--color-muted-foreground); }

/* "What's included" icon strip (Wellness page) */
.included-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); text-align: center; }
@media (max-width: 700px) { .included-strip { grid-template-columns: repeat(2, 1fr); } }
.included-item { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--color-muted-foreground); font-weight: 600; font-size: 0.9rem; }
.included-item svg { color: var(--color-primary); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: var(--space-5) var(--space-4) var(--space-4); background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.step-num {
  counter-increment: step;
  width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-brand); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-heading);
  margin-bottom: var(--space-3);
}
.step-num::before { content: counter(step); }
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; margin-bottom: 0; }

/* Promotions */
.promo-section { background: var(--color-primary-dark); position: relative; overflow: clip; }
.promo-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 15% 20%, rgba(31,201,166,0.25), transparent),
              radial-gradient(600px 300px at 85% 80%, rgba(42,143,184,0.25), transparent);
}
.promo-section .section-head .eyebrow { background: rgba(255,255,255,0.14); color: #fff; }
.promo-section .section-head h2 { color: #fff; }
.promo-section .section-head p { color: rgba(255,255,255,0.75); }
.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); position: relative; }
@media (max-width: 780px) { .promo-grid { grid-template-columns: 1fr; } }
.promo-card {
  background: #fff; border-radius: var(--radius-lg); padding: var(--space-6);
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: var(--space-3);
  box-shadow: var(--shadow-lg);
}
.promo-ribbon {
  position: absolute; top: 18px; right: -34px; transform: rotate(40deg);
  background: var(--color-accent); color: #fff; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 40px;
}
.promo-card .feature-icon { background: var(--gradient-brand-soft); }
.promo-card h3 { margin-bottom: 2px; }
.promo-validity { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; color: var(--color-accent-dark); }
.promo-validity svg { width: 15px; height: 15px; }
.promo-card p { margin-bottom: 0; }
.promo-card .btn { align-self: flex-start; margin-top: var(--space-2); }

/* Doctor card */
.doctor-card .card-img { aspect-ratio: 1/1; }
.doctor-card .specialty { color: var(--color-primary); font-weight: 700; font-size: 0.88rem; }
.doctor-meta { display: flex; flex-wrap: wrap; gap: var(--space-2); font-size: 0.82rem; color: var(--color-muted-foreground); margin: var(--space-1) 0; }
.doctor-meta span { display: inline-flex; align-items: center; gap: 4px; }
.doctor-meta svg { width: 14px; height: 14px; }

/* Testimonials */
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 900px) { .testimonial-track { grid-template-columns: 1fr; } }
.testimonial-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-5); }
.testimonial-stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: var(--space-3); }
.testimonial-quote { font-style: italic; color: var(--color-foreground); }
.testimonial-person { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-4); }
.testimonial-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong { display: block; font-size: 0.92rem; }
.testimonial-person span { font-size: 0.8rem; color: var(--color-muted-foreground); }

/* CTA band */
.cta-band {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin-inline: auto; }
.btn-actions { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-4); }
.cta-band .btn-actions { justify-content: center; margin-top: var(--space-5); }

/* Split section (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--space-5); } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split.reverse .split-media { order: 2; }
.checklist { display: flex; flex-direction: column; gap: var(--space-3); margin: var(--space-4) 0; }
.checklist li { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--color-foreground); font-weight: 500; }
.checklist svg { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; margin-top: 1px; }

/* Badges / pills */
.pill-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pill {
  border: 1.5px solid var(--color-border-strong); border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4); font-weight: 600; font-size: 0.88rem; cursor: pointer;
  background: #fff; color: var(--color-foreground); transition: all var(--transition-fast);
}
.pill.is-active, .pill:hover { background: var(--gradient-brand); color: #fff; border-color: transparent; }

/* Treatment pill dropdown (Packages page) — reuses .lang-switcher mechanics */
#treatment-pill-dropdown .pill { display: inline-flex; align-items: center; gap: 6px; }
#treatment-pill-dropdown .chevron { width: 12px; height: 12px; transition: transform var(--transition-fast); }
#treatment-pill-dropdown.is-open .chevron { transform: rotate(180deg); }
.treatment-pill-menu { left: 0; right: auto; min-width: 280px; }

/* Horizontal scroll carousel (Wellness "Popular Stops") */
.scroll-carousel-wrap { position: relative; display: flex; align-items: center; gap: var(--space-3); }
.scroll-carousel {
  display: flex; gap: var(--space-5); overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x proximity; padding-block: 4px 8px; flex: 1;
  -ms-overflow-style: none; scrollbar-width: thin;
}
.scroll-carousel .scroll-card { flex: 0 0 280px; scroll-snap-align: start; }
.scroll-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--color-border-strong); background: #fff; color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background var(--transition-fast);
}
.scroll-arrow:hover { background: var(--color-surface-alt); }
@media (max-width: 640px) { .scroll-arrow { display: none; } }

/* Pagination controls (Doctors, Hospitals, Packages) */
.pagination-controls { align-items: center; justify-content: center; gap: var(--space-4); margin-top: var(--space-6); }
.pagination-info { font-size: 0.9rem; font-weight: 600; color: var(--color-muted-foreground); min-width: 110px; text-align: center; }
.pagination-controls .btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Dropdown filter bar (Packages page) */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.filter-bar select {
  border: 1.5px solid var(--color-border-strong); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.92rem; font-weight: 600; font-family: inherit;
  background: #fff; color: var(--color-foreground); min-height: 46px; min-width: 220px;
}
.filter-bar select:focus { border-color: var(--color-primary); outline: none; }
@media (max-width: 640px) { .filter-bar select { min-width: 0; flex: 1 1 100%; } }

/* Package cards */
.package-checklist { margin: var(--space-3) 0; gap: var(--space-2); flex: 1; }
.package-checklist li { font-size: 0.85rem; font-weight: 400; }
.package-checklist svg { width: 16px; height: 16px; }
.package-price { font-weight: 700; color: var(--color-primary-dark); font-size: 0.95rem; margin: var(--space-1) 0; }
.package-card .btn { margin-top: auto; align-self: flex-start; }

/* Page header (interior pages) */
.page-header {
  padding-block: var(--space-8) var(--space-6);
  background: var(--gradient-brand-soft);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb { font-size: 0.85rem; color: var(--color-muted-foreground); margin-bottom: var(--space-3); }
.breadcrumb a:hover { color: var(--color-primary); }
.page-header h1 { margin-bottom: var(--space-3); }
.page-header p { max-width: 640px; font-size: 1.05rem; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); text-align: center; }
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-strip strong { display: block; font-family: var(--font-heading); font-size: 2.1rem; color: var(--color-primary-dark); }
.stat-strip span { color: var(--color-muted-foreground); font-size: 0.9rem; }

/* 404 page */
.error-404-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 88px; border-radius: 50%; background: var(--gradient-brand-soft);
  color: var(--color-primary); margin-bottom: var(--space-5);
}
.quick-link-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: var(--space-5) var(--space-4); background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); text-align: center; font-weight: 700; color: var(--color-primary-dark);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.quick-link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.quick-link-card svg { color: var(--color-primary); }
.quick-links-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .quick-links-grid .quick-link-card { padding: var(--space-4) var(--space-3); }
}

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-4); }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--color-foreground); }
.field .required { color: var(--color-destructive); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--color-border-strong); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 0.95rem; font-family: inherit; background: #fff; color: var(--color-foreground);
  min-height: 46px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--color-primary); }
.field-hint { font-size: 0.8rem; color: var(--color-muted-foreground); }
.field-hint.is-success {
  display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600;
  color: var(--color-primary-dark); background: #E8F5F0; border: 1px solid #BFE3D5;
  border-radius: var(--radius-sm); padding: 10px 14px; margin-top: var(--space-3);
}
.field-hint.is-success svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-primary); }
.form-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.form-note { background: var(--color-surface-alt); border-radius: var(--radius-md); padding: var(--space-4); font-size: 0.88rem; color: var(--color-muted-foreground); }

/* Info list (contact) */
.info-list { display: flex; flex-direction: column; gap: var(--space-5); }
.info-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.info-item .feature-icon { flex-shrink: 0; margin-bottom: 0; width: 48px; height: 48px; }
.info-item .feature-icon svg { width: 22px; height: 22px; }
.info-item h3 { font-size: 1rem; margin-bottom: 2px; }
.info-item p { margin-bottom: 0; font-size: 0.92rem; }

/* Blog */
.blog-card .card-img { aspect-ratio: 16/10; }
.blog-meta { font-size: 0.8rem; color: var(--color-muted-foreground); }

/* Blog post (single article) */
.blog-post-hero { position: relative; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.blog-post-hero-media { position: absolute; inset: 0; }
.blog-post-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,42,37,0.35) 0%, rgba(12,42,37,0.55) 55%, rgba(9,31,27,0.92) 100%);
}
.blog-post-hero-content { position: relative; z-index: 1; color: #fff; padding-block: var(--space-8) var(--space-6); }
.blog-post-hero-content .breadcrumb { color: rgba(255,255,255,0.75); }
.blog-post-hero-content .breadcrumb a { color: rgba(255,255,255,0.75); }
.blog-post-hero-content .breadcrumb a:hover { color: #fff; }
.blog-post-hero-content h1 { color: #fff; max-width: 760px; margin-bottom: var(--space-3); }
.blog-post-category {
  display: inline-block; background: var(--gradient-brand); color: #fff; font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; padding: 5px 14px; border-radius: 999px; margin-bottom: var(--space-3);
}
.blog-post-meta-line { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin: 0; }

.blog-post-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr); gap: var(--space-7); align-items: start; }
@media (max-width: 900px) { .blog-post-layout { grid-template-columns: 1fr; } }

.blog-post-article #cms-post-content { font-size: 1.06rem; line-height: 1.75; }
.blog-post-article #cms-post-content h2 { margin-top: var(--space-6); font-size: 1.4rem; }
.blog-post-article #cms-post-content ul.checklist { margin: var(--space-4) 0; }
.blog-post-article #cms-post-content p { margin-bottom: var(--space-4); }

.blog-post-share { display: flex; align-items: center; gap: var(--space-3); margin: var(--space-6) 0; padding-top: var(--space-5); border-top: 1px solid var(--color-border); }
.blog-post-share span { font-size: 0.86rem; font-weight: 600; color: var(--color-muted-foreground); }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--gradient-brand-soft); color: var(--color-primary); cursor: pointer;
}
.share-btn:hover { background: var(--gradient-brand); color: #fff; }
.share-btn svg { width: 17px; height: 17px; }

.blog-post-sidebar { position: sticky; top: 88px; align-self: start; display: flex; flex-direction: column; gap: var(--space-5); }
.blog-post-cta-card {
  background: var(--color-primary-dark); color: #fff; border-radius: var(--radius-lg); padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.blog-post-cta-card h3 { color: #fff; margin: 0; }
.blog-post-cta-card p { color: rgba(255,255,255,0.78); margin: 0; font-size: 0.92rem; }
.blog-post-sidebar-block { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-5); }
.blog-post-sidebar-block h4 { margin-bottom: var(--space-3); font-size: 0.95rem; }
.blog-post-sidebar-block .footer-links a { color: var(--color-foreground); }
.blog-post-sidebar-block .footer-links a:hover { color: var(--color-primary); }

.scroll-carousel .testimonial-card { flex: 0 0 360px; }

/* Footer */
.site-footer { background: var(--color-primary-dark); color: rgba(255,255,255,0.85); padding-block: var(--space-8) var(--space-5); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-6); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer img.brand-logo-footer { height: 84px; width: auto; margin-bottom: var(--space-4); }
.site-footer p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.site-footer h4 { color: #fff; font-family: var(--font-heading); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-4); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.92rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; transition: background var(--transition-fast);
  color: #fff;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); margin-top: var(--space-7); padding-top: var(--space-5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { color: #fff; }

/* Whatsapp float — a small dropdown of numbers anchored to the FAB */
.whatsapp-float-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 90; }
.whatsapp-float {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  border: none; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer; transition: transform var(--transition-fast);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }
.wa-menu-float { top: auto; bottom: calc(100% + 12px); right: 0; }

/* Google Translate — only used as the engine behind our own language
   switcher (see main.js); hide all of its own default UI chrome. */
#google_translate_element,
.goog-te-gadget-icon { display: none !important; }
.goog-te-banner-frame,
iframe.skiptranslate { display: none !important; }
html body { top: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* Floating "peek" CTA — mostly hidden off the right edge, blinks to draw
   the eye, slides fully into view on hover or tap. */
.floating-cta {
  position: fixed; top: 100px; right: 0; z-index: 85;
  display: flex; align-items: stretch;
  text-decoration: none; color: #fff;
  background: var(--gradient-brand);
  border-radius: 12px 0 0 12px;
  box-shadow: var(--shadow-lg);
  transform: translateX(calc(100% - 44px));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: floatingCtaBlink 2.6s ease-in-out infinite;
}
.floating-cta-handle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; flex-shrink: 0;
}
.floating-cta-handle svg { transform: rotate(180deg); transition: transform 0.4s ease; }
.floating-cta-body {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px 14px 2px;
  white-space: nowrap; font-weight: 700; font-size: 0.92rem;
}
.floating-cta:hover, .floating-cta:focus-visible, .floating-cta.is-expanded { transform: translateX(0); }
.floating-cta:hover .floating-cta-handle svg, .floating-cta:focus-visible .floating-cta-handle svg, .floating-cta.is-expanded .floating-cta-handle svg { transform: rotate(0deg); }
@keyframes floatingCtaBlink {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(14,138,115,0.5); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 9px rgba(14,138,115,0); }
}
@media (prefers-reduced-motion: reduce) { .floating-cta { animation: none; } }
@media (max-width: 640px) { .floating-cta { top: auto; bottom: 100px; } }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--color-muted-foreground); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 8px; top: -60px; background: var(--color-primary-dark); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm); z-index: 200; transition: top var(--transition-fast);
}
.skip-link:focus { top: 8px; }
