/* ============================================================
   SBS HOME CARE — Design System
   Palette derived from logo: deep teal, warm sand, soft gold
   Display: Fraunces (serif, warm, editorial)
   Body/UI: Inter
   ============================================================ */

:root {
  /* Brand colors — pulled from logo */
  --teal-900: #0a3640;
  --teal-800: #0f4c5c;
  --teal-700: #15616f;
  --teal-600: #1b6e78;
  --teal-100: #e3eef0;
  --teal-50: #f1f6f7;

  --gold-500: #c99a4b;
  --gold-400: #d9b06e;
  --gold-100: #f6ecd9;

  --sand-50: #fbf8f2;
  --sand-100: #f7f1e6;
  --sand-200: #f0e7d6;

  --ink-900: #1c2b2e;
  --ink-700: #3c4d50;
  --ink-500: #647072;

  --white: #ffffff;

  --shadow-sm: 0 6px 18px rgba(10, 54, 64, 0.07);
  --shadow-md: 0 16px 40px rgba(10, 54, 64, 0.1);
  --shadow-lg: 0 30px 70px rgba(10, 54, 64, 0.16);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: min(1180px, 100% - 2.5rem);
  margin: 0 auto;
}

.container-narrow {
  width: min(800px, 100% - 2.5rem);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-900);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 2000;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Layout utilities ---------- */

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.9rem;
  row-gap: 1.5rem;
}

.row > * {
  padding: 0 0.9rem;
}

.d-flex { display: flex; }
.d-lg-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-stretch { align-items: stretch; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.25rem; }
.gap-lg-2 { gap: 1.5rem; }
.g-4 { row-gap: 1.75rem; }
.g-3 { row-gap: 1rem; }
.g-5 { row-gap: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.75rem; }
.mb-3 { margin-bottom: 1rem; }
.py-2 { padding-top: 0.7rem; padding-bottom: 0.7rem; }
.me-2 { margin-right: 0.75rem; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.position-relative { position: relative; }
.fixed-top { position: fixed; top: 0; right: 0; left: 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

.col-12, .col-sm-6, .col-md-4, .col-md-6,
.col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8 {
  width: 100%;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { min-height: 54px; padding: 1rem 1.6rem; font-size: 1.02rem; }

.btn-primary {
  background: var(--teal-800);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 76, 92, 0.28);
}
.btn-primary:hover { background: var(--teal-900); }

.btn-gold {
  background: var(--gold-500);
  color: var(--teal-900);
  box-shadow: 0 14px 30px rgba(201, 154, 75, 0.35);
}
.btn-gold:hover { background: var(--gold-400); }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.18); }

.btn-outline-dark {
  border-color: rgba(15, 76, 92, 0.3);
  color: var(--teal-800);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--teal-100); }

.btn-icon svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */

.announce-bar {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  padding: 0.55rem 1rem;
}

.announce-bar a {
  color: var(--gold-400);
  text-decoration: underline;
  text-decoration-color: rgba(217, 176, 110, 0.5);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(251, 248, 242, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
  z-index: 1030;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  background: rgba(251, 248, 242, 0.92);
  box-shadow: 0 8px 24px rgba(10, 54, 64, 0.08);
}

.nav-inner, .navbar-collapse, .navbar-nav {
  display: flex;
  align-items: center;
}

.nav-inner {
  justify-content: space-between;
  gap: 1rem;
}

.navbar-collapse { flex: 1; }

.navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-toggler, .nav-toggle { display: none; }

.navbar-toggler {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 76, 92, 0.16);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  place-items: center;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--teal-900);
  border-radius: 999px;
  content: "";
}

.navbar-toggler-icon { position: relative; }
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  position: absolute;
  left: 0;
}
.navbar-toggler-icon::before { top: -6px; }
.navbar-toggler-icon::after { top: 6px; }

.navbar-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--teal-900);
  letter-spacing: 0.01em;
}

.brand-sub {
  display: block;
  color: var(--teal-600);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.9rem;
  color: var(--ink-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 8px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--teal-800); }

