/*
Theme Name: Chunmun Clinic
Theme URI: https://chunmunclinic.example/
Author: Chunmun Clinic
Author URI: https://chunmunclinic.example/
Description: A premium, conversion-focused WordPress theme for Chunmun Clinic — Child Specialist & Vaccination Centre, Jamia Nagar, New Delhi. White / Sky Blue / Green palette with glassmorphism, on-scroll animations and WhatsApp appointment booking.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chunmun-clinic
Tags: healthcare, medical, clinic, one-page, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, responsive-layout, translation-ready
*/

/* ---------- Design tokens ---------- */
:root {
  --primary: #0d5b5c;         /* deep teal (logo) */
  --primary-dark: #084546;
  --primary-glow: #2f8b8c;
  --secondary: #d97757;       /* warm terracotta accent */
  --secondary-dark: #b85f42;
  --mint: #b7dcd8;
  --sky: #e7f1f0;
  --bg: #faf7f2;              /* warm ivory */
  --fg: #142425;
  --muted: #5c6a6b;
  --border: #e8e2d6;
  --white: #ffffff;
  --shadow-soft: 0 12px 40px -14px rgba(13, 91, 92, .28);
  --shadow-glow: 0 30px 80px -22px rgba(13, 91, 92, .40);
  --shadow-card: 0 14px 40px -14px rgba(20, 36, 37, .18);
  --gradient-primary: linear-gradient(135deg, #0d5b5c, #2f8b8c);
  --gradient-mint: linear-gradient(135deg, #d97757, #eaa27a);
  --gradient-hero:
    radial-gradient(120% 80% at 85% 10%, #e7f1f0 0%, transparent 60%),
    radial-gradient(90% 70% at 10% 90%, #fbe6d8 0%, transparent 55%),
    linear-gradient(180deg, #faf7f2, #f2ede2);
  --radius: 1.1rem;
  --wa: #25D366;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 .5em;
}
h1 em, h2 em, .italic-serif {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}
p { margin: 0 0 1em; color: var(--muted); }
a { color: var(--primary-dark); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { position: relative; padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem 1rem; border-radius: 999px;
  background: rgba(56, 163, 245, .08);
  border: 1px solid rgba(56, 163, 245, .22);
  color: var(--primary-dark);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 1rem;
}
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-title { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-title.left { text-align: left; margin-left: 0; margin-right: 0; max-width: 560px; }
.section-title h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 800; }
.section-title p { font-size: 1.05rem; margin-top: .75rem; }

.glass {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-card);
}
.blob {
  position: absolute; border-radius: 999px; filter: blur(60px); opacity: .5;
  pointer-events: none; z-index: -1;
}

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 999px; font-weight: 600;
  font-size: .92rem; transition: transform .2s, box-shadow .2s, background .2s;
  border: 0; text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { box-shadow: var(--shadow-glow); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-outline { background: rgba(255,255,255,.75); color: var(--primary-dark); border: 1px solid rgba(56,163,245,.3); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--fg); border: 1px solid var(--border); }
.btn-mint { background: rgba(79, 197, 154, .12); color: var(--secondary-dark); border: 1px solid rgba(79, 197, 154, .35); }

.icon-box {
  width: 3rem; height: 3rem; border-radius: .9rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(56,163,245,.15), rgba(79,197,154,.15));
  color: var(--primary-dark);
}
.icon-box svg { width: 1.5rem; height: 1.5rem; }
.icon-round {
  width: 3.4rem; height: 3.4rem; border-radius: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow-soft);
}
.icon-round svg { width: 1.6rem; height: 1.6rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: all .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227,236,245,.7);
  box-shadow: 0 4px 20px -12px rgba(15,30,58,.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 20px; max-width: 1180px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: inherit; }
.brand-mark {
  width: 2.5rem; height: 2.5rem; border-radius: .85rem;
  background: var(--gradient-primary);
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-soft);
}
.brand-mark svg { width: 1.2rem; height: 1.2rem; }
.brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.1rem; }
.brand-tag { font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

.nav-menu { display: none; align-items: center; gap: 1.75rem; }
.nav-menu a { color: rgba(15,30,58,.85); font-size: .9rem; font-weight: 500; }
.nav-menu a:hover { color: var(--primary-dark); }
.nav-cta { display: none; gap: .5rem; }
@media (min-width: 900px) { .nav-cta { display: flex; } }
@media (min-width: 1024px) { .nav-menu { display: flex; } }

.nav-toggle {
  width: 2.6rem; height: 2.6rem; border-radius: .6rem;
  background: rgba(255,255,255,.75); border: 1px solid var(--border);
  display: grid; place-items: center;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-mobile { display: none; padding: 0 20px 1rem; }
.nav-mobile.open { display: block; }
.nav-mobile-inner {
  background: rgba(255,255,255,.98); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1rem; box-shadow: var(--shadow-card);
}
.nav-mobile a { display: block; padding: .7rem .75rem; border-radius: .6rem; font-weight: 500; color: var(--fg); }
.nav-mobile a:hover { background: rgba(56,163,245,.06); color: var(--primary-dark); }
.nav-mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .75rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: 7rem; padding-bottom: 4rem;
  background: var(--gradient-hero);
}
@media (min-width: 900px) { .hero { padding-top: 9rem; padding-bottom: 6rem; } }
.hero-grid {
  display: grid; gap: 3rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.05;
}
.hero-lead { font-size: 1.05rem; max-width: 32rem; margin: 1rem 0 1.75rem; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; max-width: 30rem; }
.stat { border-radius: 1.1rem; padding: .9rem; }
.stat svg { width: 1.2rem; height: 1.2rem; color: var(--primary-dark); margin-bottom: .4rem; }
.stat-k { font-size: 1.1rem; font-weight: 800; }
.stat-v { font-size: .7rem; color: var(--muted); font-weight: 500; }

.hero-media { position: relative; }
.hero-media-frame {
  border-radius: 2rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-glow);
}
.hero-media-frame img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-badge-1 {
  position: absolute; left: -1rem; bottom: -1.25rem;
  max-width: 220px; padding: 1rem; border-radius: 1.1rem;
  display: none;
}
@media (min-width: 640px) { .hero-badge-1 { display: block; } }
.hero-badge-2 {
  position: absolute; right: -1rem; top: 1.5rem;
  padding: .75rem; border-radius: 1.1rem;
  display: none;
}
@media (min-width: 640px) { .hero-badge-2 { display: flex; align-items: center; gap: .55rem; } }
.stars { display: inline-flex; gap: 2px; color: #facc15; }
.stars svg { width: 1rem; height: 1rem; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-media img { border-radius: 1.5rem; box-shadow: var(--shadow-card); aspect-ratio: 4/5; object-fit: cover; }
.about-media img:nth-child(2) { margin-top: 2.5rem; }
.about-badge {
  position: absolute; left: 50%; bottom: -1.25rem; transform: translateX(-50%);
  padding: .6rem 1.1rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 600;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.check-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  background: rgba(255,255,255,.6); padding: .8rem; border-radius: .8rem;
  backdrop-filter: blur(10px);
}
.check-list svg { color: var(--secondary-dark); flex: none; width: 1.25rem; height: 1.25rem; margin-top: .1rem; }

/* ---------- Doctor ---------- */
.doctor-section { background: linear-gradient(to bottom, transparent, rgba(56,163,245,.05)); }
.doctor-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .doctor-grid { grid-template-columns: 1fr 1fr; } }
.doctor-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin: 1.5rem 0 2rem; }
.doctor-badge {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem .8rem; border-radius: .8rem;
  border: 1px solid var(--border); background: rgba(255,255,255,.7);
}
.doctor-badge svg { color: var(--primary-dark); width: 1.15rem; height: 1.15rem; flex: none; }
.doctor-media-frame {
  border-radius: 2rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-glow);
}
.doctor-media-frame img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }

