/* =========================================================
   Expert Locksmiths — Shared Stylesheet
   Mobile-first | Coral #ee6c4e + Green CTA #61ce70 on White
   ========================================================= */

/* ----- CSS Custom Properties ----- */
:root {
  --coral:       #ee6c4e;
  --coral-dark:  #db3a15;
  --coral-light: #fde0d9;
  --green:       #61ce70;
  --green-dark:  #4cba5b;
  --green-light: #d4f7da;
  --dark:        #111111;
  --dark-mid:    #333333;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #4b5563;
  --gray-800:    #1e293b;
  --text:        #2d3748;
  --text-light:  #64748b;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12);
  --shadow-md:   0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.18);
  --transition:  0.22s ease;
  --container:   1200px;
  --header-h:    72px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----- Layout Utilities ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 { margin-bottom: .5rem; }
.section-header p  { color: var(--text-light); max-width: 600px; margin: 0 auto; }

.text-coral  { color: var(--coral); }
.text-green  { color: var(--green); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

/* primary CTA — green */
.btn-gold {
  background: var(--green);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(97,206,112,.35);
}

/* secondary — coral */
.btn-navy {
  background: var(--coral);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(238,108,78,.35);
}

.btn-outline-coral {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline-coral:hover {
  background: var(--coral);
  color: var(--white);
}

/* keep old name for any existing HTML references */
.btn-outline-gold {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline-gold:hover {
  background: var(--coral);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

/* Logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; }

/* Logo text fallback */
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.logo-text span { color: var(--coral); }

/* Desktop Nav — hidden on mobile, shown at 1024px+ */
.desktop-nav { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

/* Dropdown parent needs position:relative */
.has-dropdown { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .75rem;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover,
.nav-link.active { color: var(--coral); background: var(--coral-light); }

.nav-arrow {
  font-size: .7rem;
  transition: transform var(--transition);
  display: inline-block;
}
.has-dropdown.open .nav-arrow { transform: rotate(180deg); }

/* Dropdown panel — hidden by default */
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
  border: 1px solid var(--gray-200);
}
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown .dropdown a {
  display: block;
  padding: .6rem 1rem;
  font-size: .875rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.has-dropdown .dropdown a:hover { background: var(--coral-light); color: var(--coral-dark); }
.has-dropdown .dropdown .dropdown-all {
  display: block;
  padding: .6rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--coral);
  border-top: 1px solid var(--gray-200);
  margin-top: .25rem;
}

/* Header Call Button */
.btn-header-call {
  display: none;
  background: var(--green);
  color: var(--dark);
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .875rem;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.btn-header-call:hover { background: var(--green-dark); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 7px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--coral-light); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 92vw);
  height: 100vh;
  background: var(--dark);
  z-index: 850;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding-bottom: 100px;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav-close {
  color: var(--white);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.mobile-nav-close:hover { background: rgba(255,255,255,.1); }

.mobile-nav-list { padding: 1rem 0; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  font-weight: 500;
  transition: background var(--transition);
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--coral); background: rgba(255,255,255,.05); }

/* Mobile sub-menu toggle button — resets button defaults, inherits mobile-nav-link styles */
.mobile-sub-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.mobile-sub-toggle .nav-arrow {
  font-size: .75rem;
  transition: transform var(--transition);
  display: inline-block;
  margin-left: auto;
  padding-left: .5rem;
}

/* Mobile sub-menu panel */
.mobile-sub { display: none; background: rgba(0,0,0,.25); }
.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block;
  padding: .65rem 1.25rem .65rem 2.25rem;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  transition: color var(--transition);
}
.mobile-sub a:hover { color: var(--coral); }

.mobile-nav-cta {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ----- Mobile Bottom Call Bar ----- */
.mobile-call-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 700;
  background: var(--green);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem 1rem;
  color: var(--dark);
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
}

/* ----- Breadcrumb ----- */
.breadcrumb-nav,
nav.breadcrumb {
  background: var(--gray-100);
  padding: .75rem 0;
  font-size: .825rem;
  border-bottom: 1px solid var(--gray-200);
}

/* New markup: <ol class="breadcrumb"> — separators via CSS */
ol.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-light);
}
ol.breadcrumb li { display: flex; align-items: center; }
ol.breadcrumb li + li::before {
  content: "›";
  color: var(--gray-400);
  margin: 0 .4rem;
  font-size: 1rem;
  line-height: 1;
}
ol.breadcrumb a { color: var(--coral-dark); }
ol.breadcrumb a:hover { color: var(--coral); text-decoration: underline; }
ol.breadcrumb li:last-child { color: var(--text); font-weight: 500; }

/* Legacy markup: <ol class="breadcrumb-list"> with explicit .breadcrumb-sep <li> */
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-light);
}
.breadcrumb-list a { color: var(--coral-dark); }
.breadcrumb-list a:hover { color: var(--coral); text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-400); padding: 0 .1rem; }
.breadcrumb-list li:last-child { color: var(--text); font-weight: 500; }

/* ----- Hero Section ----- */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(106,50,38,.92) 0%, rgba(17,17,17,.88) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .4;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(238,108,78,.18);
  border: 1px solid rgba(238,108,78,.45);
  color: #ffc4b2;
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hero-trust-item .icon { color: var(--coral); font-size: 1rem; }

/* ----- Trust Bar ----- */
.trust-bar {
  background: var(--coral);
  padding: .9rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .875rem;
  color: var(--white);
  white-space: nowrap;
}
.trust-item .stars { color: var(--white); letter-spacing: 1px; }