.phone-link {
  color: var(--teal-900);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-link svg { width: 18px; height: 18px; color: var(--gold-500); }
.phone-link:hover { color: var(--teal-700); }

.footer-section a:hover,
.service-link:hover,
.contact-lines a:hover {
  color: var(--gold-400);
}

/* ============================================================
   HERO — slider with fixed overlay quote
   ============================================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 30, 36, 0.35) 0%, rgba(10, 30, 36, 0.55) 55%, rgba(8, 24, 29, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin: auto;
  width: 100%;
  padding: 9rem 0 5rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero-eyebrow svg { width: 14px; height: 14px; color: var(--gold-400); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.12;
  max-width: 18ch;
  margin: 1.3rem auto 1rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero-sub {
  max-width: 46ch;
  margin: 0 auto 2rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.hero-trustbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.4rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-trust-item svg { width: 16px; height: 16px; color: var(--gold-400); flex: 0 0 auto; }

.hero-stars {
  color: var(--gold-400);
  letter-spacing: 0.1em;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.is-active {
  background: var(--gold-400);
  transform: scale(1.25);
}

/* ============================================================
   STATS STRIP (overlaps hero bottom)
   ============================================================ */

.stats-strip {
  position: relative;
  z-index: 4;
  margin-top: -54px;
}

.stats-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.9rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-block { text-align: center; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 600;
  color: var(--teal-800);
  line-height: 1;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--ink-500);
  font-weight: 600;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.section-pad { padding: 6.5rem 0; }
.section-pad-sm { padding: 4.5rem 0; }

.alt-section { background: var(--teal-50); }
.dark-section {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-700);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.dark-section .eyebrow { color: var(--gold-400); }

.section-heading {
  max-width: 720px;
  margin: 0 auto;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 600;
  margin: 0.85rem 0 0.8rem;
  line-height: 1.2;
  color: var(--teal-900);
}

.dark-section .section-heading h2 { color: var(--white); }

.section-heading p {
  color: var(--ink-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

.dark-section .section-heading p { color: rgba(255, 255, 255, 0.72); }

h1, h2, h3 { letter-spacing: -0.01em; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.7rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--teal-100);
  color: var(--teal-800);
  margin-bottom: 1.1rem;
}

.why-icon svg { width: 26px; height: 26px; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--teal-900);
}

.why-card p {
  color: var(--ink-500);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.8rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

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

.service-photo {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 54, 64, 0) 55%, rgba(10, 54, 64, 0.35) 100%);
}

.service-body {
  padding: 1.5rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
}

.service-icon-row svg {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--teal-900);
}

.service-card p {
  color: var(--ink-500);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0.6rem 0 1.1rem;
  flex: 1;
}

.service-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--teal-800);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.service-link:hover svg { transform: translateX(3px); }

.services-cta {
  text-align: center;
  margin-top: 2.6rem;
}

/* ============================================================
   PROCESS — How It Works
   ============================================================ */

.process-rail {
  position: relative;
  margin-top: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--teal-800);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
  border: 4px solid var(--sand-50);
}

.process-rail .process-grid::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(15, 76, 92, 0.25) 0 8px, transparent 8px 16px);
  z-index: 1;
}

.process-step h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--teal-900);
  margin: 0 0 0.4rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS — handwritten note + slider
   ============================================================ */

.testimonial-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.note-wrap {
  position: relative;
  transform: rotate(-1.5deg);
}

.note-card {
  background: var(--sand-100);
  border-radius: 4px;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-md);
  font-family: "Caveat", var(--font-display);
  position: relative;
}

.note-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 70px;
  height: 28px;
  background: rgba(201, 154, 75, 0.55);
  border-radius: 2px;
}

.note-text {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--teal-900);
  margin: 0 0 1rem;
}

.note-sign {
  font-size: 1.3rem;
  color: var(--teal-700);
  text-align: right;
  margin: 0;
}

.testimonial-copy .eyebrow { margin-bottom: 0.5rem; }

.testimonial-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 600;
  color: var(--teal-900);
  margin: 0 0 1rem;
}

.testimonial-copy p {
  color: var(--ink-500);
  line-height: 1.75;
  font-size: 1.02rem;
}

.review-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.7rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--gold-500);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.review-card p {
  color: var(--ink-700);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-800);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  flex: 0 0 auto;
}

.review-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--teal-900);
}

.review-author span {
  font-size: 0.8rem;
  color: var(--ink-500);
}

