/* ============================================================
   Fine Locksmith USA — Main Stylesheet
   Design: Bold service-business conversion site
   ============================================================ */

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Prevent ANY element from causing horizontal scroll */
section, header, footer, nav, main, aside, div {
  max-width: 100%;
}

:root {
  --navy:      #0B1B2B;
  --navy-mid:  #142238;
  --red:       #D01C1C;
  --red-dark:  #A81515;
  --red-light: #E83232;
  --gold:      #F5A623;
  --white:     #FFFFFF;
  --off-white: #F5F6F8;
  --gray-100:  #EEF0F3;
  --gray-300:  #C8CDD6;
  --gray-500:  #7A8599;
  --gray-700:  #3D4A5C;
  --text:      #1A2230;

  --font-display: 'Barlow Condensed', 'Oswald', sans-serif;
  --font-ui:      'Inter', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);

  --container: 1320px;          /* Increased for better header space */
  --gutter:    clamp(16px, 4vw, 40px);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  position: relative;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Utility Classes ─────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-red   { color: var(--red); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.bg-navy    { background: var(--navy); }
.bg-red     { background: var(--red); }
.fw-bold    { font-weight: 700; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(208,28,28,.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--off-white);
}

.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-xl { padding: 20px 44px; font-size: 18px; letter-spacing: .5px; }

/* ── Section Labels ──────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -.5px;
}
.section-title span { color: var(--red); }
.section-title.light { color: var(--white); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.top-bar-info a:hover { color: var(--white); }
.top-bar-info i { color: var(--red); font-size: 12px; }

.top-bar-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.badge-pill i { color: var(--gold); font-size: 10px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  overflow: hidden;
}

/* Wider container specifically for header on large screens */
.site-header .container {
  max-width: 1400px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;                    /* Reduced gap for more space */
  padding: 12px 0;              /* Slightly tighter vertically */
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo img { height: 60px; width: auto; }
.logo-text { line-height: 1.2; }
.logo-text .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.3px;
  text-transform: uppercase;
}
.logo-text .name span { color: var(--red); }
.logo-text .tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;                     /* Tighter between items */
}
.primary-nav a {
  display: block;
  padding: 8px 11px;            /* Reduced padding */
  font-size: 13.5px;            /* Slightly smaller for better fit */
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius);
  transition: all .18s;
  position: relative;
  white-space: nowrap;          /* Prevent text wrapping inside links */
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--red);
  background: rgba(208,28,28,.06);
}

/* Dropdown */
.primary-nav .menu-item-has-children { position: relative; }
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 100;
}
.primary-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .sub-menu a {
  font-size: 13px;
  padding: 8px 12px;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  text-align: right;
}
.header-phone .label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.header-phone .number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.3px;
  line-height: 1;
}
.header-phone .number:hover { color: var(--red); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 580px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy) 0%, var(--navy-mid) 50%, rgba(11,27,43,.7) 100%);
}

/* Diagonal red accent */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 30%;
  width: 3px;
  height: 100%;
  background: var(--red);
  transform: skewX(-8deg);
  box-shadow: 0 0 40px rgba(208,28,28,.5);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.015) 40px,
      rgba(255,255,255,.015) 41px
    );
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 40px;
}

/* Hero content */
.hero-content { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-eyebrow i { font-size: 14px; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-headline .accent { color: var(--red); }
.hero-headline .stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.5;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 32px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero-check i { color: var(--gold); font-size: 13px; }

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.trust-stat { text-align: center; }
.trust-stat .number {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.trust-stat .number span { color: var(--red); }
.trust-stat .label {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* Hero image */
.hero-visual {
  position: relative;
  align-self: end;
}
.hero-visual img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(-20px 0 40px rgba(0,0,0,.5));
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.2;
  box-shadow: 0 4px 20px rgba(208,28,28,.5);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-badge strong { font-size: 22px; display: block; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(208,28,28,.5); }
  50%       { box-shadow: 0 4px 40px rgba(208,28,28,.8), 0 0 0 8px rgba(208,28,28,.1); }
}

/* ── Hero Form ───────────────────────────────────────────────── */
.hero-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hero-form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-form-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.form-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.form-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(208,28,28,.07);
  color: var(--red);
  border: 1px solid rgba(208,28,28,.2);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}
.form-tag i { font-size: 10px; }

.hero-form .form-group { margin-bottom: 12px; }
.hero-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: var(--gray-300); }
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus { border-color: var(--red); }

.form-input-icon {
  position: relative;
}
.form-input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-size: 13px;
  pointer-events: none;
}
.form-input-icon input { padding-left: 36px; }

.hero-form .btn-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 16px;
  font-family: var(--font-display);
  letter-spacing: .5px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  border: none;
  transition: all .2s;
  margin-top: 4px;
}
.hero-form .btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(208,28,28,.4);
}
.hero-form .btn-submit i { font-size: 14px; }

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--gray-500);
}
.form-guarantee i { color: var(--gold); }

