/* ==========================================================================
   Burleigh TV Repairs — light & modern palette (blue-led)
   ========================================================================== */

:root {
  /* Primary blues — derived from logo "TV REPAIRS" sky-blue */
  --blue-700: #0b3a86;
  --blue-600: #1a55c2;
  --blue-500: #2f7bf5;   /* primary action */
  --blue-400: #5b9dff;
  --blue-300: #8fbcff;
  --blue-200: #c2dbff;
  --blue-100: #e3eeff;
  --blue-50:  #f3f7ff;

  /* Deep "shield" navy — used sparingly for contrast */
  --navy-900: #0c1e3b;
  --navy-800: #142a55;
  --navy-700: #1d3a6d;

  /* Gold — tiny accent role only */
  --gold-500: #f5b537;
  --gold-100: #fff4d6;

  /* Surfaces */
  --bg:       #ffffff;
  --bg-alt:   #f5f8fd;     /* very faint blue-grey */
  --bg-blue:  #eef4ff;     /* soft blue panel */
  --line:     #e3eaf3;
  --line-2:   #cfd8e6;

  /* Ink */
  --ink:      #0e1a2e;
  --ink-2:    #41506a;
  --ink-3:    #6e7d95;

  --success:  #16a16a;

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

  /* Radii */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadows — softer, more diffused */
  --sh-1: 0 1px 2px rgba(20,42,85,.05), 0 1px 1px rgba(20,42,85,.03);
  --sh-2: 0 10px 24px -14px rgba(20,42,85,.22), 0 2px 6px rgba(20,42,85,.05);
  --sh-3: 0 30px 60px -28px rgba(20,42,85,.30), 0 10px 24px -14px rgba(20,42,85,.18);
  --sh-blue: 0 16px 32px -14px rgba(47,123,245,.45);
  --sh-blue-sm: 0 8px 20px -10px rgba(47,123,245,.35);

  /* Containers */
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
  padding-bottom: 76px;
  overflow-x: hidden;
}
@media (min-width: 860px) { body { padding-bottom: 0; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

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

section { padding: 80px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5.4vw, 60px); line-height: 1.04; font-weight: 800; }
h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1;  font-weight: 700; }
h3 { font-size: 20px; line-height: 1.25; font-weight: 600; }
p  { color: var(--ink-2); margin: 0; text-wrap: pretty; }
h1, h2, h3, p { overflow-wrap: anywhere; }

.section-head { display: grid; gap: 14px; max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; justify-items: center; }
.section-head p { font-size: 17px; color: var(--ink-2); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47,123,245,.35);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--blue-500);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover { background: var(--blue-600); }

.btn-dark {
  background: var(--navy-800);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-900); }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-600); }

.btn-ghost-light {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.30);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.55); }

.btn-whatsapp { background: #25D366; color: #08210f; }
.btn-whatsapp:hover { background: #1ebe5b; }

.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(15,42,86,0.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand picture { display: flex; align-items: center; }
.brand img {
  height: 44px; width: auto;
  filter: drop-shadow(0 2px 4px rgba(11,42,86,.10));
}
.nav { display: none; gap: 4px; }
@media (min-width: 860px) { .nav { display: flex; } }
.nav a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--blue-600); background: var(--blue-50); }
.nav a.active { color: var(--blue-600); background: var(--blue-50); }

.header-cta { display: none; }
@media (min-width: 860px) { .header-cta { display: inline-flex; } }

.mobile-menu-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--blue-50);
  border: 1px solid var(--line);
  color: var(--blue-700);
}
@media (min-width: 860px) { .mobile-menu-btn { display: none; } }

