/* ==========================================================================
   Dr. Ankita's Dental & Aesthetic Wellness — Custom CSS
   Design system: Deep Teal / Champagne Gold / Warm Ivory
   ========================================================================== */

:root {
  /* Colors */
  --primary: #0F5C51;          /* deep teal */
  --primary-dark: #0A3F38;     /* darker teal for hover/depth */
  --primary-light: #16786A;
  --secondary: #9FC2AF;        /* soft sage / mint */
  --secondary-light: #E4EFE7;  /* pale mint tint for backgrounds */
  --accent: #C6A15B;           /* muted champagne gold */
  --accent-dark: #A8843E;
  --text-dark: #1C2422;        /* charcoal / near black */
  --text-muted: #5B6660;
  --bg-light: #FBF7EE;         /* warm ivory */
  --bg-warm: #F4EEE0;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --border-soft: rgba(15, 92, 81, 0.12);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  /* Shadow */
  --shadow-sm: 0 4px 16px rgba(28, 36, 34, 0.06);
  --shadow-md: 0 12px 32px rgba(28, 36, 34, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 92, 81, 0.16);

  /* Type */
  --font-heading: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --header-height: 84px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

p { color: var(--text-muted); }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

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

.container-xl-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

section { position: relative; }

.section-pad { padding: 88px 0; }
@media (max-width: 767.98px) {
  .section-pad { padding: 56px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary-light);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.section-heading {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 1.05rem;
}

.bg-mint { background: var(--secondary-light); }
.bg-warm { background: var(--bg-warm); }
.bg-teal { background: var(--primary); color: var(--white); }
.bg-teal .section-sub, .bg-teal p { color: rgba(255,255,255,0.82); }
.bg-teal h2, .bg-teal h3 { color: var(--white); }

/* Smile-arc signature motif: recurring soft arc used as divider / backdrop */
.smile-arc {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.arc-divider {
  width: 100%;
  height: 60px;
  display: block;
}



/* ==========================================================================
   Buttons
   ========================================================================== */
.primary-btn,
.secondary-btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  min-height: 48px;
  border: 2px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.primary-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.secondary-btn {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.secondary-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.bg-teal .secondary-btn { color: var(--white); border-color: rgba(255,255,255,0.5); }
.bg-teal .secondary-btn:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.whatsapp-btn {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.whatsapp-btn:hover { background: #1DA851; color: var(--white); transform: translateY(-2px); }

.text-link-cta {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.text-link-cta:hover { color: var(--accent-dark); }

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

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  transition: padding .25s ease;
}
.site-header.is-scrolled .header-inner { padding: 10px 0; }

/* =========================
   HEADER LOGO
========================= */

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo {
  width: auto;
  height: 64px;
  max-width: 240px;

  display: block;
  object-fit: contain;
}

/* Header height ko logo ke according balance karega */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 10px 0;

  transition: padding .25s ease;
}

.site-header.is-scrolled .header-inner {
  padding: 6px 0;
}

.site-header.is-scrolled .header-logo {
  height: 54px;
}


/* Tablet */
@media (max-width: 991.98px) {

  .header-logo {
    height: 56px;
    max-width: 210px;
  }

}


/* Mobile */
@media (max-width: 767.98px) {

  .header-inner {
    padding: 8px 0;
    gap: 12px;
  }

  .header-logo {
    height: 48px;
    max-width: 170px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .primary-btn {
    padding: 10px 16px;
    min-height: 44px;
    font-size: 0.82rem;
  }

}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { background: var(--secondary-light); color: var(--primary-dark); }
.main-nav a.active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.header-phone svg { color: var(--primary); flex-shrink: 0; }
.header-wa-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.header-wa-icon:hover { transform: scale(1.08); color: var(--white); }

.nav-toggle-btn {
  border: none;
  background: var(--secondary-light);
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}

/* Off-canvas mobile menu */
.offcanvas-clinic { max-width: 320px; background: var(--bg-light); }
.offcanvas-clinic .offcanvas-body a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-soft);
}
.offcanvas-clinic .offcanvas-body a:hover { color: var(--primary); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    padding: 56px 0 90px;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(251, 247, 238, 0.90) 0%,
            rgba(251, 247, 238, 0.75) 38%,
            rgba(251, 247, 238, 0.35) 65%,
            rgba(251, 247, 238, 0.08) 100%
        ),
        url("../images/dental/hero-bg.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.hero-headline {
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-headline .accent-word { color: var(--primary); }

.hero-lead {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-authority-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 575.98px) {
  .hero-authority-cards { grid-template-columns: repeat(2, 1fr); }
}

.expericence {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
}

.authority-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.authority-card .val {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  display: block;
  font-size: 0.92rem;
}

/* Hero visual placeholder (used until real photography supplied) */
.hero-visual {
  position: relative;
}
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 55%, var(--secondary) 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 26px);
}
.photo-frame .frame-label {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 20px 22px;
  background: linear-gradient(0deg, rgba(10,63,56,0.55), transparent);
  width: 100%;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}
.floating-badge .icon-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-top { top: -22px; left: -18px; }
.badge-bottom { bottom: -22px; right: -18px; }
@media (max-width: 575.98px) {
  .floating-badge { padding: 10px 14px; font-size: 0.76rem; }
  .badge-top { left: 4px; top: -16px; }
  .badge-bottom { right: 4px; bottom: -16px; }
}

/* ==========================================================================
   Lead form (shared)
   ========================================================================== */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid var(--border-soft);
}
.lead-form-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.lead-form-card .form-note { font-size: 0.88rem; margin-bottom: 20px; }

.lead-form .form-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.lead-form .form-control,
.lead-form .form-select {
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.96rem;
  min-height: 48px;
  background: var(--bg-light);
}
.lead-form .form-control:focus,
.lead-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,92,81,0.12);
  background: var(--white);
}
.lead-form .invalid-feedback { font-size: 0.8rem; }
.lead-form button[type="submit"] { width: 100%; margin-top: 6px; }

