/* ============================================================
   Premium Theme V2 — "Layered Depth"
   Design system with CSS custom properties
   ============================================================ */

:root {
  /* ---- Colors ---- */
  --navy:       #0f172a;
  --navy-2:     #1e293b;
  --navy-3:     #334155;
  --green:      #10b981;
  --green-dk:   #059669;
  --green-glow: rgba(16,185,129,0.15);
  --amber:      #f59e0b;
  --amber-dk:   #d97706;
  --text:       #1e293b;
  --text-2:     #374151;
  --muted:      #64748b;
  --light:      #94a3b8;
  --bg:         #f8fafc;
  --surface:    #ffffff;
  --border:     #e2e8f0;

  /* ---- Spacing Scale (8px base) ---- */
  --sp-1: 0.25rem;  /* 4px */
  --sp-2: 0.5rem;   /* 8px */
  --sp-3: 0.75rem;  /* 12px */
  --sp-4: 1rem;     /* 16px */
  --sp-5: 1.25rem;  /* 20px */
  --sp-6: 1.5rem;   /* 24px */
  --sp-8: 2rem;     /* 32px */
  --sp-10: 2.5rem;  /* 40px */
  --sp-12: 3rem;    /* 48px */
  --sp-16: 4rem;    /* 64px */
  --sp-20: 5rem;    /* 80px */
  --sp-24: 6rem;    /* 96px */

  /* ---- Shadows (multi-layer for depth) ---- */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 10px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12), 0 8px 20px -8px rgba(0,0,0,0.06);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 4px 8px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.1);

  /* ---- Radii ---- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 100px;

  /* ---- Container ---- */
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* ---- Transitions ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--green-dk); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: var(--sp-4); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); margin-bottom: var(--sp-3); }
p { margin-bottom: var(--sp-4); color: var(--text-2); }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
li { margin-bottom: var(--sp-2); color: var(--text-2); }
strong { font-weight: 600; color: var(--text); }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- Section Headers ---- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--sp-12); }
.section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: var(--sp-3); }
.section-subtitle { color: var(--muted); font-size: 1.0625rem; line-height: 1.6; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: 1rem; border-radius: var(--radius-md); }
.btn--sm { padding: var(--sp-2) var(--sp-4); font-size: 0.8125rem; }

.btn--amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  box-shadow: 0 2px 8px rgba(245,158,11,0.25);
}
.btn--amber:hover {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.35);
}

.btn--green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

/* Legacy compat */
.btn-amber { background: var(--amber); color: var(--navy); border-color: var(--amber); box-shadow: 0 2px 8px rgba(245,158,11,0.25); }
.btn-amber:hover { background: var(--amber-dk); border-color: var(--amber-dk); color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.btn-primary { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dk); border-color: var(--amber-dk); color: var(--navy); transform: translateY(-1px); }
.btn-secondary, .btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-secondary:hover, .btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge--outline { border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }

/* ============================================================
   NAVIGATION — sticky dark nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}
.logo-text { color: #fff; font-weight: 700; font-size: 0.9375rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.15s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--green); background: rgba(16,185,129,0.1); }

/* ---- Desktop Dropdown Navigation ---- */
.nav-dropdown {
  position: relative;
}
.nav-link--parent {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 240px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-2) 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.2s var(--ease-out);
  pointer-events: none;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown__link {
  display: block;
  padding: var(--sp-2) var(--sp-5);
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.12s;
  white-space: nowrap;
}
.nav-dropdown__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-dropdown__link.active {
  color: var(--green);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
  transition: all 0.15s;
}
.nav-phone:hover { background: var(--amber-dk); color: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.35); }
.nav-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; pointer-events: none; }
.hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s; }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 99;
}

/* ============================================================
   HERO — 3-layer depth: gradient → pattern → glow
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(var(--sp-16), 10vw, var(--sp-24)) 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #070d1a 0%, #0f172a 30%, #122630 70%, #0a1a10 100%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.8) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(16,185,129,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; max-width: 720px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(16,185,129,0.1);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(16,185,129,0.25);
  margin-bottom: var(--sp-6);
}
.hero__title {
  color: #fff;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-5);
}
.hero__title span { color: var(--green); }
.hero__desc {
  color: rgba(255,255,255,0.6);
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.65;
  margin-bottom: var(--sp-8);
  max-width: 560px;
}
.hero__cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  font-weight: 500;
}
.hero__trust span::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Homepage Hero Background Image ---- */
.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18;
}

