/* =========================================================
   Vega Medical Center — Veneers Landing Page
   Brand colors extracted from vegamedicalcenter.ae
   ========================================================= */

:root {
  --color-primary: #2d2218;
  --color-primary-soft: #4a3a28;
  --color-accent: #c39f46;
  --color-accent-dark: #a8842f;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1ebd5a;
  --color-text: #5c554b;
  --color-text-muted: #8a8378;
  --color-bg: #f1f0ed;
  --color-bg-alt: #ffffff;
  --color-border: #e3ddd0;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(45, 34, 24, 0.08);
  --shadow-lg: 0 20px 50px rgba(45, 34, 24, 0.14);
  --max-width: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg-alt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

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

.text-accent { color: var(--color-accent-dark); }
.text-white { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

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

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

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
}
.announce-bar p { margin: 0; }
.announce-bar strong { color: var(--color-accent); }
#countdown { font-variant-numeric: tabular-nums; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(45,34,24,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}
.header-link .icon { width: 18px; height: 18px; }
.header-link--wa { color: var(--color-whatsapp-dark); }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 64px; background: linear-gradient(180deg, var(--color-bg) 0%, #fff 100%); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--color-accent); }

.hero-sub { font-size: 1.05rem; max-width: 52ch; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.checklist li {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-primary-soft);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background: var(--color-accent);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.rating-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-soft);
}
.stars { color: var(--color-accent-dark); letter-spacing: 1px; }

.hero-visual { position: relative; }

.offer-badge {
  position: absolute;
  top: -18px;
  right: 8px;
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(8deg);
}
.offer-badge-pct { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.offer-badge-txt { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; }

.img-placeholder {
  background: repeating-linear-gradient(45deg, #ece7dd, #ece7dd 12px, #f5f2ec 12px, #f5f2ec 24px);
  border: 2px dashed var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
}

.hero-img-placeholder { aspect-ratio: 4 / 5; width: 100%; }

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slide.is-active { opacity: 1; }

.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 85%;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-slider-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

/* ---------- Section shared ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--color-bg); }
.section-dark { background: var(--color-primary); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-sub { color: var(--color-text-muted); font-size: 1rem; }
.section-sub--dark { color: rgba(255, 255, 255, 0.7); }

.pill-badge {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary-soft);
  background: #fff;
}

.google-g { width: 32px; height: 32px; flex-shrink: 0; }
.google-g--sm { width: 20px; height: 20px; }

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.reviews-summary-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-summary-score {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary);
}
.reviews-summary-score-of { font-size: 1rem; font-weight: 600; color: var(--color-text-muted); }
.reviews-summary-count { font-size: 0.85rem; color: var(--color-text-muted); margin: 2px 0 0; }
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease;
}
.btn-google-reviews:hover { background: var(--color-primary-soft); }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 14px;
}
.step-card p { font-size: 0.88rem; color: var(--color-text-muted); margin: 0; }

/* ---------- Veneer types ---------- */
.veneer-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.veneer-type-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.veneer-type-card h3 { color: var(--color-accent); font-size: 1.1rem; margin-bottom: 18px; }
.veneer-type-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.veneer-type-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.4;
}
.check-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Reviews (slider) ---------- */
.reviews-slider-wrap {
  position: relative;
  padding: 0 52px;
}
.reviews-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.reviews-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-arrow:hover { background: var(--color-accent); color: #fff; }
.reviews-arrow--prev { left: 0; }
.reviews-arrow--next { right: 0; }
.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.review-card p { color: var(--color-primary-soft); }
.review-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author-name { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-primary); }
.review-author-type { display: block; font-size: 0.78rem; color: var(--color-text-muted); }

/* ---------- Video testimonials (slider) ---------- */
.video-slider-wrap { max-width: 980px; margin: 0 auto; }
.video-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.video-grid::-webkit-scrollbar { display: none; }
.video-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  aspect-ratio: 9 / 12;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-accent);
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
  cursor: pointer;
  padding: 0;
  box-shadow: var(--shadow-lg);
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-card:hover .video-play {
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  position: relative;
}
.video-slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.video-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-slider-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.25);
}
.video-slider-arrows {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
}
.video-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.video-arrow:hover { background: var(--color-accent-dark); }

/* ---------- Before / after cases (slider) ---------- */
.ba-slider-wrap {
  position: relative;
  padding: 0 52px;
}
.ba-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.ba-grid::-webkit-scrollbar { display: none; }

