/* ==========================================================================
   PHILA LOCKSMITH — MAIN STYLESHEET
   Consolidated from the static HTML site. Covers home, service, location,
   blog, and generic page layouts.
   ========================================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===== THEME VARIABLES ===== */
:root {
  --navy:    #0B1F4B;
  --gold:    #C9A227;
  --gold-lt: #E8C14A;
  --white:   #FFFFFF;
  --charcoal:#111827;
  --gray-lt: #F4F6FA;
  --gray-mid:#E2E8F0;
  --text-muted: #64748B;
}

/* ===== UTILITY ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ===== SECTION TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--charcoal);
  padding: 9px 0;
  font-size: 13px;
  color: #CBD5E1;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold); text-decoration: none; font-weight: 600; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* ===== NAVBAR ===== */
nav.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1160px;
  margin: 0 auto;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #CBD5E1;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a { color: var(--gold); background: rgba(255,255,255,0.05); }
.nav-cta { margin-left: 16px; }
.nav-dropdown, .menu-item-has-children { position: relative; }
.nav-dropdown > a,
.menu-item-has-children > a { display: flex !important; align-items: center; gap: 5px; }
.dropdown-menu,
.menu-item-has-children > .sub-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: #0d2255; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; min-width: 220px; padding: 6px 0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4); z-index: 200; list-style: none;
}
.nav-dropdown:hover .dropdown-menu,
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu { display: block; }
.dropdown-menu li a,
.menu-item-has-children .sub-menu li a {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 13px; color: #CBD5E1; text-decoration: none;
  padding: 10px 18px; transition: color 0.2s, background 0.2s;
}
.dropdown-menu li a:hover,
.menu-item-has-children .sub-menu li a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0; list-style: none; }
.nav-chevron { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-chevron,
.menu-item-has-children:hover .nav-chevron { transform: rotate(180deg); }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: transparent; border: none; color: var(--white);
  width: 44px; height: 44px; padding: 8px; cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; fill: var(--white); }

