/*
 * ============================================================
 *  DevelopDent — Service Page Stylesheet
 *  Version: 1.0 · May 2026
 * ============================================================
 *
 *  BRAND SPEC (BrandGuide_DevelopDent.pdf)
 *  Font:    Poppins — Semi Bold 600 (headings) / Light 300 (body)
 *  Colors:  #00522D  green (primary)
 *           #323232  dark (ink / body text)
 *           #D4DAD1  mid grey-green (rules, borders, tints)
 *           #EEEEED  off-white (warm background panels)
 *
 *  GOOGLE FONTS — paste into <head> before this stylesheet:
 *
 *    <link rel="preconnect" href="https://fonts.googleapis.com" />
 *    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
 *    <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap" rel="stylesheet" />
 *
 * ============================================================
 *
 *  PAGE STRUCTURE — sections used on each service page:
 *
 *    1.  .hero                 — page title, subtitle, lead text, CTA
 *                                Includes .hero-card sidebar (desktop only)
 *    2.  .section              — generic content section (white bg)
 *    3.  .section.section--tint  — alternating tinted section (#f4f5f3)
 *    4.  .section.section--warm  — warm off-white section (#EEEEED)
 *    5.  .steps / .step        — numbered process steps (ghost numeral style)
 *    6.  .why-list / .why-item — two-column editorial "why" list
 *    7.  .related-grid         — 3-column linked cards to related services
 *    8.  .faq-list / .faq-item — two-column Q&A list
 *    9.  .location             — location panel (warm bg, two-column)
 *   10.  .booking              — full-width green CTA section
 *
 *  STANDARD PAGE TEMPLATE (HTML skeleton):
 *
 *    <section class="hero"> ... </section>
 *    <section class="section section--tint section--bordered"> ... </section>
 *    <section class="section"> ... </section>
 *    <section class="section section--warm section--bordered"> ... </section>
 *    <section class="section"> ... </section>
 *    <section class="section section--tint section--bordered"> ... </section>
 *    <section class="section"> ... </section>
 *    <section class="location"> ... </section>
 *    <section class="booking"> ... </section>
 *
 *  SECTION ANATOMY:
 *    Every .section contains:
 *      <div class="wrap">
 *        <span class="label">Section Name</span>
 *        <h2>Heading <em>in light green</em></h2>
 *        <hr class="section-rule" />
 *        ... content ...
 *      </div>
 *
 *  LINK FORMAT (standalone static site on Hostinger Web Hosting):
 *  Internal links use root-relative, extensionless form.
 *  No target="_top" — that was a Zyro/Website-Builder iframe
 *  workaround and has been stripped from all pages in Phase 1.
 *
 *  CORRECT:   <a href="/dental-services-makati">Services</a>
 *  WRONG:     <a target="_top" href="https://www.developdent.com/dental-services-makati">
 *
 *  External links always use:
 *    target="_blank" rel="noopener noreferrer"
 *
 *    - Every page links up to its group page and /dental-services-makati
 *    - Every page links to /dentist-appointment-makati (CTA)
 *    - Clinical cross-links mandatory (see linking doc)
 *    - Second opinion link on high-stakes procedure pages
 *    - Location section links to /dentist-legazpi-village-makati
 *
 * ============================================================
 */


/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


/* ── Brand tokens ───────────────────────────────────────────── */
:root {
  /* Brand colours */
  --green:        #00522D;
  --green-dark:   #003d20;
  --green-pale:   #D4DAD1;
  --green-rule:   #c8d4cc;
  --ink:          #323232;
  --body:         #323232;
  --muted:        #5a6660;  /* darkened from #6b7b70 (4.0:1 fail AA) to 5.8:1 pass AA */
  --rule:         #D4DAD1;
  --bg:           #ffffff;
  --bg-warm:      #EEEEED;
  --bg-alt:       #f4f5f3;

  /* Font stack — all Poppins */
  --display:      'Poppins', system-ui, sans-serif;
  --sans:         'Poppins', system-ui, sans-serif;
  --body-font:    'Poppins', system-ui, sans-serif;
}


/* ── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  font-weight: 300;           /* Poppins Light — body text */
  color: var(--body);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}


/* ── Wrappers ───────────────────────────────────────────────── */
.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap--wide {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
}


/* ── Global links ───────────────────────────────────────────── */
a { color: var(--green); }

.body-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}


/* ── Utility elements ───────────────────────────────────────── */

/* Section eyebrow label — e.g. "Overview", "The Process" */
.label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
}