/* ============================================================
   PAGE HERO — inner pages (2-layer depth)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: var(--sp-12) 0 var(--sp-10);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #070d1a, #0f172a 60%, #12232e);
}
.page-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.8) 1px, transparent 0);
  background-size: 32px 32px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  color: #f1f5f9;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-top: var(--sp-3);
  line-height: 1.15;
}
.page-hero__desc {
  color: rgba(255,255,255,0.55);
  font-size: 1.0625rem;
  margin-top: var(--sp-3);
  max-width: 600px;
  line-height: 1.55;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-2) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-3) 0;
}
.trust-strip__inner {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-strip__inner span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-weight: 500;
}
.trust-strip__inner span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: rgba(16,185,129,0.2);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}

/* Legacy trust-bar (used by old templates) */
.trust-bar {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding: var(--sp-4) var(--sp-6);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-8);
}
.trust-bar span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 500;
}
.trust-bar span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: rgba(16,185,129,0.2);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}

/* ============================================================
   CONTENT SECTION — markdown prose styling
   ============================================================ */
.content-section {
  padding: var(--sp-16) 0;
}
.content-meta {
  max-width: 780px;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: var(--sp-4);
}
.content-prose {
  max-width: 780px;
  font-size: 1.0625rem;
  line-height: 1.75;
}
/* Hide H1 from markdown (already in page hero) */
.content-prose > h1:first-child { display: none; }

.content-prose h2 {
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--border);
}
.content-prose h3 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.content-prose ul, .content-prose ol {
  margin-bottom: var(--sp-6);
  padding-left: var(--sp-8);
}
.content-prose li {
  margin-bottom: var(--sp-2);
  padding-left: var(--sp-2);
}
.content-prose li::marker { color: var(--green); }
.content-prose blockquote {
  border-left: 4px solid var(--green);
  padding: var(--sp-5) var(--sp-6);
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--sp-8) 0;
}
.content-prose blockquote p { color: #065f46; margin: 0; }
.content-prose strong { color: var(--navy); font-weight: 700; }

/* ============================================================
   CARD GRID SECTION — layered background
   ============================================================ */
.card-grid-section {
  position: relative;
  overflow: hidden;
  padding: var(--sp-20) 0;
}
.card-grid-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg), #fff 30%, #fff 70%, var(--bg));
}
.card-grid-section__inner { position: relative; z-index: 1; }
.card-grid-section--alt { background: var(--bg); }
.card-grid-section--alt .card-grid-section__bg { display: none; }

/* ---- Card Grid ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
}

/* ---- Card Component ---- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-card);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(16,185,129,0.3);
}
.card__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.card:hover .card__accent { transform: scaleX(1); }
.card__body { padding: var(--sp-8); display: flex; flex-direction: column; flex: 1; }
.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
  transition: color 0.15s;
}
.card:hover .card__title { color: var(--green-dk); }
.card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--sp-4);
}
.card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap 0.2s;
}
.card:hover .card__link { gap: var(--sp-3); }

/* Legacy service-card compat */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(16,185,129,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: var(--sp-2); transition: color 0.15s; }
.service-card:hover h3 { color: var(--green-dk); }
.service-card p { font-size: 0.9375rem; color: var(--muted); flex: 1; }
.service-card .card-arrow, .service-card .card__link { color: var(--green); font-size: 0.875rem; font-weight: 600; margin-top: var(--sp-4); }

/* Legacy page-grid */
.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
}