/* ===== HOME HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2860 55%, #122c72 100%);
  position: relative; overflow: hidden; padding: 96px 0 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 30px; padding: 6px 16px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge span.dot, .hero-badge .dot {
  width: 8px; height: 8px; background: #22C55E; border-radius: 50%;
  display: inline-block; animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(34px, 4.5vw, 58px); line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 18px; color: #94A3B8; line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 30px; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 13px; color: #94A3B8; margin-top: 4px; }

/* Hero right card (home) */
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 36px;
}
.hero-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; color: var(--white); margin-bottom: 6px; }
.hero-card p { font-size: 14px; color: #94A3B8; margin-bottom: 24px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-list li {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 14px 16px;
  color: #E2E8F0; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.service-list li:hover { border-color: var(--gold); background: rgba(201,162,39,0.08); }
.service-list li svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }
.hero-card-footer {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 10px;
}
.hero-card-footer .availability,
span.availability { width: 10px; height: 10px; background: #22C55E; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,197,94,0.25); display: inline-block; }
/* Reset: .availability as a <p> tag (contact page sidebar) should render as normal text */
p.availability { width: auto; height: auto; background: none; border-radius: 0; box-shadow: none; }
.hero-card-footer span { font-size: 13px; color: #94A3B8; }

/* ===== PAGE HERO (service / location / generic) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2860 55%, #122c72 100%);
  position: relative; overflow: hidden; padding: 80px 0 72px; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.1;
  color: var(--white); margin-bottom: 18px;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero .hero-sub { font-size: 17px; color: #94A3B8; line-height: 1.75; margin-bottom: 28px; max-width: 680px; }
.page-hero-inner-simple { max-width: 820px; }
/* Centered hero layout used on locations archive and some service pages */
.hero-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-coverage { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; color: #64748B; }
.hero-coverage svg { width: 16px; height: 16px; fill: var(--gold); }
/* Individual city pages use 2-col grid hero (left copy + right panel) */
body.single-location .hero-inner { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: center; text-align: left; max-width: unset; margin: 0; }
body.single-location .hero-stats { margin-top: 32px; padding-top: 0; border-top: none; gap: 28px; flex-wrap: wrap; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--gold); padding: 14px 0; }
/* Locations archive uses white trust bar (matches original locations/index.html) */
body.post-type-archive-location .trust-bar { background: var(--white); border-bottom: 2px solid var(--gray-mid); padding: 16px 0; }
body.post-type-archive-location .trust-item { color: var(--charcoal); }
body.post-type-archive-location .trust-item svg { fill: var(--gold); }
/* Individual city pages also use white trust bar */
body.single-location .trust-bar { background: var(--white); border-bottom: 2px solid var(--gray-mid); padding: 16px 0; }
body.single-location .trust-item { color: var(--charcoal); }
body.single-location .trust-item svg { fill: var(--gold); }
.trust-bar .container {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px;
  color: var(--navy); letter-spacing: 0.5px;
}
.trust-item svg { width: 18px; height: 18px; fill: var(--navy); }

/* ===== SERVICES GRID (home) ===== */
.services { padding: 88px 0; background: var(--white); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.service-card {
  border: 1.5px solid var(--gray-mid); border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative; overflow: hidden; cursor: pointer; background: var(--white);
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.2s;
}
.service-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(11,31,75,0.1); transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured { background: var(--navy); border-color: var(--navy); }
.service-card.featured .service-icon-wrap { background: rgba(201,162,39,0.15); }
.service-card.featured .service-icon-wrap svg { fill: var(--gold); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: #94A3B8; }
.service-card.featured .service-link { color: var(--gold); }
.service-card.featured::after { background: var(--gold); transform: scaleX(1); }
.service-icon-wrap {
  width: 52px; height: 52px; background: #EFF4FF;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon-wrap svg { width: 26px; height: 26px; fill: var(--navy); }
.service-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--navy); margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.service-link {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 13px; color: var(--navy); text-decoration: none;
  letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px;
}
.service-link svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.2s; }
.service-link:hover svg { transform: translateX(3px); }

/* ===== HOME CAR MAKES GRID — 5-col, compact cards ===== */
.home-makes { /* section wrapper — styles via inline or .home-makes */ }
.home-makes-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin-bottom: 32px;
}
.home-makes-grid .make-card {
  background: #fff; border: 1.5px solid var(--gray-mid);
  border-radius: 10px; padding: 18px 12px; text-align: center;
  text-decoration: none; display: block;
  transition: border-color .2s, box-shadow .2s;
}
.home-makes-grid .make-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,162,39,0.15); }
.home-makes-grid .make-card-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 15px; color: var(--navy);
}
.home-makes-grid .make-card-models { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 1024px) { .home-makes-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .home-makes-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== WHY CHOOSE US ===== */
.why { padding: 88px 0; background: var(--gray-lt); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-left .section-title { margin-bottom: 20px; }
.why-left .section-subtitle { margin-bottom: 36px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feat { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.feat-text h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--navy); margin-bottom: 4px;
}
.feat-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.why-right { position: relative; }
.why-card-main {
  background: var(--navy); border-radius: 16px;
  padding: 40px; color: var(--white);
}
.why-card-main h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--white); margin-bottom: 8px; }
.why-card-main p { color: #94A3B8; font-size: 15px; margin-bottom: 28px; }
.rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.rating-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: var(--white); }
.rating-count { font-size: 13px; color: #94A3B8; }
.review-cards { display: flex; flex-direction: column; gap: 12px; }
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 16px;
}
.review-card .reviewer { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: var(--gold); margin-bottom: 4px; }
.review-card .review-text { font-size: 13px; color: #CBD5E1; line-height: 1.5; }
.badge-float {
  position: absolute; top: -16px; right: -16px;
  background: var(--gold); border-radius: 50%;
  width: 80px; height: 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}
.badge-float span:first-child { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 17px; color: var(--navy); line-height: 1; }
.badge-float span:last-child { font-size: 10px; font-weight: 700; color: var(--navy); text-align: center; line-height: 1.2; }

/* ===== ABOUT ===== */
.about { padding: 88px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.about-content p strong { color: var(--navy); font-weight: 700; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.highlight-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-lt); border: 1px solid var(--gray-mid);
  border-radius: 8px; padding: 12px 14px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.highlight-item .hi-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--navy); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.highlight-item .hi-icon svg { width: 17px; height: 17px; fill: var(--gold); }
.about-stats-panel {
  background: var(--navy); border-radius: 16px; padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.about-stat {
  text-align: center; padding: 20px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 36px; color: var(--gold); line-height: 1;
  display: block; margin-bottom: 6px;
}
.about-stat-label { font-size: 12px; color: #94A3B8; font-weight: 500; line-height: 1.4; }
.about-stat.wide {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px;
  text-align: left; padding: 20px 24px;
}
.about-stat.wide .about-stat-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(201,162,39,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.about-stat.wide .about-stat-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.about-stat.wide .about-stat-num { font-size: 28px; }
.about-stat.wide .about-stat-label { color: #CBD5E1; font-size: 13px; line-height: 1.5; }

/* ===== EMERGENCY BANNER ===== */
.emergency {
  background: linear-gradient(135deg, #8B1A1A 0%, #B91C1C 100%);
  padding: 48px 0; position: relative; overflow: hidden;
}
.emergency::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 14px);
}
.emergency .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap; position: relative;
}
.emergency-left h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(24px, 3vw, 36px); color: var(--white); margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.emergency-key {
  width: 34px; height: 34px; fill: var(--gold); flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.emergency-left p { color: rgba(255,255,255,0.8); font-size: 16px; }
.emergency-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.phone-big {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.phone-big svg { width: 32px; height: 32px; fill: var(--gold); animation: ring 2s infinite; }
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(0); }
}

/* ===== AREAS SERVED ===== */
.areas { padding: 72px 0; background: var(--white); }
.areas-header { text-align: center; margin-bottom: 40px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.area-pill {
  background: var(--gray-lt); border: 1px solid var(--gray-mid);
  border-radius: 8px; padding: 12px 16px; text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 13px; color: var(--navy);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 0.2s, border-color 0.2s; cursor: pointer;
  text-decoration: none;
}
.area-pill:hover { background: #EFF4FF; border-color: var(--navy); }
.area-pill svg { width: 14px; height: 14px; fill: var(--gold); }

/* ===== FAQ ===== */
.faq { padding: 88px 0; background: var(--gray-lt); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: var(--navy); box-shadow: 0 4px 20px rgba(11,31,75,0.08); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; gap: 16px; user-select: none;
}
.faq-question-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); line-height: 1.4; }
.faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: var(--gray-lt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon { background: var(--navy); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; fill: var(--navy); }
.faq-item.open .faq-icon svg { fill: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.faq-answer a { color: var(--navy); font-weight: 600; }
.faq-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.faq-cta-card { background: var(--navy); border-radius: 14px; padding: 32px; color: var(--white); }
.faq-cta-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--white); margin-bottom: 10px; }
.faq-cta-card p { font-size: 14px; color: #94A3B8; line-height: 1.65; margin-bottom: 24px; }
.faq-cta-card .btn-primary { width: 100%; justify-content: center; }
.faq-hours-card { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: 14px; padding: 28px; }
.faq-hours-card h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--navy); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.faq-hours-card h4 svg { width: 16px; height: 16px; fill: var(--gold); }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--gray-mid); font-size: 13px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--charcoal); font-weight: 600; }
.hours-row .time { color: var(--text-muted); text-align: right; font-size: 12px; }
/* hours-panel = navy background card (emergency, location pages) — needs light text */
.hours-panel .hours-row { border-bottom-color: rgba(255,255,255,0.08); padding: 14px 0; }
.hours-panel .hours-row:last-of-type { border-bottom: none; }
.hours-panel .hours-row .day { color: #CBD5E1; font-size: 14px; }
.hours-panel .hours-row .time { color: var(--gold); font-weight: 700; font-size: 14px; font-family: 'Montserrat', sans-serif; text-align: right; }
.hours-badge {
  display: inline-block; background: rgba(201,162,39,0.12);
  color: var(--gold); font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 2px 8px; border-radius: 20px; margin-left: 6px;
}

/* ===== MOBILE SERVICE 3-STEP ===== */
.mobile-service {
  background: var(--navy); padding: 72px 0; color: var(--white);
}
.mobile-service .section-label { color: var(--gold); }
.mobile-service .section-title { color: var(--white); }
.mobile-service .section-subtitle { color: #94A3B8; margin: 0 auto 48px; text-align: center; }
.mobile-service-header { text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 28px; text-align: center;
}
.step-num {
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px;
}
.step-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; color: var(--white); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: #94A3B8; line-height: 1.6; }

/* ===== KEY TECH TABLE ===== */
.tech-table-wrap { overflow-x: auto; border: 1px solid var(--gray-mid); border-radius: 10px; background: #fff; }
.tech-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tech-table thead th {
  background: var(--navy); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  padding: 12px 14px; text-align: left; font-size: 13px;
  letter-spacing: 0.5px;
}
.tech-table tbody td {
  padding: 12px 14px; border-bottom: 1px solid var(--gray-mid);
  color: var(--charcoal);
}
.tech-table tbody tr:last-child td { border-bottom: none; }
.tech-table tbody tr:nth-child(even) td { background: var(--gray-lt); }
.tech-table .time-col { font-weight: 700; color: var(--navy); white-space: nowrap; }
.tech-table-footnote { font-size: 12px; color: var(--text-muted); margin-top: 10px; line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery { padding: 72px 0; background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--gray-mid);
  background: var(--gray-lt);
}
.gallery-item img, .gallery-item picture, .gallery-item picture img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  background: rgba(11,31,75,0.72);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; font-size: 12px; font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* ===== BLOG ===== */
.blog-archive { padding: 72px 0; background: var(--gray-lt); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: #fff; border: 1px solid var(--gray-mid);
  border-radius: 12px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(11,31,75,0.08); transform: translateY(-3px); }
.blog-card-thumb { aspect-ratio: 16 / 9; background: var(--gray-lt); overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.blog-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--navy); line-height: 1.3; margin-bottom: 10px;
}
.blog-card h3 a { text-decoration: none; color: inherit; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-card .read-more {
  margin-top: auto; font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 13px; color: var(--navy); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.blog-card .read-more:hover { color: var(--gold); }

.post-single { padding: 72px 0; background: #fff; }
.post-single .post-header { max-width: 760px; margin: 0 auto 32px; }
.post-single .post-meta { font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.post-single h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(28px, 3.5vw, 42px); line-height: 1.2;
  color: var(--navy); margin-bottom: 16px;
}
.post-single .post-featured { max-width: 960px; margin: 0 auto 32px; border-radius: 14px; overflow: hidden; }
.post-content {
  max-width: 760px; margin: 0 auto;
  font-size: 17px; line-height: 1.8; color: #1f2937;
}
.post-content h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: var(--navy); margin: 36px 0 14px; }
.post-content h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); margin: 28px 0 12px; }
.post-content p { margin-bottom: 18px; }
.post-content a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.post-content a:hover { color: var(--gold); }
.post-content ul, .post-content ol { margin: 0 0 18px 22px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gray-lt);
  padding: 16px 22px;
  margin: 24px 0;
  font-style: italic;
  color: #334155;
}
.post-content img { border-radius: 10px; margin: 20px 0; }

/* ===== GENERIC PAGE CONTENT ===== */
.page-content-section { padding: 72px 0; background: #fff; }
.page-content-section .entry {
  max-width: 860px; margin: 0 auto;
  font-size: 17px; line-height: 1.8; color: #1f2937;
}
.page-content-section .entry h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: var(--navy); margin: 36px 0 14px; }
.page-content-section .entry h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); margin: 28px 0 12px; }
.page-content-section .entry p { margin-bottom: 18px; }
.page-content-section .entry a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.page-content-section .entry a:hover { color: var(--gold); }
.page-content-section .entry ul, .page-content-section .entry ol { margin: 0 0 18px 22px; }
.page-content-section .entry li { margin-bottom: 8px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex; justify-content: center; gap: 6px; margin: 48px 0 0;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--navy); background: #fff;
  border: 1px solid var(--gray-mid); border-radius: 6px;
  text-decoration: none;
}
.pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }
.pagination .page-numbers.current:hover { color: #fff; }

/* ===== 404 ===== */
.err-404 { padding: 120px 0; text-align: center; background: var(--white); }
.err-404 h1 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(48px, 8vw, 100px); color: var(--navy); line-height: 1; margin-bottom: 12px; }
.err-404 p { font-size: 18px; color: var(--text-muted); margin-bottom: 28px; }