/* ---------- Services ---------- */
.service-card {
  border-radius: 1.25rem; padding: 1.5rem;
  border: 1px solid rgba(227,236,245,.6);
  background: rgba(255,255,255,.7); backdrop-filter: blur(10px);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover {
  transform: translateY(-6px); border-color: rgba(56,163,245,.35);
  box-shadow: var(--shadow-soft);
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin: 1rem 0 .3rem; }
.service-card p { font-size: .875rem; margin: 0; }

/* ---------- Vaccination timeline ---------- */
.vaccine-section { background: linear-gradient(to bottom, rgba(56,163,245,.05), transparent); }
.timeline { position: relative; }
.timeline-line {
  position: absolute; left: 1rem; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary));
  display: none;
}
@media (min-width: 768px) { .timeline-line { left: 50%; display: block; transform: translateX(-1px); } }
.timeline-item { position: relative; display: grid; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .timeline-item { grid-template-columns: 1fr 1fr; column-gap: 3rem; } }
.timeline-card {
  border-radius: 1.25rem; padding: 1.25rem;
  margin-left: 2.5rem;
}
@media (min-width: 768px) { .timeline-card { margin-left: 0; } }
.timeline-item.right .timeline-card { grid-column: 2; }
@media (max-width: 767px) { .timeline-item.right .timeline-card { grid-column: 1; } }
.timeline-dot {
  position: absolute; left: 1rem; top: 1.25rem;
  width: 1rem; height: 1rem; border-radius: 999px;
  background: var(--primary); border: 4px solid #fff; box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .timeline-dot { left: 50%; transform: translateX(-50%); } }
.milestone-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--primary-dark); margin-bottom: .3rem; }
.milestone-age { font-size: 1.15rem; font-weight: 700; margin-bottom: .7rem; }
.chip {
  display: inline-block; padding: .3rem .75rem; border-radius: 999px;
  background: rgba(79,197,154,.18); color: var(--secondary-dark);
  font-size: .72rem; font-weight: 700; margin: 2px;
}