/* ---- Pill Grid (locations) ---- */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-5);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.pill:hover {
  border-color: var(--green);
  background: #ecfdf5;
  color: #065f46;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pill--link { cursor: pointer; }
.pill--link:hover { border-color: var(--green); background: #ecfdf5; color: #065f46; }
.pill--static { cursor: default; }
.pill--static:hover { transform: none; box-shadow: var(--shadow-sm); }

/* Legacy compat */
.areas-grid { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.areas-grid a { display: inline-flex; align-items: center; padding: var(--sp-2) var(--sp-5); background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 500; color: var(--text); text-decoration: none; transition: all 0.2s var(--ease-out); box-shadow: var(--shadow-sm); }
.areas-grid a:hover { border-color: var(--green); background: #ecfdf5; color: #065f46; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.area-tag { display: inline-flex; padding: var(--sp-2) var(--sp-5); background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 500; color: var(--text); margin: var(--sp-1); box-shadow: var(--shadow-sm); }

/* ---- Areas Section ---- */
.areas-section { padding: var(--sp-20) 0; background: var(--bg); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-1);
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumbs-link { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.breadcrumbs-link:hover { color: var(--green); }
.breadcrumbs-item--current { color: rgba(255,255,255,0.85); font-weight: 500; }
.breadcrumbs-sep { opacity: 0.35; flex-shrink: 0; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--sp-16) var(--gutter);
}
.faq-header { margin-bottom: var(--sp-6); }
.faq-header .section-label { margin-bottom: 0; font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(16,185,129,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--surface);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg); }
.faq-item.open .faq-question { background: #f0fdf4; color: #065f46; }
.faq-icon { flex-shrink: 0; color: var(--muted); transition: transform 0.3s var(--ease-out); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--green); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer:not([hidden]) { max-height: 600px; }
.faq-answer[hidden] { display: block !important; max-height: 0; }
.faq-answer-inner { padding: 0 var(--sp-6) var(--sp-5); }
.faq-answer-inner p { color: var(--text-2); font-size: 0.9375rem; margin-top: var(--sp-4); margin-bottom: 0; line-height: 1.7; }

/* ============================================================
   RELATED SECTION — layered bg
   ============================================================ */
.related-section {
  position: relative;
  overflow: hidden;
  padding: var(--sp-16) 0;
}
.related-section__bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.related-section__inner { position: relative; z-index: 1; }

.section-label {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--sp-6);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.related-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  box-shadow: var(--shadow-card);
}
.related-card:hover {
  border-color: rgba(16,185,129,0.3);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.related-card-type {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-2);
}
.related-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-2); line-height: 1.3; }
.related-card-desc { font-size: 0.875rem; color: var(--muted); flex: 1; margin-bottom: var(--sp-3); }
.related-card-link { font-size: 0.875rem; font-weight: 600; color: var(--green); margin-top: auto; }

/* ============================================================
   CTA SECTION — layered dark
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--sp-20) 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #070d1a, var(--navy) 50%, #0a1a12);
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.8) 1px, transparent 0);
  background-size: 32px 32px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-10);
  flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); color: #fff; margin-bottom: var(--sp-3); }
.cta-sub { color: rgba(255,255,255,0.6); font-size: 1.0625rem; margin: 0; line-height: 1.6; }
.cta-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FLOATING CTA (mobile only)
   ============================================================ */
.cta-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.cta-sticky-call, .cta-sticky-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
}
.cta-sticky-call { background: var(--amber); color: var(--navy); }
.cta-sticky-book { background: var(--green); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}
.footer-top { padding: var(--sp-20) 0 var(--sp-16); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-10) var(--sp-8);
}
.footer-logo { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.65; margin-bottom: var(--sp-5); }
.footer-accreditations { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-5);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color 0.15s; text-decoration: none; }
.footer-links a:hover { color: var(--green); }
.footer-see-all { color: var(--green) !important; font-weight: 600; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.footer-contact li { display: flex; align-items: center; gap: var(--sp-3); font-size: 0.875rem; }
.footer-contact svg { flex-shrink: 0; opacity: 0.4; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.15s; text-decoration: none; }
.footer-contact a:hover { color: var(--green); }
.footer-survey-btn { width: 100%; justify-content: center; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-5) 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8125rem; margin: 0; }
.footer-legal { display: flex; gap: var(--sp-5); }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.8125rem; transition: color 0.15s; text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* Legacy service-page / location-page / category-page wrappers */
.service-page, .category-page, .location-page, .location-hub, .listing-page { /* handled by content-section */ }
.child-services { margin: var(--sp-10) 0; }
.child-services h2 { margin-bottom: var(--sp-6); }
.nearby-areas { margin: var(--sp-10) 0; }
.nearby-areas h2 { margin-bottom: var(--sp-4); }
.service-links { margin: var(--sp-10) 0; }
.service-links h2 { margin-bottom: var(--sp-6); }
.locations-grid { margin: var(--sp-8) 0; }
.locations-grid h2 { margin-bottom: var(--sp-6); }