/* ===== SEARCH FORM ===== */
.searchform {
  display: flex; gap: 8px; max-width: 520px; margin: 24px auto 0;
}
.searchform input[type="search"] {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--gray-mid);
  border-radius: 6px; font-size: 15px; font-family: inherit;
}
.searchform input[type="search"]:focus { outline: none; border-color: var(--navy); }
.searchform button { padding: 12px 22px; }

/* ===== FOOTER ===== */
footer.site-footer { background: var(--charcoal); padding: 56px 0 0; }
footer .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .logo-name { font-size: 20px; }
.footer-desc { font-size: 14px; color: #64748B; line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.2s;
}
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 16px; height: 16px; fill: #94A3B8; }
.social-btn:hover svg { fill: var(--navy); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px; color: var(--white);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul, .footer-col .menu { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.footer-col ul a, .footer-col .menu a,
.footer-col ul li a, .footer-col .menu li a { font-size: 14px; color: #64748B; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover, .footer-col .menu a:hover,
.footer-col ul li a:hover, .footer-col .menu li a:hover { color: var(--gold); }
.footer-col ul li, .footer-col .menu li { list-style: none; margin: 0; padding: 0; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 14px; color: #64748B; line-height: 1.5; }
.footer-contact-item a { color: #94A3B8; text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #475569; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-bottom-links li { list-style: none; display: flex; }
.footer-bottom-links a { font-size: 13px; color: #475569; text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid, .why-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); padding: 12px 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { padding: 12px 14px; }
  .nav-links.open .sub-menu, .nav-links.open .dropdown-menu {
    display: block; position: static; background: transparent; border: none; padding-left: 16px; box-shadow: none;
  }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 20px; justify-content: flex-start; }
  .emergency .container { flex-direction: column; align-items: flex-start; }
  .emergency-right { align-items: flex-start; }
}

/* ========================================================================
   SERVICE PAGE — HERO 2-COL + RIGHT PANEL
   ====================================================================== */
.page-hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; }
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.hero-panel h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.service-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.service-checklist li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #CBD5E1; font-weight: 500;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.service-checklist li svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
.panel-cta { width: 100%; text-align: center; justify-content: center; }
.panel-note { text-align: center; margin-top: 10px; font-size: 12px; color: #64748B; }

/* Make-mini filter grid (car-keys landing hero right column) — matches original exactly */
.make-mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 20px;
}
.make-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 10px 8px;
  text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
  color: #CBD5E1; text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.make-mini:hover { background: rgba(201,162,39,0.15); border-color: var(--gold); color: var(--gold); }

/* Hero photo frame (per-make pages showing real-job photo) */
.hero-photo-frame {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 480px;
  border: 2px solid rgba(201,162,39,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-photo-frame img, .hero-photo-frame picture, .hero-photo-frame picture img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-photo-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(11,31,75,0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 10px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(201,162,39,0.25);
}
.hero-photo-badge-icon {
  width: 36px; height: 36px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-photo-badge-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.hero-photo-badge-text { flex: 1; color: var(--white); font-size: 13px; font-weight: 600; line-height: 1.35; }
.hero-photo-verified {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 20px; padding: 4px 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; color: #22C55E;
  letter-spacing: 0.5px; white-space: nowrap;
}

/* Hero stat (location variant — smaller than home .stat) */
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 26px; color: var(--gold); line-height: 1;
}
.hero-stat .lbl { font-size: 12px; color: #94A3B8; margin-top: 4px; }

/* Hero trust row (pricing / about pages) */
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #CBD5E1; font-weight: 500;
}
.hero-trust-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* ========================================================================
   SERVICE CARDS (service pages use .svc-card — different from home .service-card)
   ====================================================================== */
.services-section { padding: 88px 0; background: var(--white); }
.services-section .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 14px; padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.svc-card:hover { border-color: var(--navy); box-shadow: 0 8px 30px rgba(11,31,75,0.1); transform: translateY(-3px); }
.svc-card.featured { border-color: var(--gold); background: linear-gradient(135deg, #FFF9EC 0%, #FFFDF7 100%); }
.svc-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(11,31,75,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-icon svg { width: 26px; height: 26px; fill: var(--navy); }
.svc-card.featured .svc-icon { background: rgba(201,162,39,0.15); }
.svc-card.featured .svc-icon svg { fill: var(--gold); }
.svc-price {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px; color: var(--gold);
  display: flex; align-items: center; gap: 6px;
}

/* ========================================================================
   GALLERY — navy bg, 4-col, aspect via padding-bottom (per-make / gallery sections)
   ====================================================================== */
.gallery-section { padding: 88px 0; background: var(--charcoal); }
.gallery-section .section-label { color: var(--gold); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: #94A3B8; margin: 0 auto; text-align: center; }
.gallery-section .gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-section .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-card {
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  padding-bottom: 133.33%; height: 0;
  background: #0a1220;
}
.gallery-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.45); }
.gallery-card img, .gallery-card picture, .gallery-card picture img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card .gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(11,31,75,0.95) 0%, transparent 100%);
  padding: 40px 16px 16px;
}
.gallery-caption-tag {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px; margin-bottom: 6px;
}
.gallery-caption-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); line-height: 1.3; }
.gallery-caption-sub { font-size: 12px; color: #94A3B8; margin-top: 3px; }

/* ========================================================================
   MODELS GRID (per-make pages)
   ====================================================================== */
.models-section { padding: 80px 0; background: var(--gray-lt); }
.models-section .models-header { text-align: center; margin-bottom: 40px; }
.models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.model-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px; padding: 22px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.model-card:hover { border-color: var(--gold); box-shadow: 0 6px 22px rgba(201,162,39,0.12); }
.model-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.model-detail { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.model-price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; color: var(--gold); }

/* ========================================================================
   KEY TECH TABLE — 5 cols w/ badge pills
   ====================================================================== */
.tech-section { padding: 80px 0; background: var(--white); }
.tech-section .tech-header { text-align: center; margin-bottom: 40px; }
.tech-table.tech-table-5col thead th:nth-child(1) { width: 16%; }
.tech-table.tech-table-5col thead th:nth-child(2) { width: 18%; }
.tech-table.tech-table-5col thead th:nth-child(3) { width: 22%; }
.tech-table.tech-table-5col thead th:nth-child(4) { width: 28%; }
.tech-table.tech-table-5col thead th:nth-child(5) { width: 16%; }
.tech-badge {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 0.5px;
  padding: 3px 9px; border-radius: 20px; white-space: nowrap;
}
.tech-badge.badge-gray   { background: #E2E8F0; color: #475569; }
.tech-badge.badge-amber  { background: #FEF3C7; color: #92400E; }
.tech-badge.badge-blue   { background: #DBEAFE; color: #1E40AF; }
.tech-badge.badge-green  { background: #D1FAE5; color: #065F46; }
.tech-badge.badge-navy   { background: rgba(11,31,75,0.1); color: var(--navy); }
.tech-table .time-green  { color: #16A34A; font-weight: 700; white-space: nowrap; }

/* ========================================================================
   HOW IT WORKS — 4-step with gold connector line (service pages)
   ====================================================================== */
.how-section { padding: 80px 0; background: var(--navy); }
.how-section .section-label { color: var(--gold); }
.how-section .section-title { color: var(--white); }
.how-section .section-subtitle { color: #94A3B8; margin: 0 auto 48px; text-align: center; }
.how-section .how-header { text-align: center; }
.how-section .steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; position: relative; margin-top: 48px;
}
.how-section .steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,162,39,0.3), var(--gold), rgba(201,162,39,0.3));
}
.how-section .step-card { background: transparent; border: none; padding: 16px; position: relative; text-align: center; }
.how-section .step-num {
  width: 72px; height: 72px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px;
  color: var(--navy); margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.how-section .step-card h3 { color: var(--white); font-size: 17px; margin-bottom: 8px; }
.how-section .step-card p { color: #94A3B8; font-size: 14px; line-height: 1.6; }

/* ========================================================================
   LOCKSMITH vs DEALER COMPARE TABLE
   ====================================================================== */
.compare-section { padding: 80px 0; background: var(--white); }
.compare-section .compare-header { text-align: center; margin-bottom: 32px; }
.compare-table {
  width: 100%; border-collapse: collapse;
  border-radius: 14px; overflow: hidden;
  border: 1.5px solid var(--gray-mid);
}
.compare-table th {
  background: var(--navy); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 14px; padding: 16px 24px; text-align: left;
}
.compare-table th.highlight { background: var(--gold); color: var(--navy); }
.compare-table td {
  padding: 16px 24px; font-size: 14px;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--charcoal);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .price-dealer { color: #EF4444; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.compare-table .price-us     { color: #16A34A; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.compare-table .savings-col  { color: var(--navy); font-weight: 700; font-family: 'Montserrat', sans-serif; }
.compare-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }

/* ========================================================================
   CTA BANNER (gold mid-page) + extra buttons
   ====================================================================== */
.cta-banner { background: var(--gold); padding: 48px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(22px, 2.8vw, 30px); color: var(--navy); line-height: 1.25; margin-bottom: 6px; }
.cta-banner p { color: var(--navy); font-size: 15px; opacity: 0.85; }
.cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 4px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-navy:hover { background: #0d2860; transform: translateY(-1px); }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 4px; text-decoration: none;
  border: 2px solid var(--navy);
  transition: background 0.2s, color 0.2s;
}
.btn-white-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-navy { /* alias */ display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 13px 26px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 600; text-decoration: none; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-dark { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); padding: 13px 26px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 600; text-decoration: none; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--navy); padding: 14px 28px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.btn-white:hover { background: #F4F6FA; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); padding: 13px 26px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 600; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ========================================================================
   VEHICLES GRID (auto-locksmith)
   ====================================================================== */
.vehicles-section { padding: 80px 0; background: var(--gray-lt); }
.vehicles-section .vehicles-header { text-align: center; margin-bottom: 32px; }
.vehicles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.vehicle-badge {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 10px; padding: 20px 16px; text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 14px; color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
}
.vehicle-badge:hover { border-color: var(--gold); }
.vehicle-badge span { display: block; font-weight: 500; font-size: 11px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
.vehicles-note { text-align: center; font-size: 14px; color: var(--text-muted); }

/* ========================================================================
   RELATED SERVICES (FAQ sidebar)
   ====================================================================== */
.related-services { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: 14px; padding: 24px; }
.related-services h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 12px;
}
.related-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--gray-mid);
  text-decoration: none; color: var(--charcoal); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--gold); }
.related-link svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* ========================================================================
   LOCATION PAGE — local-section + area-list + response-box
   ====================================================================== */
.panel-service {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.panel-service:last-child { border-bottom: none; }
.panel-service svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }
.panel-service span { font-size: 14px; color: #E2E8F0; font-weight: 500; }

.local-section { padding: 88px 0; background: var(--navy); color: var(--white); }
.local-section .section-label { color: var(--gold); }
.local-section .section-title { color: var(--white); }
.local-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.local-body { font-size: 16px; color: #94A3B8; line-height: 1.85; margin-bottom: 24px; }
.local-body strong { color: var(--white); }
.area-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 8px; padding: 0;
}
.area-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #E2E8F0;
}
.response-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 16px; padding: 36px;
}
.response-box h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 20px; color: var(--white); margin-bottom: 18px;
}
.response-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.response-row:last-child { border-bottom: none; }
.response-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,162,39,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.response-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.response-text strong {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 14px; color: var(--white); margin-bottom: 2px;
}
.response-text span { font-size: 13px; color: #94A3B8; }

.nearby-locations { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: 14px; padding: 24px; }
.nearby-locations h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px;
}
.nearby-locations ul { list-style: none; padding: 0; margin: 0; }
.nearby-locations li a {
  display: block; padding: 8px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 14px; color: var(--charcoal); text-decoration: none;
  transition: color 0.2s;
}
.nearby-locations li:last-child a { border-bottom: none; }
.nearby-locations li a:hover { color: var(--gold); }

/* ========================================================================
   BLOG ARTICLE — hero + 2-col wrap + sidebar + TOC + callouts + price-table
   ====================================================================== */
.article-hero {
  background: linear-gradient(135deg, #071530 0%, #0B1F4B 55%, #0e2355 100%);
  padding: 72px 0 64px; position: relative; overflow: hidden;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.article-hero-inner { position: relative; max-width: 820px; }
.cat-badge {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
  padding: 5px 14px; border-radius: 30px;
  margin-bottom: 20px;
}
.article-hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.15;
  color: var(--white); margin-bottom: 18px;
}
.article-hero h1 em { color: var(--gold); font-style: normal; }
.article-meta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; font-size: 14px; color: #94A3B8;
}
.article-meta svg { width: 16px; height: 16px; fill: var(--gold); vertical-align: -3px; margin-right: 6px; }

.article-wrap {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 56px; padding: 64px 0 80px;
  align-items: start;
}
.article-body h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(20px, 2.5vw, 27px); color: var(--navy);
  margin: 44px 0 16px; line-height: 1.25;
}
.article-body h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--navy);
  margin: 28px 0 10px;
}
.article-body p { color: #1E293B; font-size: 16.5px; line-height: 1.75; margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { color: #1E293B; font-size: 16.5px; line-height: 1.75; margin-bottom: 6px; }
.article-body a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.article-body a:hover { color: var(--gold); }
.article-body img { border-radius: 10px; margin: 20px 0; max-width: 100%; height: auto; }
.article-body blockquote { border-left: 4px solid var(--gold); background: var(--gray-lt); padding: 16px 22px; margin: 24px 0; font-style: italic; color: #334155; }

.article-sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--gray-lt);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px; padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; color: var(--navy); margin-bottom: 16px; }
.sidebar-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.sidebar-phone {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold);
  border-radius: 8px; padding: 14px 18px;
  text-decoration: none; margin-bottom: 10px;
  transition: background 0.2s;
}
.sidebar-phone:hover { background: var(--gold-lt); }
.sidebar-phone svg { width: 18px; height: 18px; fill: var(--navy); }
.sidebar-phone strong { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy); }