.mobile-drawer {
  position: fixed;
  inset: 72px 0 0 0;
  background: #fff;
  z-index: 49;
  padding: 24px 20px;
  display: none;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  padding: 16px 14px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer a.active { color: var(--blue-600); }
.mobile-drawer .btn { margin-top: 24px; }

/* ---------- Hero (light) ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(143,188,255,.35), transparent 60%),
    radial-gradient(700px 400px at -5% 110%, rgba(195,219,255,.5), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--blue-50) 100%);
  color: var(--ink);
  overflow: hidden;
  padding: 72px 0 88px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><g fill='none' stroke='%231a55c2' stroke-opacity='0.07'><circle cx='30' cy='30' r='1.4'/></g></svg>");
  background-size: 30px 30px;
  pointer-events: none;
  opacity: .6;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 64px; } }

.hero h1 .accent { color: var(--blue-500); }
.hero .lede {
  margin-top: 18px; font-size: 18px;
  color: var(--ink-2); max-width: 560px;
}

.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.trust-pills .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 12px;
  background: #fff;
  border: 1px solid var(--blue-200);
  color: var(--blue-700);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--sh-1);
}
.trust-pills .pill svg { width: 16px; height: 16px; color: var(--blue-500); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--blue-200);
}
.hero-meta .stat .num {
  font-size: 28px; font-weight: 800; color: var(--blue-700);
  letter-spacing: 0;
}
.hero-meta .stat .lbl {
  font-size: 12.5px; color: var(--ink-3);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Hero card (right side) */
.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: var(--sh-3);
}
.hero-card .price-row { display: flex; align-items: baseline; gap: 12px; }
.hero-card .price {
  font-size: 38px; font-weight: 800;
  color: var(--blue-700);
  letter-spacing: 0;
}
.hero-card .price-lbl { color: var(--ink-3); font-size: 14px; }
.hero-card hr {
  border: none; border-top: 1px dashed var(--blue-200);
  margin: 18px 0;
}
.hero-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hero-card li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink); font-size: 14.5px;
}
.hero-card li svg { width: 18px; height: 18px; color: var(--blue-500); flex: none; margin-top: 1px; }
.hero-card .quote-btn { margin-top: 22px; }

.hero-card .tag {
  position: absolute;
  top: -14px; right: 20px;
  background: var(--blue-500);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--sh-blue-sm);
}

.hero-showcase {
  display: grid;
  gap: 18px;
  align-self: stretch;
}
.hero-photo,
.subhero-photo,
.section-photo,
.service-photo,
.callout-photo,
.testimonial-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--blue-100);
  box-shadow: var(--sh-3);
  background: var(--blue-50);
}
.hero-photo {
  min-height: 300px;
  aspect-ratio: 16 / 10;
}
.hero-photo img,
.subhero-photo img,
.section-photo img,
.service-photo img,
.callout-photo img,
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo picture,
.subhero-photo picture,
.section-photo picture,
.service-photo picture,
.callout-photo picture,
.testimonial-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-showcase .hero-card {
  margin-top: -74px;
  margin-left: 28px;
  margin-right: 28px;
}

.photo-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 34px;
}
.photo-strip .section-photo {
  aspect-ratio: 4 / 3;
  box-shadow: var(--sh-2);
}
.photo-strip .section-photo.featured {
  grid-column: span 2;
}
.photo-strip .section-photo img {
  transition: transform .45s ease;
}
.photo-strip .section-photo:hover img {
  transform: scale(1.035);
}

.subhero.with-photo .container {
  display: grid;
  gap: 34px;
  align-items: center;
}
.subhero-copy { min-width: 0; }
.subhero-photo {
  aspect-ratio: 16 / 10;
  box-shadow: var(--sh-2);
}
@media (min-width: 900px) {
  .subhero.with-photo .container {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  }
}

.split-feature {
  display: grid;
  gap: 34px;
  align-items: center;
}
@media (min-width: 900px) {
  .split-feature {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }
}
.split-feature .section-photo {
  aspect-ratio: 16 / 10;
  box-shadow: var(--sh-2);
}

/* ---------- Cards ---------- */

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card.hoverable:hover {
  border-color: var(--blue-300);
  box-shadow: var(--sh-2);
  transform: translateY(-2px);
}
.card.hoverable,
.area-card,
.svc-detail,
.testimonial-card,
.step,
.quote-form,
.hours,
.hero-card {
  will-change: transform;
}
.card .icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 16px;
}
.card .icon.gold { background: var(--gold-100); color: #b07a10; }
.card .icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14.5px; }