/* Legacy compat */
.cta-buttons { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--sp-6); }

/* ============================================================
   SCROLL REVEAL (light animation)
   ============================================================ */
.card, .faq-item, .pill, .related-card {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.5s var(--ease-out) forwards;
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
/* Stagger cards */
.card:nth-child(1), .faq-item:nth-child(1), .related-card:nth-child(1), .pill:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2), .faq-item:nth-child(2), .related-card:nth-child(2), .pill:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3), .faq-item:nth-child(3), .related-card:nth-child(3), .pill:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4), .faq-item:nth-child(4), .related-card:nth-child(4), .pill:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5), .faq-item:nth-child(5), .related-card:nth-child(5), .pill:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(n+6), .faq-item:nth-child(n+6), .pill:nth-child(n+6) { animation-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-6);
    gap: var(--sp-1);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { padding: var(--sp-4); font-size: 1rem; border-radius: var(--radius-sm); }

  /* Mobile dropdown: stack vertically, no hover, click to expand */
  .nav-dropdown__panel {
    position: static;
    min-width: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0 0 var(--sp-6);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
  }
  .nav-dropdown.open .nav-dropdown__panel {
    max-height: 500px;
  }
  .nav-dropdown__link {
    padding: var(--sp-3) var(--sp-4);
    font-size: 0.9375rem;
    border-left: 2px solid rgba(255,255,255,0.08);
  }
  .nav-dropdown__link:hover {
    border-left-color: var(--green);
  }
  .nav-chevron {
    margin-left: auto;
  }
  .nav-dropdown.open .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-backdrop.visible { display: block; }

  .hamburger-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger-open .hamburger span:nth-child(2) { opacity: 0; }
  .hamburger-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-col--brand { grid-column: 1 / -1; }

  .cta-inner { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { flex: 1; }

  .hero__title { font-size: clamp(1.875rem, 6vw, 2.5rem); }
  .card-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .page-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .faq-section { padding: var(--sp-10) var(--gutter); }

  .content-section { padding: var(--sp-10) 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .trust-strip__inner { justify-content: flex-start; gap: var(--sp-4); }
}

/* ---- Print ---- */
@media print {
  .site-header, .site-footer, .cta-section, .cta-sticky-bar, .nav-toggle, .trust-strip { display: none; }
  body { padding: 0; background: #fff; color: #000; }
  .page-hero { background: #f0f0f0 !important; padding: var(--sp-4) 0; }
  .page-hero__bg, .page-hero__pattern, .hero__gradient, .hero__pattern, .hero__glow { display: none; }
  a { color: inherit; }
}


/* ============================================================
   PROCESS STEPS — numbered timeline
   ============================================================ */
.process-section {
  padding: var(--sp-20) 0;
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  position: relative;
}

/* Connecting line across step circles */
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dk));
  opacity: 0.25;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: var(--sp-5);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

.process-step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.process-step__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}


/* ============================================================
   TESTIMONIALS — review cards with star ratings
   ============================================================ */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: var(--sp-20) 0;
}

.testimonials-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff, var(--bg) 30%, var(--bg) 70%, #fff);
}

.testimonials-section__inner {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
  color: var(--amber);
}

.star-icon {
  flex-shrink: 0;
}

.testimonial-card__quote {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-2);
  font-style: italic;
  margin: 0 0 var(--sp-6) 0;
  flex: 1;
  border: none;
  padding: 0;
  background: none;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
}

.testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--muted);
}


/* ============================================================
   AUTHORITY BAR — dark credentials strip
   ============================================================ */
.authority-section {
  padding: var(--sp-12) 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.authority-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
}

.authority-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  border-radius: 50%;
  margin-bottom: var(--sp-2);
}

.authority-item__value {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.authority-item__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}


/* ============================================================
   COMPONENT ANIMATIONS — scroll reveal for new elements
   ============================================================ */
