/* =========================================================
   LEVINA L.M. — Medical landing
   Style: Othmane Alahyane "Dentist Website" reference
   Cream + deep green, rounded cards, pill nav, soft shadows
   ========================================================= */

:root {
  /* Palette — cream + deep botanical green */
  --bg: #f3efe6;
  --bg-card: #ffffff;
  --bg-soft: #ebe6db;
  --bg-dark: #1f3a2e;

  --ink: #1a1a1a;
  --ink-2: #4a4a48;
  --muted: #8a8780;

  --accent: #1f3a2e;          /* deep green primary */
  --accent-2: #2d5444;         /* hover / lighter green */
  --accent-soft: #d4dcd3;      /* very light green for tinted backgrounds */
  --accent-pop: #c9a36b;       /* warm gold accent for highlights */

  --line: #1a1a1a14;
  --shadow-sm: 0 2px 8px rgba(31, 58, 46, 0.04);
  --shadow-md: 0 8px 32px rgba(31, 58, 46, 0.06);
  --shadow-lg: 0 24px 64px rgba(31, 58, 46, 0.08);

  /* Radii — generous, like reference */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 999px;

  /* Type */
  --f-display: clamp(2.75rem, 6.5vw + 0.5rem, 6.5rem);
  --f-h1: clamp(2.25rem, 4vw + 0.5rem, 4rem);
  --f-h2: clamp(1.75rem, 2.4vw + 0.75rem, 3rem);
  --f-h3: clamp(1.125rem, 0.8vw + 0.875rem, 1.5rem);

  /* Layout */
  --pad-page: clamp(1.25rem, 4vw, 3rem);
  --gap-section: clamp(4rem, 9vw, 8rem);
  --max-w: 1320px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--accent); color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-page);
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.h-display {
  font-size: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.h-display .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.section-title {
  font-size: var(--f-h2);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
}
.section-title .accent { color: var(--accent); font-style: italic; font-weight: 500; }

/* ============== STICKY PILL NAV ============== */
.site-header {
  position: fixed;
  top: 1rem;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 var(--pad-page);
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  width: 100%;
  max-width: 1180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex; align-items: center; gap: 0.625rem;
  font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
}
.brand-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-icon svg { width: 20px; height: 20px; }
.brand-name em { font-style: normal; font-weight: 500; color: var(--muted); margin-left: 0.25em; }

.nav-links {
  display: flex;
  gap: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
.nav-links a {
  padding: 0.625rem 1rem;
  border-radius: var(--r-pill);
  color: var(--ink-2);
  transition: all 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--accent); background: var(--accent-soft); }

.nav-right { display: flex; align-items: center; gap: 0.625rem; }

.lang-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
}
.lang-toggle button {
  padding: 0.375rem 0.75rem;
  border-radius: var(--r-pill);
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.lang-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.btn-book {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.btn-book .btn-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease);
}
.btn-book:hover { background: var(--accent-2); }
.btn-book:hover .btn-arrow { transform: rotate(-45deg); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 1px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .btn-book span:not(.btn-arrow) { display: none; }
  .btn-book { padding: 0.375rem; }
}
@media (max-width: 480px) {
  .nav-pill { padding: 0.375rem 0.375rem 0.375rem 0.875rem; gap: 0.5rem; }
  .brand-name em { display: none; }
  .lang-toggle { display: none; }
  .brand-icon { width: 32px; height: 32px; }
  .brand { font-size: 0.9375rem; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 200;
  padding: var(--pad-page);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 2rem;
}
.mobile-menu-close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.mobile-menu nav a {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  background: var(--bg-card);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }

.btn-ghost {
  background: var(--bg-card);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: #fff; box-shadow: var(--shadow-sm); }

/* Centered button wrapper - only on mobile */
.btn-center-wrap {
  display: block;
}
@media (max-width: 640px) {
  .btn-center-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

.btn-cta {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.btn-cta .ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-pop);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease);
}
.btn-cta:hover { background: var(--accent-2); }
.btn-cta:hover .ico { transform: rotate(-45deg); }

/* ============== HERO — Centered style like Apex ============== */
.hero {
  padding: clamp(7rem, 11vw, 9rem) 0 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Light hero variant */
.hero.hero-light {
  background: var(--bg);
  padding-bottom: 0;
}

/* Subtle decorative background for light hero */
.hero-bg-pattern-light {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(31, 58, 46, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 163, 107, 0.06), transparent 50%);
  pointer-events: none;
}
.hero-bg-pattern-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31, 58, 46, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
}