.form-message { margin-top: 12px; font-size: 14px; font-weight: 600; }
.form-message.success { color: #198754; }
.form-message.error   { color: var(--red); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.trust-item-text .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.trust-item-text .desc {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
  background: var(--white);
  position: relative;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(208,28,28,.12);
  transform: translateY(-3px);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,27,43,.7) 0%, transparent 60%);
}

.service-card-body {
  padding: 24px;
}
.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(208,28,28,.1);
  border-radius: var(--radius);
  color: var(--red);
  font-size: 20px;
  margin-bottom: 14px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  font-size: 12px;
  color: var(--gray-700);
  font-weight: 500;
}
.chip i { font-size: 10px; color: var(--red); }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  transition: gap .2s;
}
.service-card-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(208,28,28,.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-visual { position: relative; }
.why-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 480px;
}
.why-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(208,28,28,.4);
  min-width: 140px;
}
.why-img-badge .big {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.why-img-badge .small {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
}

.why-content { color: var(--white); }
.why-content .section-eyebrow { color: var(--gold); }
.why-content .section-eyebrow::before { background: var(--gold); }

.why-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.why-headline span { color: var(--red); }

.why-desc {
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.why-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(208,28,28,.15);
  border: 1px solid rgba(208,28,28,.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.why-feature-text .title {
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}
.why-feature-text .desc {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-section {
  padding: 80px 0;
  background: var(--white);
}
.reviews-header {
  text-align: center;
  margin-bottom: 52px;
}
.reviews-header .google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.google-rating .stars { color: var(--gold); letter-spacing: 1px; }
.google-rating .g-logo {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.review-author-date {
  font-size: 12px;
  color: var(--gray-500);
}
.review-google-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  margin-left: auto;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  padding: 80px 0;
  background: var(--white);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.area-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.area-card:hover {
  border-color: var(--red);
  background: rgba(208,28,28,.03);
  transform: translateY(-2px);
}
.area-card i { font-size: 24px; color: var(--red); margin-bottom: 10px; }
.area-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.area-card p { font-size: 12px; color: var(--gray-500); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--red);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 8px;
}
.cta-banner-text p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
}
.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-cta-white {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
  font-weight: 800;
}
.btn-cta-white:hover { background: var(--off-white); }

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  font-weight: 700;
}
.btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ============================================================
   BLOG / POSTS
   ============================================================ */
.blog-section {
  padding: 80px 0;
  background: var(--off-white);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all .25s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-card-img { height: 200px; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { padding: 24px; }
.post-card-cat {
  display: inline-block;
  background: rgba(208,28,28,.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
}
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--red); }
.post-card-excerpt { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-500);
}
.post-card-meta i { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
}

.footer-top {
  padding: 64px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .logo-wrap img { height: 50px; filter: brightness(0) invert(1); }
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}
.footer-brand .brand-name span { color: var(--red); }
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,.6);
}
.footer-phone-big {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-phone-big:hover { color: var(--red); }
.footer-phone-big i { color: var(--red); font-size: 20px; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  transition: all .2s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--white); }
.footer-links a i { color: var(--red); font-size: 10px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--red);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ── Sticky Call Button (Mobile) ─────────────────────────────── */
.sticky-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(208,28,28,.5);
  align-items: center;
  gap: 8px;
  animation: bounce-in .5s ease;
}
.sticky-call-btn i { font-size: 18px; animation: ring 2s infinite; }
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%  { transform: rotate(-15deg); }
  20%, 40%  { transform: rotate(15deg); }
  50%       { transform: rotate(0deg); }
}
@keyframes bounce-in {
  0%   { transform: scale(0) translateY(20px); opacity: 0; }
  80%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}

/* ============================================================
   INTERIOR PAGES
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { color: rgba(255,255,255,.75); font-size: 18px; max-width: 600px; }
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.breadcrumbs a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs i { font-size: 10px; }

.page-content {
  padding: 80px 0;
}
.page-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.entry-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin: 32px 0 12px; }
.entry-content h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.entry-content p { margin-bottom: 16px; color: var(--gray-700); line-height: 1.7; }
.entry-content ul { margin: 0 0 16px 24px; }
.entry-content ul li { margin-bottom: 8px; color: var(--gray-700); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sidebar-card-head {
  background: var(--navy);
  padding: 16px 20px;
}
.sidebar-card-head h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}
.sidebar-card-body { padding: 20px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: all .2s;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(208,28,28,.07);
  color: var(--red);
}
.sidebar-nav a i { color: var(--red); font-size: 12px; }

.sidebar-phone-card {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  color: var(--white);
}
.sidebar-phone-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sidebar-phone-card p { font-size: 13px; opacity: .8; margin-bottom: 16px; }
.sidebar-phone-card .big-phone {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.sidebar-phone-card .big-phone:hover { opacity: .85; }
.sidebar-phone-card .btn-white { width: 100%; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet wide ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero .container { grid-template-columns: 1fr 380px; gap: 28px; }

  /* Service page hero — tighten the form column */
  .page-hero .container > div[style*="grid-template-columns:1fr 380px"] {
    gap: 32px;
  }
}