.ba-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ba-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  pointer-events: none;
}
.ba-caption {
  margin: 4px 0 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-primary-soft);
  text-align: center;
}

.ba-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-arrow:hover { background: var(--color-accent); color: #fff; }
.ba-arrow--prev { left: 0; }
.ba-arrow--next { right: 0; }

/* ---------- Case mini image carousels (More Patient Transformations) ---------- */
.case-carousel {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.case-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.case-slide.is-active { opacity: 1; }
.case-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 6px;
}
.case-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.case-carousel-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* ---------- Doctors ---------- */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.doctor-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.doctor-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.doctor-info { padding: 20px 22px 24px; }
.doctor-title { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 12px; }
.badge {
  display: inline-block;
  background: var(--color-bg);
  color: var(--color-primary-soft);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
}

/* ---------- Why Vega ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.why-card h3 { color: #fff; font-size: 0.95rem; margin: 0; font-family: var(--font-body); font-weight: 600; }

/* ---------- Clinic gallery (big single-image slider) ---------- */
.clinic-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.clinic-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.clinic-slide.is-active { opacity: 1; }

.clinic-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-primary);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clinic-arrow:hover { background: var(--color-accent); color: #fff; }
.clinic-arrow--prev { left: 16px; }
.clinic-arrow--next { right: 16px; }

.clinic-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.clinic-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.clinic-slider-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

/* ---------- Appointment form ---------- */
.form-container { max-width: 640px; }
.appointment-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-row { margin-bottom: 18px; }
.form-row label,
.form-radio-row legend {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-primary);
  background: var(--color-bg);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-radio-row { border: none; padding: 0; }
.radio-label { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; margin-right: 20px; font-size: 0.9rem; }
.form-trust { text-align: center; font-size: 0.82rem; color: var(--color-text-muted); margin: 16px 0 0; }

.form-success {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-primary); color: #d9d3c6; padding: 48px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.6fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; color: #b6afa0; }
.footer-contact p { margin: 0 0 10px; font-size: 0.88rem; }
.footer-contact a:hover { color: var(--color-accent); }
.footer-social { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; }
.footer-social a:hover { color: var(--color-accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 24px;
  font-size: 0.78rem;
  color: #948c7b;
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 20px rgba(45,34,24,0.1);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
}
.mobile-cta-bar a:nth-child(2) { color: var(--color-whatsapp-dark); }
.mobile-cta-bar a:nth-child(3) { color: var(--color-accent-dark); }
.mobile-cta-bar .icon { width: 20px; height: 20px; }

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(45,34,24,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal[hidden] {
  display: none;
}
.video-modal-inner {
  position: relative;
  background: #000;
  height: min(80vh, 700px);
  width: auto;
  max-width: 90vw;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  text-align: center;
}
#video-modal-body {
  width: 100%;
  height: 100%;
  position: relative;
}
#video-modal-body iframe,
#video-modal-body video { width: 100%; height: 100%; border: 0; display: block; }
#video-modal-body p { padding: 24px; }
.video-modal-fallback {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: underline;
}
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .veneer-types-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .review-card { flex-basis: calc((100% - 20px) / 2); }
  .reviews-slider-wrap { padding: 0 44px; }
  .video-card { flex-basis: calc((100% - 20px) / 2); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .clinic-slider { aspect-ratio: 4 / 3; max-height: 420px; }
  .doctors-grid { grid-template-columns: 1fr; max-width: 380px; }
  .ba-card { flex-basis: calc((100% - 24px) / 2); }
  .ba-slider-wrap { padding: 0 44px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-link span { display: none; }
  .header-actions { gap: 12px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .video-card { flex-basis: 78%; }
  .ba-card { flex-basis: 84%; }
  .ba-slider-wrap { padding: 0 40px; }
  .ba-arrow { width: 34px; height: 34px; font-size: 1.1rem; }
  .review-card { flex-basis: 84%; }
  .reviews-slider-wrap { padding: 0 40px; }
  .reviews-arrow { width: 34px; height: 34px; font-size: 1.1rem; }
  .checklist { grid-template-columns: 1fr; }
  .cta-row .btn { flex: 1 1 100%; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 62px; }
  .appointment-form { padding: 24px 18px; }
  .announce-bar { font-size: 0.75rem; }
}
