/* =============================================================
   LOCKSMITH WODONGA - SHARED STYLESHEET
   All pages reference this file. Edit once, applies everywhere.
   ============================================================= */

:root {
  --ink: #0C1B2E;
  --ink-soft: #1C2B41;
  --cream: #F4EEE2;
  --cream-2: #EBE3D2;
  --paper: #FBF8F2;
  --white: #ffffff;
  --accent: #E85D32;
  --accent-dark: #C24216;
  --gold: #C8A35C;
  --steel: #3D6B8E;
  --muted: #6B6155;
  --border: rgba(12, 27, 46, 0.12);
  --border-strong: rgba(12, 27, 46, 0.22);
  --shadow-sm: 0 1px 2px rgba(12,27,46,0.04), 0 2px 6px rgba(12,27,46,0.04);
  --shadow-md: 0 4px 14px rgba(12,27,46,0.07), 0 12px 32px rgba(12,27,46,0.06);
  --shadow-lg: 0 20px 50px rgba(12,27,46,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.serif { font-family: 'Fraunces', Georgia, serif; }
.italic { font-style: italic; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* =========================================================
   EMERGENCY BAR
   ========================================================= */
.emergency-bar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.emergency-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 20px;
}
.emergency-bar .pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232, 93, 50, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 93, 50, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(232, 93, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 93, 50, 0); }
}
.emergency-bar .right {
  display: flex;
  gap: 22px;
  align-items: center;
  opacity: 0.9;
}
.emergency-bar .sep {
  width: 1px; height: 14px;
  background: rgba(244,238,226,0.25);
}
.emergency-bar a.phone {
  font-weight: 600;
  color: var(--accent);
}

/* =========================================================
   NAV
   ========================================================= */
nav.main {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}
nav.main .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.logo .sub {
  display: block;
  font-size: 11px;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links > li {
  display: flex;
  align-items: center;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
}

/* Dropdown menu */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown > a::after {
  display: none;
}
.nav-dropdown > a .chev {
  width: 10px;
  height: 10px;
  display: block;
  transition: transform .2s ease;
  margin-top: 1px;
}
.nav-dropdown:hover > a .chev,
.nav-dropdown:focus-within > a .chev {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 60;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 12px;
}
.dropdown-menu li {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: all .15s ease;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--accent);
}
.dropdown-menu a.active {
  color: var(--accent);
  background: var(--cream);
}
.dropdown-menu a.active::after { display: none; }
.dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 4px;
}
.dropdown-menu .dropdown-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile menu toggle — hidden on desktop, visible on mobile */
.mobile-toggle {
  display: none;
}
.mobile-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-left: 4px;
  transition: background .2s;
}
.mobile-toggle-label:hover {
  background: var(--cream-2);
}
.mobile-toggle-label .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: all .25s ease;
}
.mobile-toggle-label .bar::before,
.mobile-toggle-label .bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s ease;
}
.mobile-toggle-label .bar::before { top: -7px; }
.mobile-toggle-label .bar::after { top: 7px; }
.mobile-toggle:checked + .mobile-toggle-label .bar {
  background: transparent;
}
.mobile-toggle:checked + .mobile-toggle-label .bar::before {
  top: 0;
  transform: rotate(45deg);
}
.mobile-toggle:checked + .mobile-toggle-label .bar::after {
  top: 0;
  transform: rotate(-45deg);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--ink-soft); }
.btn-ghost {
  border: 1.5px solid var(--border-strong);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.btn-big {
  padding: 18px 30px;
  font-size: 16px;
}

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--ink);
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.028em;
}
h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h2 em { font-style: italic; font-weight: 300; color: var(--accent); }

/* =========================================================
   HERO (homepage)
   ========================================================= */
section.hero {
  position: relative;
  padding: 64px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
h1.hero-h {
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 0.96;
  color: var(--ink);
  margin-bottom: 28px;
}
h1.hero-h em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
h1.hero-h .underline {
  position: relative;
  display: inline-block;
}
h1.hero-h .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 8px;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 2px;
  z-index: -1;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 510px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.phone-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 16px;
  background: var(--ink);
  border-radius: 999px;
  color: var(--cream);
  transition: transform .2s;
}
.phone-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.phone-cta .ic {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-cta .num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.phone-cta small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}

.trust-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stars {
  display: flex;
  gap: 2px;
  color: #F5A623;
  font-size: 17px;
  letter-spacing: 0;
}
.trust-item .tx { font-size: 13.5px; line-height: 1.25; }
.trust-item .tx strong { font-weight: 600; }
.trust-item .tx span { color: var(--muted); display: block; font-size: 12px; }
.trust-divider { width: 1px; height: 32px; background: var(--border-strong); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 680px;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a5c 0%, #0C1B2E 100%);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,27,46,0) 40%, rgba(12,27,46,0.45) 100%);
}
.float-card {
  position: absolute;
  background: var(--paper);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.5);
}
.float-rating {
  bottom: 30px;
  left: -30px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.float-rating .big {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}
.float-rating .lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }
.float-response {
  top: 40px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}