.process-step,
.testimonial-card,
.authority-item {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.5s var(--ease-out) forwards;
}

/* Stagger process steps */
.process-step:nth-child(1) { animation-delay: 0.05s; }
.process-step:nth-child(2) { animation-delay: 0.15s; }
.process-step:nth-child(3) { animation-delay: 0.25s; }
.process-step:nth-child(4) { animation-delay: 0.35s; }

/* Stagger testimonial cards */
.testimonial-card:nth-child(1) { animation-delay: 0.05s; }
.testimonial-card:nth-child(2) { animation-delay: 0.15s; }
.testimonial-card:nth-child(3) { animation-delay: 0.25s; }

/* Stagger authority items */
.authority-item:nth-child(1) { animation-delay: 0.05s; }
.authority-item:nth-child(2) { animation-delay: 0.1s; }
.authority-item:nth-child(3) { animation-delay: 0.15s; }
.authority-item:nth-child(4) { animation-delay: 0.2s; }


/* ============================================================
   COMPONENT RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8) var(--sp-6);
  }
  .process-grid::before { display: none; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }
}

@media (max-width: 480px) {
  .process-section { padding: var(--sp-12) 0; }
  .process-grid { grid-template-columns: 1fr; }

  .testimonials-section { padding: var(--sp-12) 0; }

  .authority-section { padding: var(--sp-8) 0; }
  .authority-grid { gap: var(--sp-4); }
}

@media print {
  .authority-section,
  .testimonials-section { display: none; }
}


/* ============================================================
   HERO IMAGE — background image behind gradient overlay
   ============================================================ */
.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* When image loads, fade it in */
.page-hero--has-image .page-hero__image {
  opacity: 1;
}

/* Adjust gradient to be semi-transparent so image shows through */
.page-hero--has-image .page-hero__bg {
  background: linear-gradient(
    145deg,
    rgba(7, 13, 26, 0.82) 0%,
    rgba(15, 23, 42, 0.7) 40%,
    rgba(18, 35, 46, 0.75) 100%
  );
  z-index: 1;
}

/* Keep pattern above image */
.page-hero--has-image .page-hero__pattern {
  z-index: 2;
}

/* Ensure hero content stays on top */
.page-hero--has-image .page-hero__inner {
  z-index: 3;
}


/* ============================================================
   CONTENT IMAGES — inline process/result + overview images
   ============================================================ */
.content-images-section {
  padding: var(--sp-8) 0 var(--sp-16);
}

.content-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  max-width: 780px;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out);
}

.content-image:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.content-image figcaption {
  padding: var(--sp-3) var(--sp-4);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* Single wide image (category overview) */
.content-images-section--single .content-image--wide {
  max-width: 780px;
}

.content-image--wide img {
  aspect-ratio: 16/9;
}


/* ============================================================
   CONTENT IMAGES — scroll reveal animation
   ============================================================ */
.content-image {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.5s var(--ease-out) forwards;
}

.content-image:nth-child(1) { animation-delay: 0.1s; }
.content-image:nth-child(2) { animation-delay: 0.2s; }


/* ============================================================
   CONTENT IMAGES — responsive
   ============================================================ */
@media (max-width: 768px) {
  .content-images-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .content-images-section {
    padding: var(--sp-6) 0 var(--sp-10);
  }
}

@media print {
  .page-hero__image { display: none; }
  .content-images-section { display: none; }
}


/* ============================================================
   HOMEPAGE — Introduction & Service Overview
   ============================================================ */
.hp-intro {
  padding: var(--sp-20) 0;
  background: var(--surface);
}

.hp-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hp-intro__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: var(--sp-6);
}

.hp-intro__text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: var(--sp-4);
}

.hp-intro__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hp-intro__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .hp-intro__image {
    order: -1;
  }
}


/* ============================================================
   HOMEPAGE — Featured Services
   ============================================================ */
.hp-featured {
  padding: var(--sp-20) 0;
  background: var(--bg);
}

.hp-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.hp-featured__card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-card);
}

.hp-featured__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--amber);
}

.hp-featured__card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.hp-featured__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.hp-featured__card:hover .hp-featured__card-image img {
  transform: scale(1.05);
}