.toc { list-style: none; padding: 0; margin: 0; }
.toc li { border-bottom: 1px solid var(--gray-mid); }
.toc li:last-child { border-bottom: none; }
.toc a {
  display: block; font-size: 14px;
  color: var(--navy); font-weight: 500;
  text-decoration: none; padding: 9px 0;
  transition: color 0.2s;
}
.toc a:hover { color: var(--gold); }

.price-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0 32px; border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(11,31,75,0.08);
}
.price-table thead { background: var(--navy); }
.price-table thead th {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px; color: var(--white);
  padding: 14px 18px; text-align: left;
  letter-spacing: 0.5px;
}
.price-table tbody tr:nth-child(odd)  { background: var(--gray-lt); }
.price-table tbody tr:nth-child(even) { background: var(--white); }
.price-table td {
  font-size: 15px; color: #1E293B;
  padding: 13px 18px;
  border-bottom: 1px solid var(--gray-mid);
}
.price-table .note-row td {
  font-size: 13px; color: var(--text-muted);
  font-style: italic; background: #FFFBF0;
  border-top: 2px solid var(--gold);
}

.callout-warning {
  background: #FFF8E7;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px; margin: 28px 0;
}
.callout-warning strong {
  display: block; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px; color: #92400E;
  margin-bottom: 6px;
}
.callout-warning p { color: #78350F; font-size: 15px; line-height: 1.7; margin: 0; }

.callout-blue {
  background: #EFF6FF;
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px; margin: 28px 0;
}
.callout-blue strong {
  display: block; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px; color: var(--navy);
  margin-bottom: 6px;
}
.callout-blue p { color: #1E3A8A; font-size: 15px; line-height: 1.7; margin: 0; }

.inline-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px 36px; margin: 40px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.inline-cta p {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--white); margin: 0;
}
.inline-cta .btn-primary { flex-shrink: 0; }

/* ========================================================================
   BLOG LISTING — pastel tiles + category eyebrow + cta-band
   ====================================================================== */
.blog-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  background: var(--gray-lt);
}
.blog-cat {
  display: inline-block;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}