/* ── Tablet ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Homepage hero */
  .hero .container { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-visual { display: none; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .why-features { grid-template-columns: 1fr 1fr; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .posts-grid    { grid-template-columns: 1fr 1fr; }

  /* Interior page layout */
  .page-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; } /* hide sidebar on tablet, show sticky call btn instead */

  /* Service page — intro 2-col sections */
  .page-hero .container > div[style*="grid-template-columns:1fr 380px"],
  section > .container > div[style*="grid-template-columns:1fr 1fr"],
  section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Process steps — 2 col on tablet */
  section > .container > div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }
  /* Hide connector line on tablet/mobile */
  section > .container > div[style*="grid-template-columns:repeat(4,1fr)"] > div[style*="position:absolute"] {
    display: none !important;
  }

  /* Service cards — 2 col */
  section > .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Access control / vehicle makes spotlight grid */
  section > .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Top bar */
  .top-bar-badges { display: none; }
  .top-bar-info   { gap: 12px; }

  /* Header */
  .site-header { position: relative; overflow: hidden; }
  .header-phone { display: none; }
  .header-cta .btn { font-size: 13px; padding: 10px 14px; }
  .nav-toggle { display: flex; }

  /* Mobile nav */
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--red);
    z-index: 200;
    gap: 4px;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 16px; font-size: 15px; }
  .primary-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .primary-nav .menu-item-has-children.open .sub-menu { display: flex; flex-direction: column; }

  /* ── Service page hero — stack form below content ── */
  .page-hero .container > div[style*="grid-template-columns:1fr 380px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  /* Hero form sits below on mobile */
  .hero-form-wrap {
    padding: 20px;
    width: 100%;
  }
  .hero-form .form-row { grid-template-columns: 1fr; }

  /* Hero buttons — stack */
  .page-hero .container div[style*="display:flex;gap:14px"] {
    flex-direction: column;
  }
  .page-hero .container div[style*="display:flex;gap:14px"] .btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust bar */
  .trust-bar .container {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .trust-item { min-width: 130px; flex: 0 0 auto; }
  .trust-sep { display: none; }

  /* ── Intro 2-col sections (image + content) ── */
  section > .container > div[style*="grid-template-columns:1fr 1fr"],
  section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Hide floating badges that hang off the image on mobile */
  section > .container > div[style*="position:relative"] > div[style*="position:absolute;bottom:24px;left:-24px"] {
    left: 16px !important;
    bottom: 16px !important;
  }
  /* Red accent bar — hide on mobile */
  section > .container > div[style*="position:relative"] > div[style*="position:absolute;top:24px;right:-12px"] {
    display: none !important;
  }

  /* ── Service cards — 1 col ── */
  .services-grid,
  section > .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Process steps — 1 col ── */
  section > .container > div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  section > .container > div[style*="grid-template-columns:repeat(4,1fr)"] > div[style*="position:absolute"] {
    display: none !important;
  }

  /* ── Spotlight sections (navy bg 2-col) ── */
  section > .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Brand/system grids inside spotlight */
  section > .container > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* ── Reviews ── */
  .reviews-grid { grid-template-columns: 1fr; }

  /* ── Service areas ── */
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* ── Emergency city pill grid ── */
  section > .container > div[style*="display:flex;flex-wrap:wrap;justify-content:center"] {
    gap: 8px;
  }

  /* ── FAQ grid (left text + right accordion) ── */
  section > .container > div[style*="grid-template-columns:1fr 1fr;gap:60px;align-items:start"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* ── Bottom CTA buttons ── */
  section > .container > div[style*="display:flex;gap:16px;justify-content:center"] {
    flex-direction: column;
    align-items: center;
  }
  section > .container > div[style*="display:flex;gap:16px;justify-content:center"] .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Blog / posts ── */
  .posts-grid    { grid-template-columns: 1fr; }
  .page-grid     { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-grid   { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner-actions { width: 100%; justify-content: center; }

  /* ── Homepage grids ── */
  .why-features  { grid-template-columns: 1fr; }

  /* ── Sticky call button ── */
  .sticky-call-btn { display: flex; }

  /* ── "What to do while you wait" grid (emergency page) ── */
  section > .container > div[style*="grid-template-columns:repeat(4,1fr);gap:20px"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
}

/* ── Small mobile ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Homepage hero headline */
  .hero-headline { font-size: 44px; }
  .hero-cta-row  { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }

  /* Service page hero H1 */
  .page-hero h1 { font-size: 44px; }

  /* Process steps — 1 col on small screens */
  section > .container > div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Service cards — 1 col */
  section > .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Brand/system grids in spotlight — 1 col */
  section > .container > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Areas grid */
  .areas-grid { grid-template-columns: 1fr; }

  /* Trust items */
  .trust-item { min-width: 120px; }

  /* Emergency "What to do" grid */
  section > .container > div[style*="grid-template-columns:repeat(4,1fr);gap:20px"] {
    grid-template-columns: 1fr !important;
  }

  /* CTA trust bullets */
  section > div[style*="display:flex;align-items:center;justify-content:center;gap:24px"] {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* Footer bottom */
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Btn xl shrink */
  .btn-xl { padding: 16px 28px; font-size: 16px; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .site-header, .hero, .cta-banner, .site-footer, .sticky-call-btn { display: none; }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}