:root {
  --primary: #001948;
  --primary-dark: #00153d;
  --primary-rgb: 0, 25, 72;
  --secondary: #588394;
  --secondary-dark: #4d7382;
  --secondary-rgb: 88, 131, 148;
  --accent: #ec6820;
  --accent-dark: #d05c1c;
  --accent-rgb: 236, 104, 32;
  --accent-text: #1a2a35;
  --cream: #fdf3ed;
  --text: #2d3e47;
  --white: #fff;
  --line: rgba(0, 25, 72, 0.12);
  --shadow: 0 18px 48px rgba(22, 35, 48, 0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, .btn, .nav-menu a, .section-eyebrow, .top-bar-tagline, .top-bar-phone {
  font-family: 'Montserrat', sans-serif;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 10px 0;
}
.top-bar .container,
.top-bar-right,
.trust-bar-inner,
.cta-actions,
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar .container,
.footer-top,
.footer-bottom {
  justify-content: space-between;
  gap: 16px;
}
.top-bar-tagline { font-style: italic; font-weight: 700; font-size: 1rem; }
.top-bar-right { gap: 12px; }
.top-bar-phone { font-weight: 900; font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.78rem;
}
.btn-accent:hover { background: var(--accent-dark); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  padding: 12px 22px;
  font-size: 0.8rem;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 243, 237, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 25, 72, 0.08);
}
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 92px;
  gap: 20px;
}
.nav-logo img { height: 70px; width: auto; max-width: 100%; }
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
}
.nav-menu a:hover,
.nav-menu a.active { background: rgba(236, 104, 32, 0.12); color: var(--secondary); }
.hamburger { display: none; background: none; border: none; color: var(--primary); font-size: 1.6rem; cursor: pointer; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.45) 0%, rgba(var(--accent-rgb), 0.2) 100%);
}
.hero-banner-bg {
  position: absolute;
  inset: 0;
}
.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.home-hero {
  background:
    radial-gradient(circle at 28px 28px, rgba(0, 18, 60, 0.42) 0, rgba(0, 18, 60, 0.42) 18px, transparent 19px),
    linear-gradient(135deg, #0a2b73 0%, #001948 70%, #00153d 100%);
  background-size: 80px 80px, auto;
}
.home-hero::before {
  background:
    linear-gradient(180deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0.28) 100%);
}
.home-hero .container {
  min-height: 520px;
}
.home-hero-vehicle {
  inset: auto 3% 0 auto;
  width: min(46vw, 700px);
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 0;
  pointer-events: none;
}
.home-hero-vehicle img {
  width: 100%;
  height: auto;
  max-height: 88%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.24));
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 610px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 42px 36px;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-eyebrow,
.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.hero h1,
.section-title {
  line-height: 1.08;
  font-style: italic;
  color: var(--secondary);
}
.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1rem; margin-bottom: 28px; max-width: 48ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-hero-call {
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 0.9rem;
}
.btn-hero-schedule {
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  padding: 15px 24px;
  font-size: 0.88rem;
}
.trust-bar {
  background: var(--primary);
  color: var(--white);
  padding: 22px 0;
}
.trust-bar-inner { justify-content: center; gap: 30px 40px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 800; }
.trust-item i { color: var(--accent); }

section { padding: 76px 0; }
.cream-section { background: var(--cream); }
.white-section { background: var(--white); }
.section-title { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 16px; }
.section-intro { font-size: 1rem; max-width: 60ch; margin: 0 auto; }

.split-layout,
.why-grid,
.faq-inner,
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.single-copy-layout {
  grid-template-columns: 1fr;
  max-width: 860px;
}
.visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 430px;
  background: radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.25), transparent 28%), linear-gradient(145deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.08));
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-card img { max-height: 360px; object-fit: contain; filter: drop-shadow(0 18px 22px rgba(36,44,68,0.22)); }
.visual-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.copy-block p { margin-bottom: 14px; }
.checklist { list-style: none; display: grid; gap: 12px; margin: 26px 0 30px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: "\2713"; color: var(--accent); font-weight: 900; }

.services-header,
.reviews-header,
.areas-header,
.contact-header,
.cta-panel { text-align: center; }
.services-header,
.reviews-header,
.areas-header,
.contact-header { margin-bottom: 42px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(36,44,68,0.06);
}
.service-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9edf6;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-copy {
  padding: 22px 22px 24px;
}
.service-card h3 { font-size: 1.02rem; color: var(--primary); margin-bottom: 10px; }

.why-list { display: grid; gap: 18px; margin: 28px 0 30px; }
.why-item { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.why-item h4 { color: var(--primary); font-size: 1rem; margin-bottom: 4px; }

.reviews-shell,
.faq-cta-box,
.map-card,
.cta-panel {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.reviews-shell { padding: 22px; }
.faq-cta-box {
  margin-top: 28px;
  padding: 28px;
  background: var(--primary);
  color: var(--white);
}
.faq-cta-box h3 { margin-bottom: 10px; }
.faq-cta-box p { margin-bottom: 18px; color: rgba(255,255,255,0.84); }
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}
.faq-icon { color: var(--accent); }
.faq-answer { display: none; padding: 0 0 20px; color: var(--text); }
.faq-item.open .faq-answer { display: block; }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
}

.lead-form {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lead-form-grid .full-width { grid-column: 1 / -1; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.lead-form textarea { min-height: 140px; resize: vertical; }
.form-submit-btn {
  margin-top: 18px;
  width: 100%;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  padding: 16px 18px;
  font-size: 0.9rem;
}
.map-card {
  padding: 26px;
}
.map-card h3 { color: var(--primary); margin-bottom: 10px; }
.map-card p { margin-bottom: 8px; }
.map-embed {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.cta-panel {
  position: relative;
  background: transparent;
  color: var(--white);
  text-align: center;
  box-shadow: none;
  overflow: hidden;
  padding: 42px 32px;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.35) 0%, rgba(var(--secondary-rgb), 0.2) 100%);
  border-radius: 20px;
}
.cta-panel > * {
  position: relative;
  z-index: 1;
}
.cta-panel .section-eyebrow,
.cta-panel .section-title,
.cta-panel p { color: var(--white); }
.cta-actions { justify-content: center; gap: 12px; margin-top: 20px; }

.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.82);
  padding: 42px 0;
}
.footer-brand img { width: 110px; }
.footer-contact { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.94rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: none;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
}
.mobile-sticky-cta .btn {
  flex: 1;
  padding: 14px 10px;
  font-size: 0.78rem;
}

@media (max-width: 992px) {
  .split-layout,
  .why-grid,
  .faq-inner,
  .contact-inner,
  .services-grid,
  .lead-form-grid {
    grid-template-columns: 1fr;
  }
  .main-nav .container { min-height: 82px; }
  .hamburger { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .nav-menu.open { display: flex; }
  .hero .container { min-height: 520px; }
  .home-hero-vehicle {
    width: min(52vw, 500px);
    right: 1.5%;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .top-bar .container { flex-direction: column; align-items: flex-start; }
  .top-bar-right { width: 100%; }
  .hero-card,
  .lead-form,
  .map-card,
  .faq-cta-box,
  .reviews-shell { padding: 22px; }
  .home-hero-vehicle {
    width: 78vw;
    right: -8%;
    opacity: 0.2;
  }
  .mobile-sticky-cta { display: flex; }
}