.hp-featured__card-body {
  padding: var(--sp-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-featured__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.hp-featured__card-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.hp-featured__card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  margin-top: var(--sp-4);
  transition: gap 0.2s;
}

.hp-featured__card:hover .hp-featured__card-link {
  gap: var(--sp-3);
}

@media (max-width: 768px) {
  .hp-featured__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}


/* ============================================================
   HOMEPAGE — Process Section
   ============================================================ */
.hp-process {
  padding: var(--sp-20) 0;
  background: var(--surface);
}

.hp-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}

.hp-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hp-process__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  position: relative;
  z-index: 1;
}

.hp-process__step-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-6);
  background: var(--bg);
}

.hp-process__step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-process__step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.hp-process__step-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hp-process__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}


/* ============================================================
   HOMEPAGE — FAQ Section (two-column with image)
   ============================================================ */
.hp-faq {
  padding: var(--sp-20) 0;
  background: var(--bg);
}

.hp-faq__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-12);
  align-items: start;
}

.hp-faq__content .section-header {
  margin-bottom: var(--sp-8);
}

.hp-faq__content .faq-list {
  max-width: none;
}

.hp-faq__image {
  position: sticky;
  top: 100px;
}

.hp-faq__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hp-faq__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .hp-faq__image {
    position: static;
    order: -1;
  }
}


/* ============================================================
   HOMEPAGE — About Section
   ============================================================ */
.hp-about {
  padding: var(--sp-20) 0;
  background: var(--surface);
}

.hp-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hp-about__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hp-about__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: var(--sp-6);
}

.hp-about__text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: var(--sp-4);
}

.hp-about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.hp-about__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-dk);
}

@media (max-width: 768px) {
  .hp-about__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}


/* ============================================================
   HOMEPAGE — Contact Section
   ============================================================ */
.hp-contact {
  padding: var(--sp-20) 0;
  background: linear-gradient(145deg, #070d1a 0%, #0a1a12 100%);
  position: relative;
}

.hp-contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-12);
  align-items: start;
}

.hp-contact__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: var(--sp-3);
}

.hp-contact__sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

.hp-contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.hp-contact__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--sp-2);
}

.hp-contact__field input,
.hp-contact__field textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.hp-contact__field input::placeholder,
.hp-contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hp-contact__field input:focus,
.hp-contact__field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.12);
}

.hp-contact__field textarea {
  resize: vertical;
  min-height: 100px;
}

.hp-contact__field.has-error input,
.hp-contact__field.has-error textarea {
  border-color: #ef4444;
}

.hp-contact__field .field-error {
  display: none;
  font-size: 0.8125rem;
  color: #ef4444;
  margin-top: var(--sp-1);
}

.hp-contact__field.has-error .field-error {
  display: block;
}

.hp-contact__submit {
  align-self: flex-start;
  margin-top: var(--sp-2);
}

.hp-contact__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.hp-contact__call-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
}

.hp-contact__call-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: var(--sp-4);
}

.hp-contact__call-btn {
  width: 100%;
  justify-content: center;
}

.hp-contact__hours {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--sp-3);
}

.hp-contact__support-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hp-contact__support-image img {
  width: 100%;
  border-radius: var(--radius-md);
}

.hp-contact__trust-badges {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}

.hp-contact__trust-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-4);
}

.hp-contact__trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--sp-2) 0;
}

.hp-contact__trust-badge svg {
  color: var(--green);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hp-contact__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .hp-contact__sidebar {
    order: -1;
  }

  .hp-contact__submit {
    width: 100%;
  }
}

/* ============================================================
   Skip Link — Accessibility
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 10000;
  padding: var(--sp-3) var(--sp-6);
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ============================================================
   Focus Visible — Accessibility
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ============================================================
   404 Error Page
   ============================================================ */
.error-page {
  padding: var(--sp-20) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-page__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-page__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  opacity: 0.1;
  margin-bottom: var(--sp-2);
}

.error-page__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-4);
}

.error-page__desc {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.error-page__actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

.error-page__links {
  text-align: center;
}

.error-page__links h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: var(--sp-4);
}

.error-page__links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-6);
}

.error-page__links a {
  color: var(--green-dk);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.error-page__links a:hover {
  color: var(--green);
  text-decoration: underline;
}