/* CTA Band — 2-col navy variant (blog/pricing/reviews pages) */
.cta-band { background: var(--navy); padding: 72px 0; color: var(--white); }
.cta-band.cta-band-gold { background: var(--gold); color: var(--navy); }
/* Locations archive uses gold CTA band (matches original locations/index.html) */
body.post-type-archive-location .cta-band { background: var(--gold); padding: 64px 0; color: var(--navy); text-align: center; }
body.post-type-archive-location .cta-band h2 { color: var(--navy); }
body.post-type-archive-location .cta-band p { color: rgba(11,31,75,0.7); margin-bottom: 28px; }
/* Individual city pages also use gold CTA band */
body.single-location .cta-band { background: var(--gold); padding: 64px 0; color: var(--navy); text-align: center; }
body.single-location .cta-band h2 { color: var(--navy); }
body.single-location .cta-band p { color: rgba(11,31,75,0.7); margin-bottom: 28px; }
/* Pricing and About pages use gold CTA band */
body.page-pricing .cta-band,
body.page-about .cta-band { background: var(--gold); padding: 72px 0; text-align: center; color: var(--navy); }
body.page-pricing .cta-band h2,
body.page-about .cta-band h2 { color: var(--navy); }
body.page-pricing .cta-band p,
body.page-about .cta-band p { color: rgba(11,31,75,0.7); }
/* Blog posts use gold CTA band with centered layout */
body.single-post .cta-band { background: var(--gold); padding: 64px 0; text-align: center; color: var(--navy); }
body.single-post .cta-band h2 { color: var(--navy); }
body.single-post .cta-band p { color: rgba(11,31,75,0.7); margin-bottom: 28px; }
.cta-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta-band-left h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(26px, 3.2vw, 38px); color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.cta-band-gold .cta-band-left h2 { color: var(--navy); }
.cta-band-left p { color: #94A3B8; font-size: 16px; line-height: 1.7; margin-bottom: 22px; }
.cta-band-gold .cta-band-left p { color: rgba(11,31,75,0.85); }
.cta-trust-row { display: flex; gap: 18px; flex-wrap: wrap; }
.cta-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #CBD5E1; font-weight: 500; }
.cta-trust-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.cta-band-gold .cta-trust-item { color: var(--navy); }
.cta-band-gold .cta-trust-item svg { fill: var(--navy); }
.cta-band-right { display: flex; flex-direction: column; gap: 14px; }
.cta-action-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 20px 24px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta-action-card:hover { border-color: var(--gold); background: rgba(201,162,39,0.08); }
.cta-band-gold .cta-action-card { background: var(--white); border-color: rgba(11,31,75,0.12); }
.cta-band-gold .cta-action-card:hover { border-color: var(--navy); }
.cta-action-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cta-action-icon.gold { background: var(--gold); }
.cta-action-icon.gold svg { fill: var(--navy); width: 22px; height: 22px; }
.cta-action-icon.navy { background: var(--navy); }
.cta-action-icon.navy svg { fill: var(--gold); width: 22px; height: 22px; }
.cta-action-text { flex: 1; }
.cta-action-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 2px; }
.cta-band-gold .cta-action-title { color: var(--navy); }
.cta-action-sub { font-size: 13px; color: #94A3B8; }
.cta-band-gold .cta-action-sub { color: rgba(11,31,75,0.7); }
.cta-action-arrow { color: var(--gold); flex-shrink: 0; font-size: 22px; }

/* ========================================================================
   PRICING PAGE
   ====================================================================== */
.price-intro { background: var(--gold); padding: 28px 0; }
.price-intro-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-intro-item { display: flex; align-items: center; gap: 14px; }
.price-intro-item svg { width: 24px; height: 24px; fill: var(--navy); flex-shrink: 0; }
.price-intro-item strong { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); display: block; margin-bottom: 2px; }
.price-intro-item span { font-size: 13px; color: rgba(11,31,75,0.75); }