/* Thin green rule under section H2 */
.section-rule {
  width: 32px;
  height: 1px;
  background: var(--green);
  border: none;
  margin-bottom: 32px;
}


/* ════════════════════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════════════════════
   Two-column layout: headline/lead left, summary card right.
   Card is hidden on mobile.

   HTML pattern:
     <section class="hero">
       <div class="hero-inner">
         <div>
           <nav class="hero-breadcrumb">
             <a target="_top" href="/dental-services-makati">Services</a>
             <span>›</span>
             <a target="_top" href="/[group-page]">[Group Name]</a>
             <span>›</span>
             [Procedure Name]
           </nav>
           <h1>[Procedure] <em>[keyword]</em></h1>
           <p class="hero-subtitle">[Subtitle · Location]</p>
           <p class="hero-lead">[One paragraph lead text]</p>
           <a target="_top" href="/dentist-appointment-makati" class="btn-primary">Book a Consultation</a>
         </div>
         <div class="hero-card">
           <p class="hero-card-title">What This Page Covers</p>
           <div class="hero-card-item"><span class="hero-card-dot"></span>[Item]</div>
           ...
         </div>
       </div>
     </section>
   ════════════════════════════════════════════════════════════ */

.hero {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule);
  padding: 80px 32px 72px;
  position: relative;
  overflow: hidden;
}

/* Ghost decorative mark — change content per page if desired */
.hero::before {
  content: "✦";
  font-family: var(--display);
  font-size: 320px;
  color: var(--green);
  opacity: 0.04;
  position: absolute;
  right: -40px;
  top: -60px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Default: single column with no row-gap (so breadcrumb / h1 / subtitle /
   lead stack on their own margins, not pushed 64px apart by grid). */
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  position: relative;
}

/* When a hero-card is present (individual procedure pages), split into a
   1fr + 340px two-column grid with a 64px column gap and top-aligned
   content so the card stays anchored to the h1. */
.hero-inner:has(.hero-card) {
  grid-template-columns: 1fr 340px;
  gap: 64px;
}

.hero-breadcrumb {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-breadcrumb a { color: var(--muted); text-decoration: none; }
.hero-breadcrumb a:hover { color: var(--green); }
.hero-breadcrumb span { opacity: 0.4; }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;           /* Poppins Semi Bold */
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

/* em inside h1 = lighter green contrast word */
.hero h1 em {
  font-style: normal;
  font-weight: 300;           /* Poppins Light */
  color: var(--green);
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-lead {
  font-size: 17px;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 520px;
}

/* Summary card — desktop sidebar */
.hero-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 2px solid var(--green);
  padding: 28px 26px;
  align-self: start;
}

.hero-card-title {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero-card-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--body);
}
.hero-card-item:last-child { border-bottom: none; }

.hero-card-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}


/* ════════════════════════════════════════════════════════════
   2. GENERIC SECTION
   ════════════════════════════════════════════════════════════
   Modifiers: .section--tint (light grey), .section--warm (off-white)
   Add .section--bordered for top/bottom rules.
   ════════════════════════════════════════════════════════════ */

.section { padding: 88px 32px; }
.section--tint  { background: var(--bg-alt); }
.section--warm  { background: var(--bg-warm); }
.section--bordered {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

/* em inside section h2 = light green contrast word */
.section h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--green);
}

.section p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 680px;
}
.section p:last-child { margin-bottom: 0; }


/* ════════════════════════════════════════════════════════════
   3. BUTTONS
   ════════════════════════════════════════════════════════════
   .btn-primary     — green fill, white text (default CTA)
   .btn-secondary   — green outline (secondary action)
   .btn-white       — white fill, green text (on green bg)
   .btn-ghost-white — white outline (on green bg, secondary)
   ════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--green-dark); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--green-rule);
  color: var(--green);
  text-decoration: none;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: var(--green-pale); border-color: var(--green); }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--green);
  text-decoration: none;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background 0.2s;
}
.btn-white:hover { background: #e8f4ed; }

.btn-ghost-white {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-white:hover { border-color: #fff; color: #fff; }


/* ════════════════════════════════════════════════════════════
   4. CANDIDACY GRID
   ════════════════════════════════════════════════════════════
   Use for "who is this for" / "when is this recommended" sections.

   HTML pattern:
     <div class="candidate-grid">
       <div class="candidate-cell">Indication one</div>
       <div class="candidate-cell">Indication two</div>
       ...
     </div>
     <div class="candidate-aside">
       <strong>Note heading</strong>
       Note body text.
     </div>
   ════════════════════════════════════════════════════════════ */

