
:root {
  --primary-blue: #0066cc;
  --dark-navy: #1a2744;
  --red-accent: #cc0000;
  --light-gray-bg: #f8f9fa;
  --body-text: #1a1a1a;
  --secondary-text: #6b7280;
  --border: #e5e7eb;
  --stars: #f59e0b;
  --white: #ffffff;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--body-text);
  line-height: 1.6;
  background: var(--white);
  font-size: 16px;
}

a { color: var(--primary-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ─── Top Bar ─── */
.top-bar {
  background: var(--dark-navy);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.4;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }

.top-bar-phone a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-bar-tagline { opacity: 0.9; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-social a {
  color: var(--white);
  opacity: 0.8;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}

.top-bar-social a:hover { opacity: 1; text-decoration: none; }

/* ─── Header ─── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 50px;
}

.logo img {
  height: 50px;
  width: auto;
}

.header-cta-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call {
  background: #28a745;
  color: #fff;
  padding: 8px 18px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
  border: 2px solid #28a745;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  text-align: center;
}

.btn-call:hover {
  background: #218838;
  border-color: #218838;
  text-decoration: none;
}

.btn-text {
  background: var(--primary-blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
  border: 2px solid var(--primary-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  text-align: center;
}

.btn-text:hover {
  background: #0052a3;
  border-color: #0052a3;
  text-decoration: none;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone a {
  background: var(--primary-blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
  border: 2px solid var(--primary-blue);
}

.header-phone a:hover { background: #0052a3; border-color: #0052a3; text-decoration: none; }

/* ─── Content Sections ─── */
.section { padding: 60px 0; }
.section-alt { background: var(--light-gray-bg); }

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-title .highlight {
  color: var(--red-accent);
}

.section-subtitle {
  font-size: 18px;
  color: var(--secondary-text);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #2d3f63 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.hero.with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  text-align: left;
  padding: 60px 0;
}

.hero.with-image .hero-content {
  background: var(--white);
  color: var(--body-text);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.hero.with-image .hero-image {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.hero.with-image .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero.with-image h1 {
  font-size: 32px;
  color: var(--dark-navy);
}

.hero .subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 100%;
  line-height: 1.6;
}

.hero.with-image .subtitle {
  color: var(--secondary-text);
  opacity: 1;
  font-size: 16px;
}

.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero.with-image .hero-cta {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background: #0052a3;
  border-color: #0052a3;
  text-decoration: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--dark-navy);
  border-color: var(--dark-navy);
}

.btn-secondary:hover {
  background: var(--light-gray-bg);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

.btn-dark {
  background: var(--dark-navy);
  color: var(--white);
  border-color: var(--dark-navy);
}

.btn-dark:hover {
  background: #0f1927;
  border-color: #0f1927;
  text-decoration: none;
}

/* ─── Trust/Insurance Bar ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--secondary-text);
  font-weight: 500;
}

.trust-items span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.insurance-bar {
  background: var(--light-gray-bg);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.insurance-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.insurance-logo {
  height: 40px;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.insurance-logo img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
}

.insurance-logo:hover {
  opacity: 1;
}

/* ─── Two Column Layout ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.content-main h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 28px 0 12px;
  line-height: 1.3;
}

.content-main h2:first-child { margin-top: 0; }

.content-main h2 .highlight {
  color: var(--red-accent);
}

.content-main p {
  margin-bottom: 16px;
  color: var(--body-text);
  line-height: 1.7;
}

.content-main ul {
  margin: 0 0 16px 20px;
  color: var(--body-text);
}

.content-main li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ─── Info Boxes ─── */
.info-box {
  background: #e3f2fd;
  border-left: 4px solid var(--primary-blue);
  padding: 16px 20px;
  border-radius: 4px;
  margin: 20px 0;
}

.info-box strong { color: var(--dark-navy); }

.adas-box {
  background: #fff3cd;
  border-left: 4px solid var(--stars);
  padding: 16px 20px;
  border-radius: 4px;
  margin: 20px 0;
}

/* ─── Quote Form ─── */
.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.quote-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.quote-form .form-subtitle {
  font-size: 14px;
  color: var(--secondary-text);
  margin-bottom: 20px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0,102,204,.1);
}

.form-submit {
  width: 100%;
  background: var(--primary-blue);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.form-submit:hover { background: #0052a3; }

.form-note {
  font-size: 12px;
  color: var(--secondary-text);
  text-align: center;
  margin-top: 10px;
}

/* ─── Service Cards ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  text-decoration: none;
}

.service-card-image {
  width: 100%;
  height: 200px;
  background: var(--light-gray-bg);
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--red-accent);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--secondary-text);
  margin: 0 0 16px 0;
  flex-grow: 1;
  line-height: 1.6;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ─── Value Props ─── */
.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.value-prop {
  text-align: left;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.value-prop:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.value-prop-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.value-prop h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.value-prop p {
  font-size: 14px;
  color: var(--secondary-text);
  margin: 0;
  line-height: 1.6;
}

.value-prop a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}

/* ─── Reviews ─── */
.reviews-section {
  padding: 40px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-count {
  font-size: 24px;
  font-weight: 800;
  color: var(--red-accent);
  margin-bottom: 8px;
}

.reviews-rating {
  font-size: 16px;
  color: var(--stars);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--stars);
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--dark-navy);
  font-size: 14px;
}

/* ─── Vehicle List ─── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.vehicle-link {
  display: block;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--body-text);
  font-weight: 500;
  transition: all 0.15s;
  text-align: center;
}

.vehicle-link:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: #e3f2fd;
  text-decoration: none;
}

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
  font-size: 16px;
}

.faq-a {
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--light-gray-bg);
  border-top: 1px solid var(--border);
  color: var(--body-text);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--red-accent);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.footer-col a {
  display: block;
  color: var(--body-text);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
  text-decoration: none;
}

.footer-col a:hover { color: var(--primary-blue); text-decoration: none; }

.footer-col p {
  font-size: 13px;
  color: var(--secondary-text);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--secondary-text);
}

/* ─── Mobile VIN Quote Bar ─── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B3A5C 0%, #0D253F 100%);
  padding: 14px 20px;
  text-align: center;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,.3);
}

.mobile-call-bar a {
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--secondary-text);
}

.breadcrumb a { color: var(--secondary-text); }
.breadcrumb a:hover { color: var(--primary-blue); }
.breadcrumb span { margin: 0 6px; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { padding: 40px 0 36px; }
  .hero h1 { font-size: 28px; }
  .hero.with-image { grid-template-columns: 1fr; text-align: center; padding: 40px 0; }
  .hero.with-image h1 { font-size: 26px; }
  .hero.with-image .hero-cta { justify-content: center; }
  .hero.with-image .hero-image { height: 250px; }
  .hero.with-image .hero-content { text-align: left; }

  .two-col { grid-template-columns: 1fr; }
  .quote-form { position: static; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
  .header-phone { display: none; }
  .header-cta-center { display: flex; gap: 6px; }
  .header-cta-center .btn-call,
  .header-cta-center .btn-text { padding: 8px 12px; font-size: 12px; }
  .top-bar-right { display: none; }
  .section { padding: 40px 0; }
  .trust-items { gap: 16px; font-size: 11px; }
  .service-grid { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .value-prop-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 16px; }
  .insurance-logos { gap: 12px; }
  .insurance-logo { height: 35px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 22px; }
  .hero.with-image h1 { font-size: 20px; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero.with-image .hero-cta { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero.with-image .hero-content { padding: 20px; }
}