.pricing-section { padding: 64px 0; background: var(--white); }
.pricing-section:nth-of-type(even) { background: var(--gray-lt); }
/* Pricing PAGE — horizontal icon+title+sub layout (scoped) */
.pricing-section .pricing-header { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; text-align: left; }
.pricing-section .pricing-header h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(22px, 2.8vw, 30px); color: var(--navy); margin-bottom: 4px; }
.pricing-section .pricing-header p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0; }
.pricing-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: var(--navy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.pricing-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.pricing-section .price-table { margin: 0; }
.pricing-section .price-table th { padding: 14px 18px; }
.price-range { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); white-space: nowrap; }
.price-note { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.service-sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }

.disclaimer-section { padding: 72px 0; background: var(--navy); color: var(--white); }
.disclaimer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.disclaimer-text h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(22px, 2.8vw, 30px); color: var(--white); margin-bottom: 16px; }
.disclaimer-text p { color: #94A3B8; font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.disclaimer-card { background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.25); border-radius: 14px; padding: 28px; }
.disclaimer-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--gold); margin-bottom: 14px; }
.disclaimer-list { list-style: none; padding: 0; }
.disclaimer-list li { padding: 8px 0; color: #CBD5E1; font-size: 14px; line-height: 1.6; display: flex; gap: 10px; align-items: flex-start; }

/* ========================================================================
   ABOUT PAGE
   ====================================================================== */
.story-section { padding: 88px 0; background: var(--white); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-text p { font-size: 16px; color: #334155; line-height: 1.8; margin-bottom: 18px; }
.story-text p strong { color: var(--navy); font-weight: 700; }
.story-card { background: var(--navy); border-radius: 16px; padding: 40px; color: var(--white); }
.story-card .year { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 72px; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.story-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--white); margin-bottom: 12px; }
.story-card p { color: #94A3B8; font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.story-milestones { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.milestone { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.milestone:first-child { border-top: none; }
.milestone-year { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; color: var(--gold); flex-shrink: 0; min-width: 50px; }
.milestone-text { font-size: 14px; color: #CBD5E1; line-height: 1.55; }

.values-section { padding: 88px 0; background: var(--gray-lt); }
.values-section .values-header { text-align: center; margin-bottom: 48px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: 14px; padding: 32px 28px; }
.value-icon {
  width: 52px; height: 52px;
  background: rgba(11,31,75,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-icon svg { width: 26px; height: 26px; fill: var(--navy); }
.value-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

.credentials-section { padding: 88px 0; background: var(--navy); color: var(--white); }
.credentials-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.credentials-text h2 { color: var(--white); margin-bottom: 20px; }
.credentials-text p { color: #94A3B8; font-size: 15px; line-height: 1.75; margin-bottom: 18px; }
.cred-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cred-list li { display: flex; align-items: center; gap: 12px; color: #E2E8F0; font-size: 14px; }
.cred-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cred-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 20px; text-align: center; }
.cred-badge svg { width: 34px; height: 34px; fill: var(--gold); margin-bottom: 10px; }
.cred-badge strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--white); margin-bottom: 2px; }
.cred-badge span { font-size: 12px; color: #94A3B8; }

.promise-section { padding: 88px 0; background: var(--white); }
.promise-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.promise-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.promise-item { display: flex; gap: 18px; align-items: flex-start; }
.promise-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px;
}
.promise-item h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.promise-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.reviews-panel { background: var(--gray-lt); border: 1px solid var(--gray-mid); border-radius: 16px; padding: 36px; }
.rating-big { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 56px; color: var(--gold); line-height: 1; text-align: center; margin-bottom: 4px; }
.reviews-panel .stars { display: block; text-align: center; margin-bottom: 4px; font-size: 20px; }
.reviews-panel .rating-label { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

/* ========================================================================
   CONTACT PAGE — red emergency banner + form card + call/info sidebar + map
   ====================================================================== */
.emergency-banner { display: none; }
.emergency-banner .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.emergency-banner strong { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; color: var(--white); letter-spacing: 0.3px; display: flex; align-items: center; gap: 10px; }
.emergency-banner strong svg { width: 22px; height: 22px; fill: var(--white); }
.emergency-banner span { color: rgba(255,255,255,0.85); font-size: 14px; }
.emergency-banner a.btn-white { padding: 10px 20px; font-size: 14px; }

.contact-section { padding: 72px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.form-card { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: 16px; padding: 36px; }
.form-card h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.form-card p.form-lead { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 13px; color: var(--navy); margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group .req { color: var(--gold); margin-left: 3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  font-size: 15px; font-family: inherit;
  color: var(--charcoal); background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,75,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-group select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23475569'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
  padding-right: 40px;
}
.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 15px; margin-top: 4px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  padding: 20px; background: #ECFDF5; border: 1px solid #10B981;
  border-radius: 10px; color: #065F46;
  font-size: 15px; font-weight: 600; margin-bottom: 18px;
}
.form-success.visible { display: block; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.call-card { background: var(--navy); color: var(--white); border-radius: 16px; padding: 32px; text-align: center; }
.call-card-label { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.call-number {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--white); text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.call-number svg { width: 28px; height: 28px; fill: var(--gold); }
.call-card p { color: #94A3B8; font-size: 13px; }

.info-card { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: 14px; padding: 24px; }
.info-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.info-card-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(201,162,39,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.info-card-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.info-card-header h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); letter-spacing: 0.5px; text-transform: uppercase; }
.info-card .hours-row { font-size: 13px; }
.service-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.service-pill {
  font-size: 12px; font-weight: 600;
  color: var(--navy); background: var(--gray-lt);
  border: 1px solid var(--gray-mid);
  border-radius: 20px; padding: 4px 10px;
}

.map-section { padding: 0 0 64px; background: var(--white); }
.map-placeholder {
  width: 100%; height: 360px;
  background: var(--gray-lt);
  border: 1.5px solid var(--gray-mid);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
}

/* ========================================================================
   REVIEWS PAGE
   ====================================================================== */
.reviews-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2860 55%, #122c72 100%);
  padding: 80px 0; position: relative; overflow: hidden; text-align: center;
}
.reviews-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.reviews-hero .container { position: relative; }
.reviews-hero h1 { color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(32px, 4.5vw, 52px); line-height: 1.15; margin-bottom: 18px; }
.reviews-hero h1 em { color: var(--gold); font-style: normal; }
.aggregate-box {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 24px 48px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  margin: 24px 0;
}
.aggregate-score { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 72px; color: var(--gold); line-height: 1; }
.aggregate-stars { font-size: 24px; color: var(--gold); letter-spacing: 2px; margin: 8px 0 4px; }
.aggregate-label { font-size: 14px; color: #94A3B8; }

.filter-section { padding: 32px 0; background: var(--gray-lt); border-bottom: 1px solid var(--gray-mid); }
.filter-section .container { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--navy); background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 30px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--navy); background: var(--navy); color: var(--white); }

.reviews-section { padding: 72px 0; background: var(--gray-lt); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reviews-grid .review-card {
  background: var(--white); border: 1px solid var(--gray-mid);
  border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.reviews-grid .review-card .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.reviews-grid .review-card .review-text { font-size: 15px; color: #334155; line-height: 1.65; flex: 1; }
.reviews-grid .review-card .reviewer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--gray-mid);
  color: var(--navy);
}
.reviewer-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
}
.reviewer-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-tag {
  margin-left: auto;
  font-size: 11px; font-weight: 700;
  color: #92400E; background: #FEF3C7;
  padding: 3px 9px; border-radius: 20px;
  font-family: 'Montserrat', sans-serif; letter-spacing: 0.3px;
}
.google-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  padding: 12px 22px; border-radius: 4px;
  text-decoration: none; border: 2px solid var(--white);
  transition: background 0.2s;
}
.google-cta svg { width: 16px; height: 16px; }
.google-cta:hover { background: #F4F6FA; }

/* ========================================================================
   EXTRA RESPONSIVE
   ====================================================================== */
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo-frame { height: 320px; }
  .services-section .services-grid,
  .gallery-section .gallery-grid,
  .models-grid,
  .vehicles-grid,
  .values-grid,
  .reviews-grid,
  .price-intro-inner { grid-template-columns: repeat(2, 1fr); }
  .how-section .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .how-section .steps-grid::before { display: none; }
  .local-inner, .disclaimer-inner, .story-inner, .credentials-inner, .promise-inner, .contact-grid, .article-wrap, .cta-band-inner { grid-template-columns: 1fr; gap: 36px; }
  .article-sidebar { position: static; }
  .inline-cta { padding: 24px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .cred-badges { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-section .services-grid,
  .gallery-section .gallery-grid,
  .models-grid,
  .vehicles-grid,
  .values-grid,
  .reviews-grid,
  .price-intro-inner { grid-template-columns: 1fr; }
  .how-section .steps-grid { grid-template-columns: 1fr; }
  .story-card .year { font-size: 54px; }
  .aggregate-box { padding: 20px 28px; }
  .aggregate-score { font-size: 56px; }
}

/* ========================================================================
   /services/ archive page — scoped overrides to match original design
   ====================================================================== */
body.archive-service .page-hero { padding: 80px 0 72px; }
body.archive-service .page-hero-inner {
  display: block; grid-template-columns: none; gap: 0;
  position: relative; z-index: 1;
}
body.archive-service .page-hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(30px, 5vw, 52px);
  color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
body.archive-service .page-hero h1 em { color: var(--gold); font-style: normal; }
body.archive-service .page-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 580px; margin-bottom: 32px; }
body.archive-service .hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 0; /* reset .hero-badge margin-bottom from main.css */
}
body.archive-service .hero-badges .hero-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 13px;
  padding: 6px 14px; border-radius: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: normal; text-transform: none;
  margin-bottom: 0;
}
body.archive-service .hero-badges .hero-badge svg {
  width: 14px; height: 14px; flex-shrink: 0;
  fill: none; stroke: currentColor;
}

body.archive-service .services-section { padding: 88px 0; background: var(--white); }
body.archive-service .services-intro { text-align: center; margin-bottom: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
body.archive-service .services-intro .section-label { color: var(--gold); }
body.archive-service .services-intro h2 { margin-bottom: 14px; }
body.archive-service .services-intro p { color: var(--text-muted); font-size: 17px; line-height: 1.7; margin: 0 auto; max-width: 620px; }
body.archive-service .services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
body.archive-service .service-card {
  border: 1px solid var(--gray-mid); border-radius: 8px;
  overflow: hidden; background: var(--white);
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 0; cursor: default;
}
body.archive-service .service-card:hover { box-shadow: 0 12px 40px rgba(11,31,75,0.12); transform: translateY(-4px); border-color: var(--gray-mid); }
body.archive-service .service-card::after { display: none; }
body.archive-service .card-color-bar { height: 4px; background: var(--gold); }
body.archive-service .card-body { padding: 32px 28px 24px; flex: 1; }
body.archive-service .card-icon {
  width: 52px; height: 52px;
  background: #EFF4FF; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--navy);
}
body.archive-service .card-icon svg {
  width: 26px; height: 26px;
  fill: none; stroke: currentColor;
}
body.archive-service .service-card h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 22px; color: var(--navy);
  line-height: 1.25; margin-bottom: 12px;
}
body.archive-service .service-card .card-body p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
body.archive-service .card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0; }
body.archive-service .card-tag {
  font-size: 12px; font-weight: 600;
  color: var(--navy); background: var(--gray-lt);
  border-radius: 20px; padding: 4px 10px;
  letter-spacing: 0.2px;
}
body.archive-service .card-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  background: var(--gray-lt);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 14px; color: var(--navy);
  text-decoration: none; border-top: 1px solid var(--gray-mid);
  transition: background 0.2s, color 0.2s;
}
body.archive-service .card-cta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; transition: transform 0.2s; }
body.archive-service .card-cta:hover { background: var(--navy); color: var(--white); }
body.archive-service .card-cta:hover svg { transform: translateX(4px); }

body.archive-service .trust-strip { background: var(--gray-lt); padding: 40px 0; border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
body.archive-service .trust-items {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px 40px;
}
body.archive-service .trust-strip .trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 13px; color: var(--navy);
}
body.archive-service .trust-strip .trust-item svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); }