.float-response .dot-green {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 0 rgba(43,182,115,0.5);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(43,182,115,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(43,182,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,182,115,0); }
}
.float-response .txt { font-size: 13px; }
.float-response .txt strong { display: block; font-weight: 600; font-size: 14px; }
.float-response .txt span { color: var(--muted); font-size: 12px; }
.float-badge {
  top: -18px;
  right: 40px;
  background: var(--accent);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,163,92,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* =========================================================
   PAGE HERO (used on inner pages)
   ========================================================= */
section.page-hero {
  padding: 80px 0 70px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,163,92,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}
h1.page-h {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.98;
  margin-bottom: 26px;
  color: var(--ink);
}
h1.page-h em { font-style: italic; font-weight: 300; color: var(--accent); }
.page-hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  align-items: center;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.sep { opacity: 0.5; }
.breadcrumb span.current { color: var(--ink); font-weight: 500; }

/* =========================================================
   STATS STRIP
   ========================================================= */
section.stats {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  display: flex;
  gap: 18px;
  align-items: center;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.stat-label {
  font-size: 13.5px;
  line-height: 1.35;
  opacity: 0.8;
}
.stat-label strong {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 15px;
  opacity: 1;
  margin-bottom: 3px;
}

/* =========================================================
   SERVICES
   ========================================================= */
section.services {
  padding: 100px 0;
  background: var(--cream);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}
.section-head .txt { max-width: 620px; }
.section-head p {
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 400px;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc {
  background: var(--paper);
  border-radius: 14px;
  padding: 28px 26px;
  transition: all .25s;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.svc:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.svc:hover h3 { color: var(--cream); }
.svc:hover p { color: rgba(244,238,226,0.7); }
.svc:hover .svc-ic { background: var(--accent); color: white; }
.svc:hover .svc-more { color: var(--accent); }
.svc-ic {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all .25s;
  color: var(--ink);
}
.svc h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--ink);
  transition: color .2s;
}
.svc p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
  transition: color .2s;
}
.svc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}
.svc:hover .svc-meta { border-top-color: rgba(244,238,226,0.15); }
.svc-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-more { font-size: 13px; transition: color .2s; }
.svc-emergency {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.svc-emergency h3 { color: var(--cream); }
.svc-emergency p { color: rgba(244,238,226,0.7); }
.svc-emergency .svc-ic { background: var(--accent); color: white; }
.svc-emergency .svc-meta { border-top-color: rgba(244,238,226,0.15); }
.svc-emergency::before {
  content: '24/7';
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 9px;
  border-radius: 6px;
}

/* =========================================================
   ABOUT / TWO-COLUMN SPLIT
   ========================================================= */
section.about {
  padding: 110px 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 5/6;
  max-height: 620px;
}
.about-img {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--ink);
  color: var(--cream);
  padding: 28px 32px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.about-accent-box .n {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.about-accent-box .l {
  font-size: 13.5px;
  line-height: 1.4;
  opacity: 0.8;
}
.about-txt h2 { margin-bottom: 28px; }
.about-txt > p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 36px 0;
}
.feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feat-check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feat .ft { font-size: 15px; font-weight: 500; }
.feat .ft span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 2px;
}

/* =========================================================
   PROCESS
   ========================================================= */