.form-success-msg {
  display: none;
  background: var(--secondary-light);
  border: 1px solid var(--secondary);
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  padding: 18px;
  font-weight: 600;
  text-align: center;
}
.form-success-msg.show { display: block; }
.form-success-msg svg { margin-bottom: 6px; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 30px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  flex: 1 1 190px;
}
.trust-item svg { color: var(--accent-dark); flex-shrink: 0; }

/* ==========================================================================
   Intent selector cards
   ========================================================================== */
.intent-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.intent-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}
.intent-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--secondary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.intent-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.intent-card p { font-size: 0.92rem; margin-bottom: 14px; }
.intent-card .explore-link { margin-top: auto; font-size: 0.88rem; }

/* ==========================================================================
   Treatment cards
   ========================================================================== */
.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.treatment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.treatment-card .tc-visual {
  aspect-ratio: 16 / 11;
  background: linear-gradient(150deg, var(--secondary-light), var(--bg-warm));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.treatment-card .tc-visual svg { width: 46px; height: 46px; transition: transform .3s ease; }
.treatment-card:hover .tc-visual svg { transform: scale(1.12); }
.treatment-card .tc-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.treatment-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.treatment-card p { font-size: 0.9rem; margin-bottom: 16px; }
.treatment-card .tc-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.treatment-card .tc-actions a.know-more { font-weight: 700; font-size: 0.85rem; }

/* Aesthetic section variant (rounded pill visuals, gold accent) */
.aesthetic-card .tc-visual { background: linear-gradient(150deg, #F3E7CF, var(--bg-warm)); color: var(--accent-dark); }

/* ==========================================================================
   Doctor authority section
   ========================================================================== */
.doctor-section { overflow: hidden; }
.doctor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .doctor-grid { grid-template-columns: 1fr; gap: 32px; }
}
.doctor-photo-frame {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  background: linear-gradient(165deg, var(--primary-dark), var(--primary) 60%, var(--secondary));
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex;
  align-items: flex-end;
}
.doctor-photo-frame .frame-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
}
.doctor-creds { list-style: none; padding: 0; margin: 22px 0 26px; }
.doctor-creds li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 600;
  font-size: 0.95rem;
}
.doctor-creds li:last-child { border-bottom: none; }
.doctor-creds svg { color: var(--accent-dark); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.trust-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  height: 100%;
  border: 1px solid var(--border-soft);
}
.trust-card .icon-wrap {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--bg-warm);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.trust-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.trust-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ==========================================================================
   Before / after gallery
   ========================================================================== */

/* Before / After Gallery */

.result-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: var(--white);
    cursor: pointer;

    transition: transform .25s ease, box-shadow .25s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}


/* SAME IMAGE SIZE */
.result-visual {
    position: relative;
    width: 100%;
    height: 230px;
    flex: 0 0 230px;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        var(--secondary-light),
        var(--bg-warm)
    );
}


/* IMAGE */
.result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transition: transform .4s ease;
}

.result-card:hover .result-image {
    transform: scale(1.05);
}


/* TAG */
.result-visual span.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;

    background: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;

    padding: 5px 11px;
    border-radius: 999px;
    color: var(--primary);
}


/* CAPTION */
.result-card .rc-caption {
    min-height: 58px;
    padding: 14px 16px;

    display: flex;
    align-items: center;

    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}