.grid { display: grid; gap: 18px; }
.grid > *,
.hero-grid > *,
.quote-grid > *,
.footer-grid > *,
.steps > *,
.area-grid > *,
.svc-list > *,
.stats-grid > * {
  min-width: 0;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- Services preview ---------- */

.service-card { position: relative; overflow: hidden; }
.service-card .icon {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
}
.service-card ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 6px; }
.service-card li { font-size: 13.5px; color: var(--ink-2); display: flex; gap: 8px; }
.service-card li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue-400);
  margin-top: 9px; flex: none;
}

/* ---------- Why us ---------- */

.why { background: var(--bg-alt); }
.why .grid { gap: 16px; }
.why .card { background: #fff; }

/* ---------- How it works (now a soft blue panel, not dark navy) ---------- */

.howitworks {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(143,188,255,.4), transparent 60%),
    linear-gradient(180deg, var(--blue-50), #fff);
  position: relative;
  overflow: hidden;
}
.howitworks::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><g fill='none' stroke='%231a55c2' stroke-opacity='0.07'><circle cx='30' cy='30' r='1.4'/></g></svg>");
  background-size: 30px 30px;
  pointer-events: none;
}
.howitworks .container { position: relative; }

.steps {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 16px;
}
.step {
  position: relative;
  padding: 30px 24px 24px;
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.step .num {
  position: absolute;
  top: -18px; left: 22px;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: var(--sh-blue-sm);
}
.step h3 { margin: 6px 0 8px; }
.step p { font-size: 14.5px; }

/* ---------- Pricing table ---------- */

.price-table {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh-1);
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  text-align: left; padding: 18px 22px; font-size: 14.5px;
}
.price-table thead th {
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--blue-100);
}
.price-table tbody tr + tr td { border-top: 1px solid var(--line); }
.price-table tbody tr:hover td { background: var(--bg-alt); }
.price-table .fault { font-weight: 600; color: var(--ink); }
.price-table .price-cell {
  font-weight: 700;
  color: var(--blue-700);
  white-space: nowrap;
}
.price-table .time-cell { color: var(--ink-3); font-size: 13.5px; }
.price-disclaimer {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
  display: flex; gap: 8px; align-items: flex-start;
}
.price-disclaimer svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--blue-500); }

@media (max-width: 720px) {
  .price-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .price-table table { min-width: 640px; }
}

/* ---------- Testimonials ---------- */

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.testimonial-card:hover { border-color: var(--blue-200); box-shadow: var(--sh-2); transform: translateY(-2px); }
.testimonial-card .stars { display: flex; gap: 2px; color: var(--gold-500); margin-bottom: 14px; }
.testimonial-card .stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-card blockquote {
  margin: 0; padding: 0;
  font-size: 16px; line-height: 1.6; color: var(--ink);
}
.testimonial-card .author {
  margin-top: 18px;
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-card .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex: none;
}
.testimonial-card .author .name { font-weight: 600; font-size: 14.5px; }
.testimonial-card .author .loc { font-size: 12.5px; color: var(--ink-3); }

/* ---------- FAQ accordion ---------- */

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item .q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 22px;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.faq-item .q:hover { background: var(--bg-alt); }
.faq-item .q .chev {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .2s ease, color .2s ease;
  flex: none;
}
.faq-item[aria-expanded="true"] .q .chev {
  transform: rotate(180deg);
  background: var(--blue-500); color: #fff;
}
.faq-item .a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item[aria-expanded="true"] .a { grid-template-rows: 1fr; }
.faq-item .a > div { overflow: hidden; }
.faq-item .a p {
  padding: 0 22px 22px;
  font-size: 15px;
  color: var(--ink-2);
}

/* ---------- Quote section — now lighter ---------- */

.quote {
  background:
    radial-gradient(600px 400px at 90% 0%, rgba(195,219,255,.55), transparent 60%),
    linear-gradient(180deg, var(--bg-alt), var(--blue-50));
  position: relative;
  overflow: hidden;
}
.quote .container { position: relative; }
.quote-grid {
  display: grid; gap: 32px; align-items: start;
}
@media (min-width: 900px) { .quote-grid { grid-template-columns: 1fr 1.2fr; gap: 56px; } }