/* ---------- Why choose ---------- */
.why-card {
  border-radius: 1.5rem; padding: 1.75rem;
  background: linear-gradient(135deg, #ffffff, rgba(56,163,245,.06));
  box-shadow: var(--shadow-card);
}
.why-card h3 { font-size: 1.15rem; font-weight: 700; margin: 1rem 0 .35rem; }
.why-card p { margin: 0; font-size: .9rem; }

/* ---------- Appointment ---------- */
.appointment-section { background: linear-gradient(to bottom, transparent, rgba(79,197,154,.06)); }
.appointment-wrap { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .appointment-wrap { grid-template-columns: 1fr 2fr; } }
.appointment-info { padding: 1.75rem; border-radius: 1.5rem; }
.appointment-info h3 { font-size: 1.3rem; font-weight: 700; }
.info-row { display: flex; gap: .8rem; margin-top: 1rem; }
.info-row .icon-box { width: 2.4rem; height: 2.4rem; }
.info-row .icon-box svg { width: 1.15rem; height: 1.15rem; }
.info-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.info-value { font-weight: 600; margin-top: .1rem; }

.appt-form { padding: 1.75rem; border-radius: 1.5rem; display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .78rem; font-weight: 700; color: var(--fg); }
.field label .req { color: #e11d48; }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem;
  border-radius: .75rem; border: 1px solid var(--border);
  background: #fff; color: var(--fg); font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56,163,245,.18);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .field-row.two { grid-template-columns: 1fr 1fr; } }
.form-submit { margin-top: .5rem; }

/* Confirmation card */
.confirm-card { padding: 1.75rem; border-radius: 1.5rem; }
.confirm-head { text-align: center; margin-bottom: 1.25rem; }
.confirm-icon {
  width: 4rem; height: 4rem; margin: 0 auto 1rem;
  border-radius: 999px; display: grid; place-items: center;
  background: var(--gradient-mint); color: #fff; box-shadow: var(--shadow-glow);
  animation: pop .5s cubic-bezier(.22,1,.36,1);
}
.confirm-icon svg { width: 2rem; height: 2rem; }
.confirm-summary {
  border: 1px solid var(--border); background: rgba(255,255,255,.85);
  padding: 1.15rem; border-radius: 1rem; margin-bottom: 1rem;
}
.summary-grid { display: grid; gap: .7rem 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .summary-grid { grid-template-columns: 1fr 1fr; } }
.summary-grid dt { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.summary-grid dd { font-weight: 600; font-size: .9rem; margin: .15rem 0 0; }

.wa-preview {
  border-radius: 1rem; overflow: hidden;
  background: rgba(229,221,213,.4); border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.wa-head { display: flex; align-items: center; gap: .75rem; background: #075E54; color: #fff; padding: .75rem 1rem; }
.wa-avatar { width: 2.25rem; height: 2.25rem; border-radius: 999px; background: rgba(255,255,255,.2); display: grid; place-items: center; }
.wa-avatar svg { width: 1rem; height: 1rem; }
.wa-name { font-size: .9rem; font-weight: 600; line-height: 1.2; }
.wa-sub { font-size: .7rem; color: rgba(255,255,255,.7); }
.wa-body { padding: 1rem; }
.wa-bubble {
  margin-left: auto; max-width: 85%;
  background: #dcf8c6; border-radius: 1rem 1rem .25rem 1rem;
  padding: .75rem; box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.wa-bubble pre { margin: 0; white-space: pre-wrap; font: inherit; font-size: .82rem; color: #1f2937; }
.confirm-cta { display: grid; gap: .6rem; }
@media (min-width: 640px) { .confirm-cta { grid-template-columns: 2fr 1fr 1fr; } }

/* ---------- Reviews ---------- */
.review-card {
  text-align: center; padding: 2.5rem;
  border-radius: 1.75rem;
}
.review-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; padding: .5rem 1rem; border-radius: 999px;
  box-shadow: var(--shadow-soft); font-size: .85rem; font-weight: 600; margin-bottom: 1rem;
}
.review-badge svg { width: 1.15rem; height: 1.15rem; }
.review-rating { font-size: 3.5rem; font-weight: 800; margin: .25rem 0; }
.review-rating .stars { display: block; margin-top: .3rem; }
.review-rating .stars svg { width: 1.4rem; height: 1.4rem; }

/* ---------- Tips ---------- */
.tip {
  border-radius: 1.5rem; padding: 1.75rem;
  border: 1px solid rgba(255,255,255,.6);
  background: linear-gradient(135deg, rgba(56,163,245,.1), rgba(79,197,154,.06));
  transition: transform .3s;
}
.tip:hover { transform: translateY(-4px); }
.tip .icon-box { width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,.85); }
.tip .icon-box svg { width: 1.2rem; height: 1.2rem; color: var(--primary-dark); }
.tip h3 { font-size: 1.15rem; margin: .75rem 0 .3rem; }
.tip p { font-size: .88rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; display: grid; gap: .6rem; }
.faq-item { border-radius: 1rem; border: 1px solid var(--border); background: rgba(255,255,255,.75); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1rem 1.15rem; text-align: left; background: transparent; border: 0;
  font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--fg);
}
.faq-q svg { color: var(--primary-dark); transition: transform .25s; width: 1.15rem; height: 1.15rem; flex: none; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 1.15rem 1.15rem; font-size: .9rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery-section { background: linear-gradient(to bottom, rgba(56,163,245,.05), transparent); }
.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure { margin: 0; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-card); }
.gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
@media (max-width: 767px) { .gallery figure:first-child { grid-column: span 2; grid-row: auto; } }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.05); }

/* ---------- Contact / Map ---------- */
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info { padding: 1.75rem; border-radius: 1.5rem; }
.contact-info .info-row + .info-row { margin-top: 1rem; }
.contact-info .icon-box { width: 2.75rem; height: 2.75rem; color: #fff; background: var(--gradient-primary); }
.contact-info .info-row:nth-child(2) .icon-box { background: var(--gradient-mint); }
.contact-info .info-row:nth-child(3) .icon-box { background: var(--secondary); }
.contact-info .icon-box svg { width: 1.2rem; height: 1.2rem; color: #fff; }
.contact-cta { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: 1.25rem; }
.map-frame { border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.map-frame iframe { display: block; width: 100%; min-height: 400px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; overflow: hidden;
  padding: 4rem 0 1.5rem;
  background: linear-gradient(135deg, #0b1e3b, #0f2f4f);
  color: rgba(255,255,255,.85);
}
.site-footer .blob:first-child { background: var(--primary); left: -10%; top: 0; width: 300px; height: 300px; }
.site-footer .blob:last-child { background: var(--secondary); right: -8%; bottom: 0; width: 320px; height: 320px; opacity: .25; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .65rem; color: #fff; }
.footer-brand .brand-mark { background: rgba(255,255,255,.12); box-shadow: none; }
.footer-brand-name { font-size: 1.15rem; font-weight: 700; color: #fff; }
.footer p { color: rgba(255,255,255,.7); }
.footer-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-list a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-list a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: .75rem; align-items: center; justify-content: space-between;
  font-size: .75rem; color: rgba(255,255,255,.5);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ---------- Floating actions ---------- */
.fab-wa {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-glow); transition: transform .2s;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa::after {
  content: ''; position: absolute; inset: 0; border-radius: 999px;
  background: var(--wa); opacity: .35; animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite;
}
.fab-top {
  position: fixed; right: 1.25rem; bottom: 5.25rem; z-index: 50;
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: rgba(255,255,255,.9); color: var(--primary-dark);
  border: 1px solid var(--border); display: none; place-items: center;
  box-shadow: var(--shadow-card);
}
.fab-top.visible { display: grid; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@keyframes ping { 75%, 100% { transform: scale(1.8); opacity: 0; } }
@keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 6rem; transform: translateX(-50%) translateY(30px);
  background: #0f2f4f; color: #fff; padding: .75rem 1.25rem; border-radius: 999px;
  font-size: .875rem; box-shadow: var(--shadow-glow); z-index: 100;
  opacity: 0; transition: opacity .3s, transform .3s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: #b91c1c; }

/* Screen-reader only */
.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; }