/* MOBILE */
@media (max-width: 575.98px) {

    .result-visual {
        height: 170px;
        flex-basis: 170px;
    }

    .result-card .rc-caption {
        min-height: 54px;
        padding: 12px;
        font-size: 0.82rem;
    }
}


.results-disclaimer {
  font-size: 0.85rem;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 24px;
  color: var(--text-muted);
}

/* Lightbox */
.clinic-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 19, 0.86);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.clinic-lightbox.open { display: flex; }
.clinic-lightbox-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  max-width: 640px;
  width: 100%;
  padding: 24px;
  position: relative;
}
.clinic-lightbox-close {
  position: absolute;
  top: -18px; right: -18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark);
}

/* ==========================================================================
   Journey steps
   ========================================================================== */
.journey-step { position: relative; padding-left: 4px; }
.journey-step .step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.journey-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.journey-step p { font-size: 0.9rem; }

/* ==========================================================================
   CTA panel
   ========================================================================== */
.cta-panel {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary) 70%);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-panel::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.18);
}
.cta-panel h2 { color: var(--white); }
.cta-panel p { color: rgba(255,255,255,0.85); }
.cta-panel .phone-big {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  height: 100%;
  border: 1px solid var(--border-soft);
}
.review-stars { color: var(--accent-dark); margin-bottom: 12px; font-size: 0.95rem; letter-spacing: 2px; }
.review-card p.review-text { color: var(--text-dark); font-size: 0.96rem; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  flex-shrink: 0;
}
.review-author .name { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }
.review-author .treat { font-size: 0.8rem; color: var(--text-muted); }

/* ==========================================================================
   Clinic gallery
   ========================================================================== */
.clinic-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.clinic-visual {
  aspect-ratio: 1/1;
  background: linear-gradient(150deg, var(--secondary-light), var(--bg-warm));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}

/* ==========================================================================
   Location
   ========================================================================== */
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.location-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-soft);
  height: 100%;
}
.location-info-card .addr-line { display: flex; gap: 12px; margin-bottom: 18px; }
.location-info-card svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.location-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section .accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-section .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
  padding: 18px 20px;
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--secondary-light);
  color: var(--primary-dark);
  box-shadow: none;
}
.faq-section .accordion-button:focus { box-shadow: 0 0 0 4px rgba(15,92,81,0.12); }
.faq-section .accordion-body { font-size: 0.93rem; color: var(--text-muted); padding: 4px 20px 20px; }

/* ==========================================================================
   Final conversion section
   ========================================================================== */
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 991.98px) { .final-cta-grid { grid-template-columns: 1fr; } }
.contact-quick-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.contact-quick-card .phone-line {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.78); padding: 64px 0 0; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--accent); }
.site-footer .brand-text small { color: rgba(255,255,255,0.55); }
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer .social-row { display: flex; gap: 10px; margin-top: 16px; }
.site-footer .social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.site-footer .social-row a:hover { background: var(--accent); color: var(--text-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-bottom a { margin-right: 16px; }

/* ==========================================================================
   Floating WhatsApp + Mobile action bar
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1040;
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: scale(1.08); color: var(--white); }
@media (min-width: 992px) { .floating-whatsapp { bottom: 28px; } }

.mobile-action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1035;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
}
@media (min-width: 992px) { .mobile-action-bar { display: none; } }
.mobile-action-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  min-height: 60px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--text-dark);
  border-right: 1px solid var(--border-soft);
}
.mobile-action-bar a:last-child { border-right: none; background: var(--primary); color: var(--white); }
.mobile-action-bar a svg { width: 20px; height: 20px; }

body.has-mobile-bar { padding-bottom: 66px; }
@media (min-width: 992px) { body.has-mobile-bar { padding-bottom: 0; } }

/* ==========================================================================
   Scroll reveal (lightweight)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Breadcrumb (inner pages)
   ========================================================================== */
.breadcrumb-bar { background: var(--bg-warm); padding: 16px 0; font-size: 0.85rem; }
.breadcrumb-bar a { color: var(--text-muted); font-weight: 600; }
.breadcrumb-bar span { color: var(--primary); font-weight: 700; }

/* Inner page hero (smaller) */
.page-hero {
  background: linear-gradient(180deg, var(--secondary-light), var(--bg-light));
  padding: 54px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 12px; }
.page-hero p { max-width: 600px; margin: 0 auto; }

/* Utility */
.text-primary-c { color: var(--primary) !important; }
.text-accent-c { color: var(--accent-dark) !important; }
.divider-soft { height: 1px; background: var(--border-soft); border: none; margin: 0; }