/* ============================================================
   CAREGIVER TEAM
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-photo {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.team-body { padding: 1.3rem 1.1rem 1.6rem; }

.team-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
  color: var(--teal-900);
}

.team-role {
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-body p {
  color: var(--ink-500);
  font-size: 0.88rem;
  margin: 0.6rem 0 0;
  line-height: 1.55;
}

/* ============================================================
   BLOG / RESOURCES
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.8rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.blog-photo {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.blog-body { padding: 1.4rem 1.5rem 1.6rem; }

.blog-tag {
  color: var(--teal-700);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--teal-900);
  margin: 0.5rem 0 0.5rem;
  line-height: 1.35;
}

.blog-body p {
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TRUST & COMPLIANCE
   ============================================================ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.6rem;
}

.trust-badge {
  text-align: center;
  padding: 1.6rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-badge svg {
  width: 34px;
  height: 34px;
  color: var(--gold-400);
  margin: 0 auto 0.8rem;
}

.trust-badge strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.trust-badge span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */

.accordion { max-width: 820px; margin: 2.6rem auto 0; }

.accordion-item {
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.1);
  margin-bottom: 0.85rem;
  background: var(--white);
}

.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 0;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  list-style: none;
  background: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--teal-900);
}

.accordion-button::-webkit-details-marker { display: none; }

.accordion-button::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--teal-700);
  flex: 0 0 auto;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.accordion-item[open] .accordion-button {
  color: var(--teal-800);
  background: var(--teal-50);
}

.accordion-item[open] .accordion-button::after {
  content: "\2212";
}

.accordion-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-500);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-card, .form-card {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
}

.contact-card {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.9);
}

.contact-card .eyebrow { color: var(--gold-400); }

.contact-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 600;
  color: var(--white);
  margin: 0.8rem 0 0.7rem;
}

.contact-card p { color: rgba(255, 255, 255, 0.72); line-height: 1.7; }

.contact-lines {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.contact-lines a {
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
}

.emergency-note {
  margin-top: 1.6rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(201, 154, 75, 0.14);
  border: 1px solid rgba(201, 154, 75, 0.35);
  font-size: 0.88rem;
  line-height: 1.6;
}

.emergency-note strong { color: var(--gold-400); }

.form-card {
  background: var(--white);
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow-md);
}

.form-control, .form-select {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 76, 92, 0.18);
  padding: 0.85rem 1rem;
  color: var(--ink-900);
  font: inherit;
  background: var(--white);
}

.form-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal-900);
}

.form-control:focus, .form-select:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(27, 110, 120, 0.14);
  outline: none;
}

.map-placeholder {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.map-placeholder svg { width: 28px; height: 28px; color: var(--gold-400); flex: 0 0 auto; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(15, 76, 92, 0.12);
  box-shadow: 0 -10px 30px rgba(10, 54, 64, 0.12);
  padding: 0.7rem 1rem;
  gap: 0.7rem;
}

.sticky-cta .btn { flex: 1; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer-section {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.72);
  padding: 4.5rem 0 2rem;
}

.footer-brand-logo {
  height: 38px;
  filter: brightness(0) invert(1);
}

.footer-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 38ch;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.social-row { display: flex; gap: 0.7rem; }

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.social-row svg { width: 17px; height: 17px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 576px) {
  .col-sm-6 { width: 50%; }
}

@media (min-width: 768px) {
  .col-md-4 { width: 33.3333%; }
  .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.3333%; }
  .col-lg-5 { width: 41.6667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.3333%; }
  .col-lg-8 { width: 66.6667%; }
}

@media (max-width: 991px) {
  .d-lg-flex { display: none; }

  .navbar-toggler { display: grid; flex: 0 0 auto; }

  .navbar-collapse {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1.1rem;
    border: 1px solid rgba(15, 76, 92, 0.1);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .nav-toggle:checked ~ .navbar-collapse { display: flex; }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid rgba(15, 76, 92, 0.06);
    min-height: auto;
  }

  .nav-link::after { display: none; }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .why-grid, .services-grid, .review-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 2rem; }
  .process-rail .process-grid::before { display: none; }
  .stats-card { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }

  .testimonial-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.8rem;
  }

  .note-wrap { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 767px) {
  .why-grid, .services-grid, .review-row,
  .team-grid, .blog-grid, .trust-grid {
    grid-template-columns: 1fr;
  }

  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section-pad { padding: 4rem 0; }

  .hero { min-height: 100vh; }
  .hero-content { padding: 7.5rem 0 4rem; }

  .stats-card { padding: 1.4rem 1rem; }
  .stat-value { font-size: 1.5rem; }

  .footer-bottom { flex-direction: column; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
  body { padding-bottom: 0 !important; }
}