.quote-info { color: var(--ink-2); }
.quote-info .contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--blue-100);
}
.quote-info .contact-row:last-child { border-bottom: none; }
.quote-info .ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff;
  border: 1px solid var(--blue-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue-600);
  flex: none;
}
.quote-info .ci-icon svg { width: 20px; height: 20px; }
.quote-info .ci-label { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.quote-info .ci-value {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.quote-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-3);
  border: 1px solid var(--blue-100);
}
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(47,123,245,.18);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-foot { font-size: 12.5px; color: var(--ink-3); margin-top: 8px; }

/* ---------- Mobile bottom CTA bar ---------- */

.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px;
  box-shadow: 0 -8px 24px -10px rgba(15,42,86,.08);
}
.bottom-bar .btn { flex: 1; padding: 12px 14px; font-size: 14px; }
@media (min-width: 860px) { .bottom-bar { display: none; } }

/* ---------- Floating WhatsApp ---------- */

.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 41;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.55);
  border: none;
  transition: transform .2s ease;
}
.fab-whatsapp:hover { transform: scale(1.06); }
.fab-whatsapp svg { width: 28px; height: 28px; }
@media (min-width: 860px) {
  .fab-whatsapp { bottom: 24px; right: 24px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.48); }
  50% { box-shadow: 0 18px 34px -8px rgba(37,211,102,.68); }
}

.hero .eyebrow,
.hero h1,
.hero .lede,
.hero .trust-pills,
.hero .hero-actions,
.hero .hero-meta,
.subhero .crumbs,
.subhero .eyebrow,
.subhero h1,
.subhero p,
.hero-card,
.quote-form {
  animation: fadeUp .55s ease both;
}
.hero h1,
.subhero .eyebrow { animation-delay: .05s; }
.hero .lede,
.subhero h1 { animation-delay: .1s; }
.hero .trust-pills,
.subhero p { animation-delay: .15s; }
.hero .hero-actions { animation-delay: .2s; }
.hero .hero-meta,
.hero-card,
.quote-form { animation-delay: .25s; }
.fab-whatsapp { animation: softPulse 3s ease-in-out infinite; }

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

/* ---------- Footer (kept dark for grounding but in brand navy) ---------- */

.site-footer {
  background:
    radial-gradient(900px 300px at 10% 0%, rgba(47,123,245,.25), transparent 60%),
    var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 28px;
}
.site-footer h4 {
  color: #fff; font-size: 13px;
  margin-bottom: 14px; text-transform: uppercase;
  letter-spacing: 0.10em; font-weight: 600;
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.footer-grid .brand-col { grid-column: span 1; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-grid a:hover { color: var(--blue-300); }
.footer-grid .brand img { height: 60px; }
.footer-grid .brand-col p { font-size: 14px; max-width: 360px; margin-top: 14px; color: rgba(255,255,255,.6); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.5);
}

/* ---------- Subhero (light blue) ---------- */

.subhero {
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(143,188,255,.5), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--blue-100);
}
.subhero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><g fill='none' stroke='%231a55c2' stroke-opacity='0.07'><circle cx='30' cy='30' r='1.4'/></g></svg>");
  background-size: 30px 30px;
}
.subhero .container { position: relative; }
.subhero .crumbs {
  font-size: 13px; color: var(--ink-3);
  margin-bottom: 18px;
  display: flex; gap: 8px; align-items: center;
}
.subhero .crumbs a { color: var(--blue-600); font-weight: 500; }
.subhero .crumbs a:hover { color: var(--blue-700); }
.subhero h1 { max-width: 800px; }
.subhero p { color: var(--ink-2); max-width: 640px; margin-top: 14px; font-size: 17px; }

/* ---------- Area grid ---------- */