.candidate-intro { max-width: 680px; margin-bottom: 40px; }

.candidate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 24px;
}

.candidate-cell {
  background: #fff;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.candidate-cell::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Anchor variant: same cell visual, but the whole cell is clickable.
   Used when a candidate item maps cleanly to a procedure page. */
a.candidate-cell {
  color: var(--body);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
a.candidate-cell:hover {
  background: var(--bg-warm);
  color: var(--green);
}
a.candidate-cell:hover::before {
  background: var(--green-dark);
}

.candidate-aside {
  border-left: 2px solid var(--green);
  padding: 20px 24px;
  background: var(--green-pale);
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.8;
  max-width: 680px;
}

.candidate-aside strong {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}


/* ════════════════════════════════════════════════════════════
   5. PROCESS STEPS
   ════════════════════════════════════════════════════════════
   Ghost large numeral left, content right.
   Vertical connector line between steps.

   HTML pattern:
     <div class="steps">
       <div class="step">
         <div class="step-num">1</div>
         <div class="step-content">
           <h3>Step Title</h3>
           <p>Step description.</p>
         </div>
       </div>
       ...
     </div>
   ════════════════════════════════════════════════════════════ */

.steps { margin-top: 48px; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  padding-bottom: 48px;
  position: relative;
}

/* Vertical connector between steps */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 64px;
  bottom: 0;
  width: 1px;
  background: var(--rule);
}

.step-num {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 300;
  color: var(--green);
  opacity: 0.22;
  line-height: 1;
  text-align: center;
  padding-top: 4px;
  letter-spacing: -1px;
}

.step-content {
  padding-top: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.step:last-child .step-content { border-bottom: none; }

.step-content h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.85;
  margin: 0;
  max-width: 580px;
}

.step-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}


/* ════════════════════════════════════════════════════════════
   6. WHY LIST (editorial two-column)
   ════════════════════════════════════════════════════════════
   Used for "Why DevelopDent" sections.
   Heading left, body right, full-width ruled rows.

   HTML pattern:
     <div class="why-list">
       <div class="why-item">
         <div class="why-item-heading">Heading text</div>
         <div class="why-item-body">Body explanation.</div>
       </div>
       ...
     </div>
   ════════════════════════════════════════════════════════════ */

.why-list { margin-top: 48px; }

.why-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.why-item:last-child { border-bottom: 1px solid var(--rule); }

.why-item-heading {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.1px;
}

.why-item-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.85;
}


/* ════════════════════════════════════════════════════════════
   7. RELATED SERVICES GRID
   ════════════════════════════════════════════════════════════
   3-column card grid linking to related procedure pages.
   Arrow appears on hover.

   HTML pattern:
     <div class="related-grid">
       <a target="_top" href="/[slug]" class="related-card">
         <span class="related-tag">Category</span>
         <span class="related-title">Procedure Name</span>
         <span class="related-desc">One-line clinical reason.</span>
       </a>
       ...
     </div>
   ════════════════════════════════════════════════════════════ */

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.related-card {
  display: block;
  padding: 24px 22px;
  border: 1px solid var(--rule);
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.related-card::after {
  content: "→";
  font-family: var(--sans);
  font-size: 14px;
  color: var(--green);
  opacity: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: opacity 0.2s;
}

.related-card:hover { border-color: var(--green); transform: translateY(-2px); }
.related-card:hover::after { opacity: 1; }

.related-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 10px;
}

.related-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  display: block;
  margin-bottom: 10px;
}

.related-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}


/* ════════════════════════════════════════════════════════════
   8. FAQ
   ════════════════════════════════════════════════════════════
   Two-column: question left (Semi Bold), answer right (Light).

   HTML pattern:
     <div class="faq-list">
       <div class="faq-item">
         <p class="faq-q">Question text?</p>
         <p class="faq-a">Answer text.</p>
       </div>
       ...
     </div>
   ════════════════════════════════════════════════════════════ */

.faq-list { margin-top: 48px; }

.faq-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }

.faq-q {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;           /* Semi Bold — visually heavier than Light answers */
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.1px;
  padding-right: 16px;
}

.faq-a {
  font-size: 15px;
  font-weight: 300;           /* Light */
  color: var(--body);
  line-height: 1.85;
}

.faq-a a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}