body.archive-service .cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2860 55%, #122c72 100%);
  padding: 72px 0; text-align: center; color: var(--white);
}
body.archive-service .cta-banner h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white); margin-bottom: 14px; line-height: 1.15;
}
body.archive-service .cta-banner h2 em { color: var(--gold); font-style: normal; }
body.archive-service .cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
body.archive-service .cta-buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
body.archive-service .cta-banner .btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 17px; padding: 16px 32px;
  border-radius: 6px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
body.archive-service .cta-banner .btn-call svg { width: 20px; height: 20px; fill: none; stroke: currentColor; }
body.archive-service .cta-banner .btn-call:hover { background: var(--gold-lt); transform: translateY(-2px); }
body.archive-service .cta-banner .btn-outline {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px;
  padding: 15px 30px; border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
body.archive-service .cta-banner .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

@media (max-width: 640px) {
  body.archive-service .services-grid { grid-template-columns: 1fr; }
  body.archive-service .trust-items { gap: 20px; justify-content: flex-start; }
}

/* ========================================================================
   CAR-KEYS LANDING — unique class set (different from per-make pages)
   ====================================================================== */
.what-section { padding: 80px 0; background: var(--white); }
.what-header { text-align: center; margin-bottom: 56px; }
.what-header .section-subtitle { margin: 0 auto; }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.what-card {
  background: var(--gray-lt);
  border: 1.5px solid var(--gray-mid);
  border-radius: 14px; padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.what-card:hover { border-color: var(--navy); box-shadow: 0 6px 24px rgba(11,31,75,0.1); }
.what-icon {
  width: 52px; height: 52px; background: rgba(11,31,75,0.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.what-icon svg { width: 26px; height: 26px; fill: var(--navy); }
.what-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.what-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Makes section on car-keys landing (3-col grid of linked make cards) */
.makes-section .makes-header { text-align: center; margin-bottom: 56px; }
.makes-section .makes-header .section-subtitle { margin: 0 auto; }
.makes-section .makes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.make-card {
  background: var(--white); border: 1.5px solid var(--gray-mid);
  border-radius: 14px; padding: 28px 24px;
  text-decoration: none; display: block; position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.make-card:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(201,162,39,0.15); transform: translateY(-2px); }
.make-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.make-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: var(--navy); }
.make-arrow {
  width: 32px; height: 32px; background: var(--gray-lt);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.make-card:hover .make-arrow { background: var(--gold); }
.make-arrow svg { width: 16px; height: 16px; fill: var(--navy); }
.make-models { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.make-services { display: flex; flex-wrap: wrap; gap: 6px; }
.make-tag {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px;
  color: var(--navy); background: rgba(11,31,75,0.07);
  border-radius: 20px; padding: 4px 10px; letter-spacing: 0.3px;
}
.make-card.coming-soon { opacity: 0.7; cursor: default; }
.make-card.coming-soon:hover { border-color: var(--gray-mid); box-shadow: none; transform: none; }

/* Pricing band — 3 price cards (car-keys landing) — centered stacked header */
.pricing-band { padding: 72px 0; background: var(--white); }
.pricing-band .pricing-header {
  display: block; text-align: center; margin-bottom: 48px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.pricing-band .pricing-header .section-label { color: var(--gold); }
.pricing-band .pricing-header .section-title { margin-bottom: 16px; }
.pricing-band .pricing-header .section-subtitle { margin: 0 auto; max-width: 620px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  border: 1.5px solid var(--gray-mid); border-radius: 14px;
  padding: 32px 28px; text-align: center; background: var(--white);
}
.price-card.featured { border-color: var(--gold); background: linear-gradient(135deg, #FFF9EC 0%, #FFFDF7 100%); }
.price-type { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.price-card .price-range { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: var(--gold); margin-bottom: 12px; line-height: 1; white-space: normal; }
.price-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.price-examples { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.price-examples li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.price-examples li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* How section step variant using .step (not .step-card) */
.how-section .step { text-align: center; padding: 0 16px; position: relative; }
.how-section .step h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 8px; }
.how-section .step p { font-size: 13px; color: #64748B; line-height: 1.65; }

/* FAQ Q-text alternative class name */
.faq-q-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); line-height: 1.4; }

/* CTA Banner h2 variant (car-keys uses h2 not h3) */
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(22px, 3vw, 32px); color: var(--navy); line-height: 1.2; }
.cta-banner h2 em { color: var(--navy); font-style: normal; }
.cta-banner p { font-size: 16px; color: rgba(11,31,75,0.75); margin-top: 8px; margin-bottom: 0; }

@media (max-width: 900px) {
  .what-grid, .makes-section .makes-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .what-grid, .makes-section .makes-grid, .pricing-grid { grid-template-columns: 1fr; }
}