section.process {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.process-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}
.process-head p {
  color: var(--ink-soft);
  font-size: 16.5px;
  margin-top: 20px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-image: linear-gradient(to right, var(--border-strong) 50%, transparent 50%);
  background-size: 12px 2px;
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--border-strong);
}
.step:nth-child(2) .step-num {
  background: var(--ink);
  color: var(--accent);
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
section.reviews {
  padding: 110px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
section.reviews h2 { color: var(--cream); }
section.reviews h2 em { color: var(--accent); }
section.reviews .section-head p { color: rgba(244,238,226,0.7); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 13px;
}
.google-badge .g-logo {
  width: 18px; height: 18px;
  background: conic-gradient(from 0deg, #4285F4 0 25%, #34A853 25% 50%, #FBBC04 50% 75%, #EA4335 75%);
  border-radius: 50%;
  position: relative;
}
.google-badge .g-logo::after {
  content: 'G';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
  font-family: sans-serif;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 28px 24px;
  position: relative;
}
.review-quote {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 0;
  color: var(--accent);
  position: absolute;
  top: 28px;
  right: 28px;
  opacity: 0.6;
}
.review .stars { margin-bottom: 14px; }
.review blockquote {
  font-size: 15.5px;
  line-height: 1.62;
  color: rgba(244,238,226,0.88);
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.rv-name { font-weight: 600; font-size: 14.5px; }
.rv-meta { font-size: 12.5px; color: rgba(244,238,226,0.55); }

/* =========================================================
   AREAS
   ========================================================= */
section.areas {
  padding: 90px 0;
  background: var(--paper);
}
.areas-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: center;
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 26px;
  margin-top: 30px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink-soft);
}
.area-item svg { flex-shrink: 0; }
.areas-map {
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  max-width: 420px;
  margin-left: auto;
}
.areas-map svg { width: 100%; height: 100%; }

/* =========================================================
   FAQ
   ========================================================= */
section.faq {
  padding: 110px 0;
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-side h2 { margin-bottom: 20px; }
.faq-side p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 28px;
}
.faq-item {
  border-bottom: 1px solid var(--border-strong);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-strong); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  gap: 20px;
}
.faq-q .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
  font-size: 18px;
  font-weight: 400;
}
.faq-item[open] .plus { background: var(--accent); color: white; transform: rotate(45deg); }
.faq-a {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  margin-top: 14px;
  padding-right: 50px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
section.cta-banner {
  padding: 40px 0 80px;
  background: var(--cream);
}
.cta-inner {
  background: var(--ink);
  border-radius: 24px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,50,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  color: var(--cream);
  max-width: 500px;
  margin-bottom: 24px;
}
.cta-inner h2 em { color: var(--accent); }
.cta-inner p {
  font-size: 16.5px;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 450px;
}
.cta-right {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 30px;
}
.cta-right h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-form input, .quick-form select, .quick-form textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: white;
  font: inherit;
  font-size: 14.5px;
}
.quick-form textarea { resize: vertical; min-height: 90px; }
.quick-form input::placeholder,
.quick-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.quick-form select option {
  color: var(--ink);
  background: var(--paper);
}
.quick-form button {
  margin-top: 4px;
  padding: 15px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
}
.quick-form button:hover { background: var(--accent-dark); }
.quick-form .mini {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 6px;
  text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--cream);
  padding: 80px 0 30px;
  color: var(--ink);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.foot-grid h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.foot-grid ul { list-style: none; }
.foot-grid ul li { margin-bottom: 10px; }
.foot-grid ul a {
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color .2s;
}
.foot-grid ul a:hover { color: var(--accent); }
.foot-brand p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 300px;
}
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

/* =========================================================
   STICKY MOBILE CALL BUTTON
   ========================================================= */
.sticky-call {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  padding: 14px 22px 14px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 15px;
  z-index: 100;
  transition: transform .2s;
}
.sticky-call:hover { transform: translateY(-2px); }
.sticky-call .ic-w {
  width: 36px; height: 36px;
  background: white;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   PAGE-SPECIFIC: SERVICES PAGE
   ========================================================= */
.service-detail {
  padding: 90px 0;
  background: var(--paper);
}
.service-detail:nth-of-type(even) { background: var(--cream); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-grid .sd-visual {
  aspect-ratio: 4/3;
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.service-detail-grid .sd-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-detail-grid h2 { margin-bottom: 22px; }
.service-detail-grid > div > p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-detail-grid ul {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-detail-grid ul li {
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink-soft);
  align-items: flex-start;
}
.service-detail-grid ul li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 10px;
}
.sd-pricing {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 24px;
  font-family: 'Fraunces', serif;
}
.service-detail:nth-of-type(even) .sd-pricing { background: var(--cream-2); }
.sd-pricing .from {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Figtree', sans-serif;
}
.sd-pricing .price {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
}

/* =========================================================
   PAGE-SPECIFIC: TEAM GRID (ABOUT PAGE)
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.team-card {
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .photo {
  aspect-ratio: 4/5;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.team-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card .body { padding: 24px; }
.team-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--ink);
}
.team-card .role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* =========================================================
   PAGE-SPECIFIC: VALUES (ABOUT)
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.value-card {
  padding: 36px 30px;
  background: var(--paper);
  border-radius: 14px;
  border-top: 3px solid var(--accent);
}
.value-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--ink);
}
.value-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================================================
   PAGE-SPECIFIC: AUTOMOTIVE MAKES GRID
   ========================================================= */
.makes-section {
  padding: 90px 0;
  background: var(--paper);
}
.makes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 50px;
}
.make-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  transition: all .2s;
}
.make-chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.make-chip .name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 2px;
}
.make-chip .price {
  font-size: 12px;
  color: var(--muted);
}

/* =========================================================
   PAGE-SPECIFIC: REVIEWS PAGE - LARGER GRID
   ========================================================= */