/* ----- Services Grid ----- */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--coral);
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--coral-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.service-card p { font-size: .875rem; color: var(--text-light); margin-bottom: 1rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--coral);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: .6rem; color: var(--coral-dark); }
.service-card-subs {
  margin-top: .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.sub-link {
  display: inline-block;
  padding: .25rem .65rem;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: .775rem;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition);
}
.sub-link:hover { background: var(--coral-light); border-color: var(--coral); color: var(--coral-dark); }

/* ----- Why Choose Us ----- */
.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--coral-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-item h4 { margin-bottom: .25rem; font-size: 1rem; }
.why-item p  { font-size: .875rem; color: var(--text-light); }

/* ----- Review Cards ----- */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .75rem; }
.review-text { font-size: .925rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-author { font-weight: 700; font-size: .875rem; color: var(--dark); }
.review-source { font-size: .775rem; color: var(--text-light); }

/* ----- City Area Chips ----- */
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .45rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: .85rem;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.city-chip:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.city-chip-primary {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  font-weight: 600;
}

/* ----- FAQ ----- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--coral); color: var(--white); }
.faq-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-style: normal;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
  border-top: 1px solid var(--gray-200);
}
.faq-answer.open { display: block; }

/* ----- CTA Section ----- */
.cta-section {
  background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.9); max-width: 540px; margin: 0 auto 1.75rem; }
.cta-btn-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ----- NAP Block ----- */
.nap-block {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.nap-block h3 { margin-bottom: 1rem; font-size: 1rem; }
.nap-line {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .6rem;
  font-size: .9rem;
}
.nap-line:last-child { margin-bottom: 0; }
.nap-icon { flex-shrink: 0; font-size: 1rem; margin-top: .1rem; color: var(--coral); }
.nap-line a { color: var(--coral-dark); font-weight: 600; }
.nap-line a:hover { color: var(--coral); text-decoration: underline; }

/* ----- Map Embed ----- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.map-wrap iframe { display: block; width: 100%; }

/* ----- Two-Column Layout ----- */
.two-col {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

/* ----- Van/Image Block ----- */
.van-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.van-img-wrap img { width: 100%; }

/* ----- Content Pages (About, Privacy, etc.) ----- */
.content-page { padding: 3rem 0 4rem; }
.content-page h1 { margin-bottom: 1.5rem; }
.content-page h2 { margin: 2rem 0 .75rem; }
.content-page h3 { margin: 1.5rem 0 .5rem; }
.content-page ul { padding-left: 1.25rem; list-style: disc; margin-bottom: 1rem; }
.content-page li { margin-bottom: .4rem; }

/* ----- Contact Form ----- */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: .4rem;
  color: var(--dark);
}
.form-input, .form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(238,108,78,.12);
}
.form-textarea { min-height: 130px; resize: vertical; }

/* ----- Footer ----- */
.site-footer {
  background: var(--dark-mid);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

.footer-logo-wrap img { height: 42px; width: auto; margin-bottom: 1rem; }
.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
  line-height: 1.2;
}
.footer-logo-text span { color: var(--coral); }
.footer-tagline { font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.footer-nap { font-size: .85rem; line-height: 1.8; }
.footer-nap strong { color: var(--white); }
.footer-nap a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.footer-nap a:hover { color: var(--coral); }

.footer-col h4 {
  color: var(--white);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .85rem;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--coral); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--coral); }

/* ----- Stars Display ----- */
.stars-display { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }

/* ----- Highlight Box ----- */
.highlight-box {
  background: var(--coral-light);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.highlight-box p { font-size: .9rem; }

/* ----- Page Top Banner (service/city pages) ----- */
.page-hero {
  background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral) 100%);
  color: var(--white);
  padding: 2.5rem 0 3rem;
}
.page-hero h1 { color: var(--white); margin-bottom: .6rem; }
.page-hero p  { color: rgba(255,255,255,.9); font-size: 1rem; max-width: 600px; }
.page-hero .hero-cta-group { margin-top: 1.25rem; margin-bottom: 0; }

/* ----- 404 Page ----- */
.not-found-section {
  text-align: center;
  padding: 6rem 0;
}
.not-found-code {
  font-size: clamp(4rem, 16vw, 8rem);
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: .25rem;
}
.not-found-section h1 { margin-bottom: .75rem; }
.not-found-section p  { color: var(--text-light); max-width: 480px; margin: 0 auto 2rem; }
.not-found-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.5rem; }

/* ----- Responsive Overrides ----- */

@media (min-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .section { padding: 5rem 0; }

  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col-reverse > *:first-child { order: 2; }
  .two-col-reverse > *:last-child  { order: 1; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(3, 1fr); }

  .mobile-call-bar { display: none; }
}

@media (min-width: 1024px) {
  .desktop-nav       { display: flex; align-items: center; }
  .btn-header-call   { display: inline-flex; }
  .hamburger         { display: none; }
  .mobile-call-bar   { display: none; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid      { grid-template-columns: repeat(3, 1fr); }

  .hero { padding: 5rem 0 6rem; }
}

@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-group label span {
  color: var(--coral);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(238,108,78,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Hours table */
.contact-hours-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.contact-hours-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.875rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.hours-table td {
  padding: 0.3rem 0.25rem;
  color: var(--text);
}

.hours-table td:first-child {
  font-weight: 600;
  width: 45%;
}

.hours-table td:last-child {
  color: var(--gray-600);
}

.hours-table .closed-row td {
  color: var(--gray-400);
}

.hours-table .closed-row td:last-child {
  color: #e53e3e;
  font-weight: 600;
}

/* Map embed */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Steps list (used on 24-hour page) */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--dark);
}

.step-body p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 0;
}