/* ════════════════════════════════════════════════════════════
   8b. FAQ — ACCORDION VARIANT
   ────────────────────────────────────────────────────────────
   Native <details>/<summary> accordion. Single-column rows that
   expand on click — visually and interactively distinct from
   the 2-column .faq-list rows (used on older pages) and from
   .why-list. Use this variant on new pages so the FAQ section
   reads as its own beat, not another heading+body grid.

   HTML pattern:
     <div class="faq-accordion">
       <details>
         <summary>Question text?</summary>
         <div class="faq-a">Answer body, may contain <a>links</a>.</div>
       </details>
       ...
     </div>
   ════════════════════════════════════════════════════════════ */

.faq-accordion { margin-top: 40px; }

.faq-accordion details {
  border-top: 1px solid var(--rule);
}
.faq-accordion details:last-child {
  border-bottom: 1px solid var(--rule);
}

.faq-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 56px 26px 4px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.1px;
  position: relative;
  transition: color 0.15s ease;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::marker { content: ''; }

.faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--green);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-accordion details[open] summary::after {
  content: "−";
}
.faq-accordion summary:hover { color: var(--green); }
.faq-accordion summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-accordion .faq-a {
  padding: 0 56px 28px 4px;
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.85;
  max-width: 720px;
}
.faq-accordion .faq-a a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}


/* ════════════════════════════════════════════════════════════
   9. LOCATION
   ════════════════════════════════════════════════════════════
   Warm background, two-column: intro left, address details right.
   Always links to /dentist-legazpi-village-makati.

   HTML pattern:
     <section class="location">
       <div class="location-inner">
         <div>
           <h2>Legazpi Village, Makati</h2>
           <p>Clinic description.</p>
           <a target="_top" href="/dentist-legazpi-village-makati">Directions and getting here →</a>
         </div>
         <div>
           <div class="location-detail">
             <span class="detail-label">Address</span>
             <p class="detail-value">...</p>
           </div>
           <div class="location-detail">
             <span class="detail-label">Nearest Landmarks</span>
             <p class="detail-value">...</p>
           </div>
         </div>
       </div>
     </section>
   ════════════════════════════════════════════════════════════ */

.location {
  padding: 72px 32px;
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
}

.location-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location h2 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.location p {
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.location a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
}
.location a:hover { text-decoration: underline; }

.location-detail { margin-bottom: 24px; }
.location-detail:last-child { margin-bottom: 0; }

.detail-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}

.detail-value {
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.7;
}


/* ════════════════════════════════════════════════════════════
   10. BOOKING CTA
   ════════════════════════════════════════════════════════════
   Full-width green section. Ghost arrow watermark decorative.
   Primary CTA: .btn-white → /dentist-appointment-makati
   Secondary:   .btn-ghost-white → parent group page

   HTML pattern:
     <section class="booking">
       <div class="booking-inner">
         <span class="label">Book a Consultation</span>
         <h2>Heading <em>light contrast</em></h2>
         <p>Lead text.</p>
         <div class="booking-actions">
           <a target="_top" href="/dentist-appointment-makati" class="btn-white">Book an Appointment</a>
           <a target="_top" href="/[group-page]" class="btn-ghost-white">Back to [Group]</a>
         </div>
       </div>
     </section>
   ════════════════════════════════════════════════════════════ */

.booking {
  padding: 88px 32px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: "→";
  font-family: var(--display);
  font-size: 380px;
  color: #fff;
  opacity: 0.04;
  position: absolute;
  right: -20px;
  bottom: -80px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.booking-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.booking .label { color: rgba(255,255,255,0.55); }

.booking h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin: 0 auto 18px;
  max-width: 560px;
  text-wrap: balance;
}

/* em inside booking h2 = lighter opacity contrast */
.booking h2 em {
  font-style: normal;
  font-weight: 300;
  opacity: 0.8;
}

.booking p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 40px;
  text-wrap: pretty;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   Breakpoint: 720px
   ════════════════════════════════════════════════════════════ */

@media (max-width: 720px) {
  .hero            { padding: 56px 20px 52px; }
  .hero-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hero-card       { display: none; }           /* sidebar hidden on mobile */

  .section         { padding: 60px 20px; }
  .booking         { padding: 60px 20px; }
  .location        { padding: 56px 20px; }

  .wrap,
  .wrap--wide      { padding: 0 20px; }

  .candidate-grid  { grid-template-columns: 1fr; }

  .step            { grid-template-columns: 48px 1fr; gap: 0 16px; }
  .step-num        { font-size: 48px; }
  .step:not(:last-child)::after { left: 22px; }

  .why-item        { grid-template-columns: 1fr; gap: 12px; }

  .related-grid    { grid-template-columns: 1fr; }

  .faq-item        { grid-template-columns: 1fr; gap: 12px; }

  .location-inner  { grid-template-columns: 1fr; gap: 40px; }
}