.reviews-all {
  padding: 80px 0 100px;
  background: var(--ink);
  color: var(--cream);
}
.reviews-all h2 { color: var(--cream); }
.reviews-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.review-filters {
  display: flex;
  gap: 10px;
  margin: 40px 0 0;
  flex-wrap: wrap;
}
.review-filter {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.review-filter:hover, .review-filter.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* =========================================================
   PAGE-SPECIFIC: CONTACT PAGE
   ========================================================= */
section.contact-main {
  padding: 80px 0 100px;
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info h2 { margin-bottom: 28px; }
.contact-info > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-method {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all .2s;
}
.contact-method:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-method .ic {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method .details h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-method .details .big {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-method .details small {
  color: var(--muted);
  font-size: 13.5px;
}
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.contact-form-card > p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form button {
  padding: 18px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
  transition: background .2s;
}
.contact-form button:hover { background: var(--accent-dark); }
.contact-hours {
  margin-top: 30px;
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
}
.contact-hours h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-hours .row-h {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.contact-hours .row-h:last-child { border-bottom: none; }
.contact-hours .row-h.emergency { color: var(--accent); font-weight: 600; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .areas-grid, .faq-grid, .cta-grid,
  .service-detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-detail-grid.reverse { direction: ltr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .team-grid, .values-grid, .reviews-all-grid { grid-template-columns: 1fr; }
  .makes-grid { grid-template-columns: repeat(3, 1fr); }

  /* Mobile nav menu — show hamburger, turn links into a drawer */
  .mobile-toggle-label { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
  nav.main { position: relative; }
  nav.main .wrap { gap: 12px; flex-wrap: wrap; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 99;
    flex-basis: 100%;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease, opacity .25s ease;
    opacity: 0;
    border-top: 1px solid transparent;
  }
  .mobile-toggle:checked ~ .nav-links {
    max-height: 800px;
    opacity: 1;
    padding: 14px 0 18px;
    border-top-color: var(--border);
  }
  .nav-links > li {
    display: block;
    width: 100%;
  }
  .nav-links > li > a {
    display: block;
    padding: 12px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links > li:last-child > a {
    border-bottom: none;
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { font-weight: 600; }

  /* Mobile dropdown — make it inline rather than absolute popup */
  .nav-dropdown > a {
    justify-content: space-between;
  }
  .nav-dropdown:hover > a .chev,
  .nav-dropdown:focus-within > a .chev {
    transform: none;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 6px 16px;
    min-width: 0;
    margin-top: 0;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-menu a {
    padding: 9px 8px;
    font-size: 14.5px;
    color: var(--ink-soft);
    border-radius: 6px;
  }

  nav.main .wrap { gap: 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 50px; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { padding: 50px 30px; }
  .about-accent-box { position: static; margin-top: 20px; max-width: none; }
  .float-card { position: static; margin-top: 16px; }
  .hero-visual { aspect-ratio: 4/3; }
  .emergency-bar .wrap { flex-direction: column; gap: 8px; text-align: center; }
  .emergency-bar .right { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-ghost { text-align: center; justify-content: center; }
  .trust-row { gap: 16px; }
  .trust-divider { display: none; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .logo .sub { display: none; }
  .logo > div > div:first-child { font-size: 19px; }
  .logo-mark { width: 36px; height: 36px; font-size: 17px; }
  nav.main .nav-cta .btn { padding: 11px 16px; font-size: 13.5px; }
  nav.main .wrap { padding-top: 14px; padding-bottom: 14px; }
  .makes-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .make-chip { padding: 18px 10px; }
  .make-chip .name { font-size: 15px; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-num { font-size: 44px; }
  h1.hero-h { font-size: 42px; }
  h1.page-h { font-size: 38px; }
  h2 { font-size: 32px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .emergency-bar { font-size: 12px; }
  .emergency-bar .right > span:first-child { display: none; }
  .emergency-bar .sep { display: none; }
  .cta-inner { padding: 40px 22px; border-radius: 16px; }
  .cta-right { padding: 22px; }
  .phone-cta .num { font-size: 19px; }
  .page-hero { padding: 60px 0 50px; }
  .services { padding: 70px 0; }
  .about, .process, .faq { padding: 70px 0; }
  .reviews { padding: 70px 0; }
  .sticky-call { padding: 12px 18px 12px 12px; font-size: 14px; }
  .sticky-call .ic-w { width: 32px; height: 32px; }
  .contact-method { padding: 18px; gap: 14px; }
  .contact-method .details .big { font-size: 18px !important; word-break: break-word; }
  .contact-form-card h3 { font-size: 24px; }
  .float-badge { font-size: 11px; padding: 8px 14px; }
}

