/* ==========================================================================
   M | O | C Cancer Care & Research Centre -- Landing Page Stylesheet
   Lightweight, dependency-free recreation of the reference page's look
   and feel. Edit tokens in :root to re-theme every page at once.
   ========================================================================== */

:root {
  /* Verified via DevTools computed styles against the live reference page. */
  --color-primary: #046bd2;
  --color-primary-dark: #045cb4;
  --color-accent: #fccf0a;
  --color-accent-dark: #815d00;
  --color-heading: #000000;       /* section H2/H3 computed color: rgb(0,0,0) */
  --color-text: #334155;          /* body/paragraph computed color: rgb(51,65,85) */
  --color-btn-dark-text: #282828; /* text on yellow buttons: rgb(40,40,40) */
  --color-white: #ffffff;
  --color-bg-light: #eff4f9;      /* section bg computed: rgb(239,244,249) */
  --color-border: #c3d3e2;        /* icon-circle border computed: rgb(195,211,226) */
  --color-border-soft: #d1d5db;

  /* The live site forces this system-font stack site-wide via !important
     (astra-child.css overrides the Poppins/Lato Elementor defaults) --
     confirmed with getComputedStyle(), so no webfont download needed. */
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-body: var(--font-heading);

  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-btn: 8px;   /* live form submit button computed radius: 5px */
  --radius-pill: 50px; /* live header CTA / badge pill computed radius */
  --shadow-card: 0 0 20px rgba(0, 0, 0, 0.1); /* matches live usp-card & icon-circle shadow */
  --shadow-card-hover: 0 10px 30px rgba(17, 17, 17, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* belt-and-suspenders: no accidental horizontal scroll on mobile */
}

/* Long unbroken strings (e.g. comma-joined addresses with no spaces) must
   wrap instead of forcing horizontal overflow on narrow screens. */
p, h1, h2, h3, h4, li, span, a { overflow-wrap: break-word; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: 700;
}

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

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--light { background: var(--color-bg-light); }

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(4, 107, 210, 0.08);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-heading { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-heading h2 { font-size: clamp(28px, 3.6vw, 50px); margin-bottom: 12px; } /* live computed: 50px/700/black */
.section-heading p { font-size: 17px; color: var(--color-text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 30px;
  border-radius: var(--radius-btn);
  font-weight: 500;
  font-size: 16px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--color-accent); color: var(--color-btn-dark-text); box-shadow: var(--shadow-card); }
.btn--primary:hover { background: #f0c300; box-shadow: var(--shadow-card-hover); }
.btn--outline { background: transparent; border-color: var(--color-white); color: var(--color-white); }
.btn--outline:hover { background: var(--color-white); color: var(--color-primary); }
.btn--block { width: 100%; }
.btn--phone { background: var(--color-primary); color: var(--color-white); }
.btn--phone:hover { background: var(--color-primary-dark); }

/* White pill button -- matches the live header's "Book An Appointment" CTA
   (computed: bg #fff, text primary blue, radius 50px, 18px 30px padding). */
.btn--pill {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  padding: 16px 28px;
  font-weight: 500;
}
.btn--pill:hover { background: var(--color-accent); color: var(--color-btn-dark-text); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-primary);
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.16);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* top/bottom only -- keep the .container left/right padding (using a
     `padding` shorthand here would zero it and push content to the edge). */
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-header__logo img { height: 38px; width: auto; max-width: 100%; }
.site-header__logo { flex-shrink: 1; min-width: 0; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav__list a {
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.site-nav__list a:hover { color: var(--color-accent); }
.site-header__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--color-white);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Collapse to the hamburger menu well before nav items would start
   wrapping -- at in-between widths (~900-1100px) five nav items + logo +
   button no longer fit on one line, so switch early instead of letting
   it get cramped. */
@media (max-width: 1100px) {
  .site-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); background: var(--color-white); box-shadow: -8px 0 24px rgba(0,0,0,0.12); transform: translateX(100%); transition: transform 0.25s ease; z-index: 600; padding: 90px 28px 28px; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list { flex-direction: column; align-items: flex-start; gap: 22px; }
  .site-nav__list a { color: var(--color-heading); white-space: normal; }
  .site-nav__list a:hover { color: var(--color-primary); }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .site-header__logo img { height: 30px; }
  .site-header__actions { gap: 8px; }
  .site-header__actions > .btn--pill { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--color-white);
  /* Photo as the base layer; the overlay below is SEMI-transparent so the
     image shows through (an opaque gradient here would hide it). */
  background: #06305f url("../img/hero-bg.jpg") center right / cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,40,80,0.92) 0%, rgba(4,55,100,0.78) 42%, rgba(4,55,100,0.35) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  /* top/bottom only -- preserve the .container left/right padding. */
  padding-top: 64px;
  padding-bottom: 56px;
}
.hero__badge {
  /* Matches live: white pill, blue text, no icon -- computed radius 30px,
     padding 5px 20px, font-size 16px / weight 400. */
  display: inline-flex;
  align-items: center;
  background: var(--color-white);
  color: var(--color-primary);
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 18px;
}
.hero h1 { color: var(--color-white); font-size: clamp(34px, 4.6vw, 65px); line-height: 1.2; margin-bottom: 16px; }
.hero__lead { font-size: 18px; color: rgba(255,255,255,0.9); max-width: 520px; margin-bottom: 30px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat h3 { color: var(--color-white); font-size: 40px; font-weight: 700; line-height: 1.1; margin-bottom: 4px; } /* live computed: 40px/700 */
/* The animated counter is a <span> inside the h3 -- must inherit the h3
   size, otherwise the generic label-span rule below shrinks the number. */
.hero__stat h3 span { font-size: inherit; font-weight: inherit; color: inherit; }
.hero__stat > span { font-size: 15px; color: rgba(255,255,255,0.88); }

.hero__network { margin-top: 40px; max-width: 620px; }
.hero__network h2 { color: var(--color-white); font-size: 26px; margin-bottom: 10px; }
.hero__network-list { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.92); line-height: 1.8; }
.hero__network-list span { color: var(--color-accent); margin: 0 4px; }

.lead-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card-hover);
  color: var(--color-text);
}
.lead-card h3 { font-size: 22px; margin-bottom: 6px; }
.lead-card p { font-size: 14px; color: var(--color-text); margin-bottom: 20px; }
.form-field { margin-bottom: 14px; }
.form-field input, .form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: var(--color-white);
  color: var(--color-heading);
}
.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-note { font-size: 12px; color: #64748b; margin-top: 12px; text-align: center; }
.form-success, .form-error {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 14px;
}
.form-success { background: #e6f7ec; color: #146c2e; }
.form-error { background: #fdeaea; color: #a3231f; }
.form-success.is-visible, .form-error.is-visible { display: block; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; }
}

/* ---------- Why Choose Us ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp-card {
  /* live computed: white bg, radius 20px, shadow 0 0 20px rgba(0,0,0,.1), no border */
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.usp-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.icon-circle {
  /* live computed: 90x90, solid primary-blue bg, 6.67px solid border-grey border,
     same 0 0 20px rgba(0,0,0,.1) shadow, white icon */
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: 7px solid var(--color-border);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.icon-circle svg { width: 38px; height: 38px; }
.usp-card h3 { font-size: 24px; font-weight: 600; color: var(--color-heading); margin-bottom: 8px; } /* live computed: 24px/600/black */
.usp-card p { font-size: 14px; }

@media (max-width: 780px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ---------- Services / Mid CTA banner ---------- */
.mid-cta {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-cta h2 { color: var(--color-white); font-size: 28px; margin-bottom: 8px; }
.mid-cta p { color: rgba(255,255,255,0.9); font-size: 16px; }
.mid-cta__text { max-width: 640px; }

/* ---------- Doctors ----------
   Matches reference: photo sits on a blue rounded square (15px radius),
   a short blue divider line below it, then centered name, stacked
   qualifications (one per line) and a "Speciality: ..." line. No card
   border/shadow -- the cards sit directly on the light section bg. */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.doctor-card {
  background: transparent;
  text-align: center;
  transition: transform 0.2s ease;
}
.doctor-card:hover { transform: translateY(-6px); }
.doctor-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-primary);
  border-radius: 15px;
}
.doctor-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.doctor-card__body { padding: 20px 12px 0; }
.doctor-card__divider { display: block; width: 40px; height: 4px; border-radius: 2px; background: var(--color-primary); margin: 0 auto 16px; }
.doctor-card__body h3 { font-size: 22px; font-weight: 700; color: var(--color-heading); margin-bottom: 12px; }
.doctor-card__quals { margin-bottom: 12px; }
.doctor-card__quals span { display: block; font-size: 15px; color: var(--color-text); line-height: 1.5; }
.doctor-card__speciality { font-size: 16px; font-weight: 400; color: var(--color-heading); }

/* ---------- Cancer types ----------
   Matches reference: white cards on the light section bg, soft shadow (no
   border), each with its own navy illustration icon. */
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.type-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-heading);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.type-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.type-chip img { width: 46px; height: 46px; flex-shrink: 0; object-fit: contain; }

@media (max-width: 980px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .types-grid { grid-template-columns: 1fr; } }

/* ---------- Services carousel ----------
   Matches reference: white cards (15px radius, 0 0 20px rgba(0,0,0,.1)
   shadow, 30px padding), image on top (210px tall, 15px radius, cover),
   h3 24px/600/black, p 17px/rgb(40,40,40). 4-up on desktop. */
.services-slider { position: relative; overflow: hidden; }
.services-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.service-card {
  flex: 0 0 calc(25% - 18px);
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 30px;
  text-align: center;
}
.service-card__photo { border-radius: 15px; overflow: hidden; margin-bottom: 20px; }
.service-card__photo img { width: 100%; height: 210px; object-fit: cover; display: block; }
.service-card h3 { font-size: 22px; font-weight: 600; color: var(--color-heading); margin-bottom: 12px; line-height: 1.3; }
.service-card p { font-size: 16px; color: var(--color-btn-dark-text); line-height: 1.6; }

@media (max-width: 1200px) { .service-card { flex: 0 0 calc(33.333% - 16px); } }
@media (max-width: 980px)  { .service-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 620px)  { .service-card { flex: 0 0 100%; } }

/* ---------- Testimonials ---------- */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.testimonial-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.testimonial-card__stars { color: var(--color-accent); display: flex; gap: 3px; }
.testimonial-card__stars svg { width: 18px; height: 18px; }
.testimonial-card__google { width: 22px; height: 22px; }
.testimonial-card p { font-size: 14px; color: var(--color-text); line-height: 1.6; margin-bottom: 18px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 17px; flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; color: var(--color-heading); font-size: 15px; }

/* ---------- Patient Stories (videos) ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-dark);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 10;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.video-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card__play {
  position: absolute; inset: 0; margin: auto;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(4,107,210,0.92);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.video-card__play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 980px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }
.slider-controls { display: flex; justify-content: center; gap: 14px; margin-top: 28px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.slider-btn:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.slider-btn svg { width: 18px; height: 18px; }

@media (max-width: 980px) { .testimonial-card { flex: 0 0 calc(50% - 11px); } }
@media (max-width: 620px) { .testimonial-card { flex: 0 0 100%; } }

/* ---------- Explore Our Centres carousel ---------- */
.centres-slider { position: relative; overflow: hidden; }
.centres-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.centre-slide {
  flex: 0 0 calc(25% - 18px);
  text-align: center;
}
.centre-slide__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
  border: 3px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.centre-slide.is-current .centre-slide__photo { border-color: var(--color-primary); }
.centre-slide:hover .centre-slide__photo { transform: translateY(-4px); }
.centre-slide__photo img { width: 100%; height: 230px; object-fit: cover; display: block; }
.centre-slide h3 { font-size: 19px; font-weight: 700; color: var(--color-heading); }

@media (max-width: 1200px) { .centre-slide { flex: 0 0 calc(33.333% - 16px); } }
@media (max-width: 900px)  { .centre-slide { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 560px)  { .centre-slide { flex: 0 0 100%; } }

/* ---------- Visit Us (blue address list + map) ---------- */
.visit-us { background: var(--color-primary); color: #fff; padding: 72px 0; }
.visit-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.visit-us__list, .visit-us__map { min-width: 0; } /* allow grid cols to shrink below content min-width */
.centre-address__body { min-width: 0; }
.centre-address__body p { overflow-wrap: anywhere; }
.visit-us h2 { color: #fff; font-size: 34px; margin-bottom: 8px; }
.visit-us__sub { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 15px; }
.centre-address-list { display: flex; flex-direction: column; gap: 22px; max-height: 620px; overflow-y: auto; padding-right: 8px; }
.centre-address { display: flex; gap: 16px; }
.centre-address__pin {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
}
.centre-address__pin svg { width: 22px; height: 22px; color: #fff; }
.centre-address__body h3 { color: #fff; font-size: 18px; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.centre-address__body p { color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.55; }
.centre-address__tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--color-accent); color: var(--color-btn-dark-text);
  padding: 3px 10px; border-radius: 999px;
}
.centre-address.is-current .centre-address__pin { background: var(--color-accent); }
.centre-address.is-current .centre-address__pin svg { color: var(--color-btn-dark-text); }
.visit-us__map-frame { background: #fff; border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-card); }
.visit-us__map-frame img { width: 100%; height: auto; border-radius: var(--radius-md); display: block; }

@media (max-width: 860px) { .visit-us__inner { grid-template-columns: 1fr; } .centre-address-list { max-height: none; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-heading);
  width: 100%;
  text-align: left;
  border: none;
}
.faq-item__icon { flex-shrink: 0; width: 22px; height: 22px; transition: transform 0.2s ease; color: var(--color-primary); }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: var(--color-bg-light);
}
.faq-item__answer p { padding: 0 22px 20px; font-size: 14.5px; color: var(--color-text); }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  color: var(--color-white);
  background: #0b1a2b url("../img/hero-bg.jpg") center/cover no-repeat;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,15,26,0.92) 0%, rgba(6,15,26,0.72) 45%, rgba(6,15,26,0.25) 100%);
}
.final-cta__inner { position: relative; z-index: 1; padding: 90px 20px; }
.final-cta__content { max-width: 620px; }
.final-cta h2 { color: var(--color-white); font-size: clamp(30px, 3.4vw, 46px); line-height: 1.15; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.9); margin-bottom: 26px; font-size: 17px; }
.final-cta__badges { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.final-cta__badge { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; color: #fff; }
.final-cta__badge svg { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; }
.final-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.final-cta__actions .btn--phone svg { width: 18px; height: 18px; }

@media (max-width: 620px) { .final-cta__inner { padding: 60px 20px; } }

/* ---------- Minimal legal bar (large footer removed at client request) ---------- */
.site-legal {
  background: #0d1420;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-align: center;
  padding: 18px 0;
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 550;
  display: none;
  background: var(--color-white);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-cta-bar a { flex: 1; }
@media (max-width: 780px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