/* Centered content */
.hero-center {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Light badge */
.hero-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  padding: 0.5rem 1rem;
  background: var(--accent-soft);
  border: 1px solid rgba(31, 58, 46, 0.1);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}
.hero-badge-light .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.25);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0.08); }
}

/* Light headline - centered */
.hero-headline-light {
  font-size: clamp(2.75rem, 9vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 1rem;
  text-align: center;
  color: var(--ink);
}
.hero-headline-light .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

/* Subtitle - centered */
.hero-subtitle-light {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  text-align: center;
}

/* Actions - centered */
.hero-actions-light {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--accent);
}
.btn-cta-light .ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-pop);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.btn-cta-light:hover {
  background: var(--accent-2);
}
.btn-cta-light:hover .ico {
  transform: rotate(-45deg);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--bg-card);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--line);
}
.btn-ghost-light:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-soft);
}

/* Trust section - centered */
.hero-trust-light {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-light .avatars .av {
  border-color: var(--bg);
}

.hero-trust-text-light {
  font-size: 0.875rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hero-trust-text-light strong {
  color: var(--accent);
  font-weight: 600;
}

/* ============== MARQUEE - Running text (Light) ============== */
.hero-marquee-light {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  flex-shrink: 0;
  padding-right: 3rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item-light {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.marquee-item-light:hover {
  color: var(--accent);
}

.marquee-icon-light {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Legacy avatars */
.avatars { display: inline-flex; }
.avatars .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background-size: cover; background-position: center;
}
.avatars .av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #c9a36b, #e6c896); }
.av-2 { background: linear-gradient(135deg, #6b8e7f, #9bb6a8); }
.av-3 { background: linear-gradient(135deg, #b89968, #d4b588); }
.av-4 { background: linear-gradient(135deg, #4a6b5f, #7a9588); }

/* Mobile adjustments */
@media (max-width: 640px) {
  .hero.hero-light { padding-top: clamp(6rem, 16vw, 8rem); }
  .hero-headline-light { font-size: clamp(2.25rem, 11vw, 4rem); }
  .hero-subtitle-light { font-size: 1rem; padding: 0 1rem; }
  .hero-actions-light { 
    flex-direction: column; 
    width: 100%; 
    padding: 0 var(--pad-page);
  }
  .btn-cta-light, 
  .btn-ghost-light { 
    width: 100%; 
    justify-content: center; 
  }
  .hero-trust-light { justify-content: center; }
  .marquee-content {
    animation-duration: 18s;
    gap: 2rem;
    padding-right: 2rem;
  }
  .marquee-item-light {
    font-size: 0.8125rem;
  }
  .marquee-icon-light {
    width: 24px; height: 24px;
  }
}

/* ============== SECTION GENERIC ============== */
.section {
  padding: var(--gap-section) 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}
.section-head .col-left { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.section-head .col-right { max-width: 36ch; color: var(--ink-2); }

/* ============== ABOUT BLOCK ============== */
.about {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4.5rem);
  box-shadow: var(--shadow-sm);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-photo {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background-image: url('../assets/doctor-square.jpg');
  background-size: cover;
  background-position: center 25%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-photo .badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.about-photo .badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}

.about-content h2 {
  font-size: var(--f-h2);
  margin-bottom: 1rem;
}
.about-content h2 .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.about-content p {
  color: var(--ink-2);
  margin-bottom: 1rem;
  max-width: 56ch;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.about-stat {
  background: var(--bg);
  padding: 1.25rem;
  border-radius: var(--r-md);
  text-align: left;
}
.about-stat .num {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.about-stat .lbl {
  font-size: 0.8125rem;
  color: var(--ink-2);
  line-height: 1.3;
}

/* ============== WHY US (4 round icons) ============== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 30px; height: 30px; }
.why-card.featured { background: var(--accent); color: #fff; }
.why-card.featured h3 { color: #fff; }
.why-card.featured p { color: rgba(255,255,255,0.8); }
.why-card.featured .why-icon { background: rgba(255,255,255,0.15); color: var(--accent-pop); }

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ============== FEATURED SERVICE — Family doctor & Apitherapy ============== */
.featured-service {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--accent);
}
.featured-service.apitherapy {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--accent-pop);
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.featured-service.apitherapy h3,
.featured-service.apitherapy p { color: #fff; }
.featured-service.apitherapy p { color: rgba(255,255,255,0.82); }
.featured-service.apitherapy .featured-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.12); }
.featured-service.apitherapy .featured-list li::before { color: var(--accent-pop); }
.featured-service.apitherapy .btn-primary {
  background: var(--accent-pop);
  color: var(--bg-dark);
}
.featured-service.apitherapy .btn-primary:hover { background: #d6b682; }

.featured-service-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.featured-service.apitherapy .featured-service-inner {
  grid-template-columns: 1fr 1.4fr;
}
@media (max-width: 800px) {
  .featured-service-inner,
  .featured-service.apitherapy .featured-service-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .featured-service.apitherapy .featured-visual { order: 2; }
}

.featured-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  line-height: 1.1;
}
.featured-content p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 56ch;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  text-transform: uppercase;
}
.featured-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.featured-badge.alt {
  background: rgba(201,163,107,0.18);
  color: var(--accent-pop);
  border: 1px solid rgba(201,163,107,0.3);
}
.featured-badge.alt::before { background: var(--accent-pop); }

.featured-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.featured-list li {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.featured-list li:last-child { border-bottom: 1px solid var(--line); }
.featured-list li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

.featured-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-visual svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

/* ============== SERVICES ============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card .num {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.5;
  flex-grow: 1;
}
.service-foot {
  display: flex; justify-content: flex-start; align-items: center; gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.service-foot .meta {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.service-foot .meta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.service-card.dark {
  background: var(--bg-dark);
  color: #fff;
}
.service-card.dark h3 { color: #fff; }
.service-card.dark p { color: rgba(255,255,255,0.75); }
.service-card.dark .service-icon { background: rgba(255,255,255,0.12); color: var(--accent-pop); }
.service-card.dark .num { color: rgba(255,255,255,0.4); }
.service-card.dark .service-foot { border-top-color: rgba(255,255,255,0.1); }
.service-card.dark .service-foot .meta { color: var(--accent-pop); }
.service-card.dark .service-foot .meta::before { background: var(--accent-pop); }

/* ============== PROCESS ============== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  transition: all 0.3s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.step-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--ink-2);
  line-height: 1.5;
  flex-grow: 1;
}
.step-card .step-meta {
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

/* ============== REVIEWS ============== */
.reviews-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) { .reviews-rail { grid-template-columns: 1fr; } }

.review-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: all 0.3s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card.dark { background: var(--bg-dark); color: #fff; }
.review-card.dark .quote { color: rgba(255,255,255,0.92); }
.review-card.dark .author strong { color: #fff; }
.review-card.dark .author span { color: rgba(255,255,255,0.6); }
.review-card.dark .quote-mark { color: var(--accent-pop); }

.quote-mark {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: -1rem;
}
.quote {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  flex-grow: 1;
}
.review-stars {
  display: inline-flex; gap: 2px;
  color: var(--accent-pop);
}
.author {
  display: flex; align-items: center; gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review-card.dark .author { border-top-color: rgba(255,255,255,0.1); }
.author .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a36b, #e6c896);
  flex-shrink: 0;
}
.author-info strong { display: block; font-weight: 600; font-size: 0.9375rem; }
.author-info span { font-size: 0.8125rem; color: var(--muted); }

/* ============== FAQ ============== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-list {
  display: flex; flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item[open] {
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  list-style: none;
  gap: 1.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 400;
  transition: all 0.3s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-item > div {
  padding: 0 1.5rem 1.25rem;
  color: var(--ink-2);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* ============== CTA / BOOKING ============== */
.cta-block {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,163,107,0.18), transparent 70%);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .cta-grid { grid-template-columns: 1fr; } }

.cta-text .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.cta-text .eyebrow::before { background: var(--accent-pop); }
.cta-text h2 {
  font-size: var(--f-h2);
  font-weight: 600;
  color: #fff;
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 18ch;
}
.cta-text h2 .accent { color: var(--accent-pop); font-style: italic; font-weight: 500; }
.cta-text p {
  color: rgba(255,255,255,0.75);
  max-width: 40ch;
  margin-bottom: 2rem;
}
.cta-contact {
  display: flex; flex-direction: column; gap: 1rem;
}
.cta-contact-row {
  display: flex; align-items: center; gap: 0.875rem;
  font-size: 0.9375rem;
}
.cta-contact-row .ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--accent-pop);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-contact-row .lbl { color: rgba(255,255,255,0.6); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cta-contact-row strong { font-weight: 600; }
.cta-contact-row a:hover { color: var(--accent-pop); }

.cta-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.cta-form h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.field {
  display: flex; flex-direction: column; gap: 0.375rem;
}
.field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 0.9375rem;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.875rem 1rem;
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.2s var(--ease);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent-pop);
}
.field textarea { resize: vertical; min-height: 4rem; }
.field select option { background: var(--bg-dark); color: #fff; }
.cta-form .btn-submit {
  background: var(--accent-pop);
  color: var(--bg-dark);
  margin-top: 0.5rem;
  align-self: flex-start;
}
.cta-form .btn-submit:hover { background: #d6b682; }
.form-status {
  font-size: 0.875rem;
  color: var(--accent-pop);
  opacity: 0;
  transition: opacity 0.3s;
}

/* ============== FOOTER ============== */
.site-footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
}
.footer-card {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-grid ul li { margin-bottom: 0.625rem; font-size: 0.9375rem; color: var(--ink-2); }
.footer-grid ul li a:hover { color: var(--accent); }

.footer-brand p {
  margin: 1rem 0;
  font-size: 0.9375rem;
  color: var(--ink-2);
  max-width: 32ch;
  line-height: 1.5;
}
.social-row { display: flex; gap: 0.5rem; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-row a:hover { background: var(--accent); color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--muted);
  flex-wrap: wrap; gap: 1rem;
}

/* ============== REVEAL ============== */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   MOBILE OVERRIDES — final pass
   ========================================================= */
@media (max-width: 640px) {
  /* Tighter section padding */
  .section { padding: clamp(2.5rem, 8vw, 4rem) 0; }

  /* About — single column already, but card padding tighter */
  .about { padding: 1.5rem; border-radius: var(--r-lg); }
  .about-photo { aspect-ratio: 4/5; max-height: 360px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 0.625rem; }
  .about-stat { padding: 1rem; }
  .about-stat .num { font-size: 1.5rem; }

  /* Section heads — stack with smaller gap */
  .section-head { gap: 1rem; margin-bottom: 1.75rem; }
  .section-title { font-size: clamp(1.625rem, 7vw, 2.25rem); max-width: none; }

  /* Why us — stay 1 col on small */
  .why-card { padding: 1.5rem; }
  .why-icon { width: 52px; height: 52px; }
  .why-icon svg { width: 24px; height: 24px; }

  /* Services */
  .service-card { padding: 1.5rem; }
  .service-icon { width: 48px; height: 48px; }
  .service-icon svg { width: 24px; height: 24px; }
  .service-card .num { top: 1rem; right: 1.25rem; }

  /* Process — tighter cards */
  .step-card { padding: 1.5rem 1.25rem; }
  .step-num { width: 40px; height: 40px; font-size: 0.875rem; }

  /* Reviews */
  .review-card { padding: 1.5rem; }
  .quote { font-size: 1rem; }

  /* FAQ */
  .faq-item summary { padding: 1rem 1.25rem; font-size: 0.9375rem; gap: 1rem; }
  .faq-item summary::after { width: 28px; height: 28px; font-size: 1.125rem; }
  .faq-item > div { padding: 0 1.25rem 1rem; font-size: 0.875rem; }

  /* CTA block */
  .cta-block { padding: 1.75rem; border-radius: var(--r-lg); }
  .cta-text h2 { font-size: clamp(1.75rem, 8vw, 2.5rem); max-width: none; }
  .cta-form { padding: 1.25rem; border-radius: var(--r-md); }
  .field input, .field textarea, .field select { padding: 0.75rem 0.875rem; }

  /* Footer */
  .footer-card { padding: 1.5rem; border-radius: var(--r-lg); }
}

/* Very small phones */
@media (max-width: 380px) {
  .nav-links { display: none; }
  .brand-name { display: none; }
  .hero-headline { font-size: 2rem; line-height: 1; }
  .h-display { font-size: 2.5rem; }
}

/* ============== SECTION DECORATIVE BLOBS — soft, no hard edges ============== */
.section-with-blob {
  position: relative;
  isolation: isolate;
  /* No overflow:hidden — blobs are masked instead of clipped */
}
.bg-blob {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  filter: blur(160px);
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  /* Radial mask so the blob fades into background instead of getting cut */
  -webkit-mask: radial-gradient(circle at center, black 30%, transparent 70%);
          mask: radial-gradient(circle at center, black 30%, transparent 70%);
}
.bg-blob.b1 { background: var(--accent);     top: -20%; left: -20%; }
.bg-blob.b2 { background: var(--accent-pop); bottom: -25%; right: -25%; opacity: 0.14; }

/* Sections positioning */
.section { position: relative; }

/* ============== LOCATIONS ============== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 800px) { .locations-grid { grid-template-columns: 1fr; } }

.location-card {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  border: 1px solid var(--line);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.location-card.dark {
  background: var(--bg-dark);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}
.location-card.dark h3 { color: #fff; }
.location-card.dark .location-desc { color: rgba(255,255,255,0.78); }
.location-card.dark .location-info dt { color: rgba(255,255,255,0.5); }
.location-card.dark .location-info dd { color: #fff; }
.location-card.dark .location-info dd a:hover { color: var(--accent-pop); }
.location-card.dark .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.location-card.dark .btn-ghost:hover { background: rgba(255,255,255,0.15); }

.location-head {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.location-head h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent);
}
.location-tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.location-tag.alt {
  background: rgba(201,163,107,0.18);
  color: var(--accent-pop);
}
.location-tag.alt::before { background: var(--accent-pop); }

.location-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-2);
}

.location-info {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.75rem 1.5rem;
  margin: 0.5rem 0 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.location-card.dark .location-info {
  border-top-color: rgba(255,255,255,0.08);
  border-bottom-color: rgba(255,255,255,0.08);
}
.location-info dt {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  align-self: center;
}
.location-info dd {
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 500;
}
.location-info dd a { transition: color 0.2s var(--ease); }
.location-info dd a:hover { color: var(--accent); }

.phone-link { font-variant-numeric: tabular-nums; }
.phones-stack {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.phones-stack a { font-variant-numeric: tabular-nums; }

.location-card .btn-ghost { align-self: flex-start; margin-top: auto; }

@media (max-width: 480px) {
  .location-info { grid-template-columns: 1fr; gap: 0.25rem 0; }
  .location-info dt { margin-top: 0.5rem; }
}

/* =========================================================
   FLOATING CONTACT BUTTONS — bold, on top, with labels
   ========================================================= */
.float-contacts {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31, 58, 46, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: width 0.4s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease), gap 0.3s var(--ease);
  position: relative;
}
.fc-btn svg {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 17px;
}
.fc-btn .fc-label {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s var(--ease) 0.05s, max-width 0.4s var(--ease), padding 0.4s var(--ease);
  white-space: nowrap;
}
.fc-btn:hover {
  width: auto;
  gap: 0;
  padding-right: 1.25rem;
  transform: translateY(-2px);
}
.fc-btn:hover .fc-label {
  opacity: 1;
  max-width: 200px;
}

/* Phone dropdown */
.fc-phones-dropdown {
  position: relative;
}
.fc-phones-list {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  background: var(--bg-card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  min-width: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.fc-phones-dropdown.open .fc-phones-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fc-phone-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.875rem 1rem;
  transition: background 0.2s var(--ease);
  border-bottom: 1px solid var(--line);
}
.fc-phone-item:last-child { border-bottom: none; }
.fc-phone-item:hover { background: var(--bg-soft); }
.fc-phone-clinic {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fc-phone-number {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.fc-call { background: var(--accent); }
.fc-call:hover { background: var(--accent-2); }
.fc-wa { background: #25d366; }
.fc-wa:hover { background: #1faa54; }
.fc-book {
  background: var(--accent-pop);
  color: var(--bg-dark);
  box-shadow: 0 8px 24px rgba(201, 163, 107, 0.35), 0 2px 8px rgba(0, 0, 0, 0.08);
}
.fc-book:hover { background: #d6b682; }

/* Pulse on book button to draw attention */
.fc-book::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--accent-pop);
  opacity: 0;
  animation: fc-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fc-pulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.4);  opacity: 0; }
}

/* On mobile keep them visible but smaller */
@media (max-width: 640px) {
  .float-contacts { gap: 0.625rem; right: 0.875rem; bottom: 0.875rem; }
  .fc-btn { width: 52px; height: 52px; }
  .fc-btn svg { width: 52px; height: 52px; padding: 16px; }
  /* Tap target: keep wide enough for thumb */
  .fc-btn:active { transform: scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  .fc-book::before { animation: none; display: none; }
}

/* =========================================================
   FOOTER CREDIT — Lumi Web Agency
   ========================================================= */
.footer-credit {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-left: auto;
}
.footer-credit a {
  color: var(--accent);
  font-weight: 600;
  position: relative;
  transition: color 0.2s var(--ease);
}
.footer-credit a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}
.footer-credit a:hover { color: var(--accent-2); }
.footer-credit a:hover::after { transform: scaleX(1); }

@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-credit { margin-left: 0; }
}

/* =========================================================
   ENHANCED MOBILE — final polish
   ========================================================= */

/* Reserve space at bottom for floating contacts on mobile */
@media (max-width: 640px) {
  body { padding-bottom: 5rem; }
  .site-footer { padding-bottom: 3rem; }
}

/* Hero — better mobile flow */
@media (max-width: 640px) {
  .hero-eyebrow-row { gap: 0.5rem; flex-direction: column; align-items: flex-start; }
  .hero-row { padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
  .hero-pills-row { gap: 0.5rem; }
  .hero-pill { font-size: 0.75rem; }
  .hero-pill-stat .num { font-size: 1.125rem; }
}

/* Featured services — mobile stacking */
@media (max-width: 640px) {
  .featured-service { padding: 1.5rem; border-radius: var(--r-lg); }
  .featured-service-inner { gap: 1.5rem; }
  .featured-content h3 { font-size: 1.5rem; }
  .featured-visual svg { max-width: 200px; }
  .featured-list li { padding: 0.625rem 0; font-size: 0.875rem; }
}

/* Locations — better mobile */
@media (max-width: 640px) {
  .location-card { padding: 1.5rem; border-radius: var(--r-lg); }
  .location-head h3 { font-size: 1.375rem; }
  .location-info { padding: 0.75rem 0; }
  .location-info dt { font-size: 0.6875rem; }
  .location-info dd { font-size: 0.875rem; }
}

/* Process — easier reading on mobile */
@media (max-width: 640px) {
  .step-card { padding: 1.25rem 1.125rem; border-radius: var(--r-md); }
  .step-num { width: 36px; height: 36px; font-size: 0.8125rem; }
  .step-card h3 { font-size: 1rem; }
  .step-card p { font-size: 0.8125rem; }
}

/* Reviews mobile */
@media (max-width: 640px) {
  .review-card { padding: 1.25rem; border-radius: var(--r-md); }
  .quote { font-size: 0.9375rem; }
  .quote-mark { font-size: 2.5rem; }
}

/* CTA mobile */
@media (max-width: 640px) {
  .cta-text h2 { font-size: clamp(1.75rem, 9vw, 2.5rem); }
  .cta-contact-row { gap: 0.625rem; }
  .cta-contact-row .ico { width: 36px; height: 36px; }
}

/* Section titles — softer cap on mobile */
@media (max-width: 640px) {
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); line-height: 1.1; }
  .section-head { gap: 0.75rem; margin-bottom: 1.5rem; }
}

/* Smooth section transitions — extra bridge between bg-blob sections */
.first-after-dark::before { display: none; } /* prevent double overlay */

/* Touch targets — ensure 44px min */
@media (max-width: 640px) {
  .nav-toggle, .lang-toggle button, .btn-book {
    min-height: 44px;
  }
  .faq-item summary { min-height: 56px; }
}

/* Fix horizontal scroll on small screens */
html, body { overflow-x: hidden; }

/* Better tap feedback */
@media (hover: none) {
  .why-card:hover, .service-card:hover, .step-card:hover,
  .review-card:hover, .location-card:hover {
    transform: none;
  }
  .why-card:active, .service-card:active, .step-card:active,
  .review-card:active, .location-card:active {
    transform: scale(0.98);
    transition: transform 0.15s ease;
  }
}