.area-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.area-card:hover { border-color: var(--blue-300); box-shadow: var(--sh-2); transform: translateY(-2px); }
.area-card .area-name { font-size: 18px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.area-card .area-name svg { width: 18px; height: 18px; color: var(--blue-500); }
.area-card .eta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}
.eta.same { background: #e7f7ef; color: #137a47; }
.eta.next { background: var(--blue-50); color: var(--blue-700); }
.area-card .suburbs { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }

/* ---------- Service detail ---------- */

.svc-list { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.svc-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  display: grid; gap: 14px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.svc-detail:hover { border-color: var(--blue-200); box-shadow: var(--sh-2); transform: translateY(-2px); }
.svc-detail .ic {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-blue-sm);
}
.svc-detail .ic svg { width: 24px; height: 24px; }
.svc-detail ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.svc-detail li { font-size: 14px; color: var(--ink-2); display: flex; gap: 10px; }
.svc-detail li svg { width: 16px; height: 16px; color: var(--success); flex: none; margin-top: 3px; }

/* Callout (cracked-screen honest note) */
.callout {
  background:
    linear-gradient(180deg, #fff8e7, #fff);
  border: 1px solid #f6d27a;
  border-radius: var(--r-lg);
  padding: 30px;
  display: grid; gap: 14px;
}
.callout .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-500); color: #4a3508;
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  width: fit-content;
}
.callout h3 { font-size: 22px; }
.callout p { font-size: 15px; }
.callout .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* ---------- Stats band (lighter — blue, not navy) ---------- */

.stats-band {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(195,219,255,.55), transparent 60%),
    linear-gradient(180deg, var(--bg-alt), var(--blue-50));
  padding: 64px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
}
.stats-band .container { position: relative; }
.stats-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  text-align: center;
}
.stats-grid .stat-num {
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0;
  line-height: 1;
}
.stats-grid .stat-lbl {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ---------- Hours table ---------- */

.hours {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.hours h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hours h3 svg { width: 20px; height: 20px; color: var(--blue-500); }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--ink); font-weight: 500; }
.hours-row .time { color: var(--ink-2); }
.hours-row.closed .time { color: #c44848; }

/* utility */
.center { text-align: center; }
.muted { color: var(--ink-3); }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .site-header .container { height: 64px; }
  .brand img { height: 38px; }
  .mobile-drawer {
    inset: 64px 0 0 0;
    padding: 18px 16px;
  }
  .hero,
  .subhero {
    padding: 48px 0 54px;
  }
  .hero-grid { gap: 32px; }
  .hero .lede,
  .subhero p,
  .section-head p {
    font-size: 16px;
  }
  .hero .lede,
  .hero-actions,
  .trust-pills,
  .hero-meta {
    max-width: 340px;
  }
  h1 {
    font-size: 28px;
    line-height: 1.12;
  }
  .hero h1 {
    max-width: 12ch;
  }
  h1, h2, h3, p {
    text-wrap: wrap;
  }
  .hero-actions,
  .callout .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn,
  .callout .btn {
    width: 100%;
  }
  .hero-meta {
    gap: 18px;
    margin-top: 28px;
    padding-top: 22px;
  }
  .hero-card,
  .quote-form,
  .card,
  .svc-detail,
  .hours {
    padding: 22px;
  }
  .hero-showcase .hero-card {
    margin: -34px 12px 0;
  }
  .hero-photo {
    min-height: 240px;
  }
  .photo-strip {
    grid-template-columns: minmax(0, 1fr);
  }
  .photo-strip .section-photo.featured {
    grid-column: auto;
  }
  .subhero.with-photo .container {
    gap: 24px;
  }
  .subhero-photo {
    aspect-ratio: 4 / 3;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .area-grid,
  .svc-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .btn {
    white-space: normal;
    line-height: 1.2;
  }
  .bottom-bar .btn {
    white-space: nowrap;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    gap: 6px;
    font-size: 13px;
  }
  .quote-info .contact-row {
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 28px;
    line-height: 1.12;
  }
  h2 { font-size: 27px; }
  .card p { font-size: 14px; }
  .trust-pills .pill {
    width: 100%;
    justify-content: center;
  }
  .hero-card .price-row {
    display: grid;
    gap: 4px;
  }
  .hours-row {
    gap: 16px;
  }
}
