:root {
  --red: #BD2F2B;
  --black: #0b0b0c;
  --white: #ffffff;
  --muted: #6b7280;
  --border: rgba(0, 0, 0, .12);
  --shadow: 0 18px 45px rgba(0, 0, 0, .14);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, .10);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --max: 1200px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--black);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none
}

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

button,
input,
select {
  font-family: inherit
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto
}

.hidden {
  display: none !important
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 12px;
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body[data-page="home"] nav a[href="index.html"],
body[data-page="services"] nav a[href="../services/choose-service.html"],
body[data-page="information"] nav a[href="../services/choose-service.html"],
body[data-page="contact"] nav a[href="contact.html"],
body[data-page="help"] nav a[href="help.html"],
body[data-page="success"] nav a[href="index.html"] {
  color: #BD2F2B;
  font-weight: 600;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px
}

.brand img {
  height: 86px;
  width: auto
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1
}

.navlink {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .15s, color .15s, filter .12s;
}

.navlink:hover {
  filter: brightness(.95)
}

.navlink.active {
  color: var(--black);
  background: rgba(253, 8, 8, 0.06)
}

.navlink.red-active {
  color: #fff;
  background: var(--red)
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
  transition: filter .12s, transform .12s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  filter: brightness(.95)
}

.btn:active {
  transform: translateY(1px)
}

.btn-red {
  background: var(--red);
  color: #fff
}

.btn-ghost {
  background: #fff;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, .10)
}

.section {
  padding: 95px;
}

.desktop-nav {
  display: flex;
}

.mobile-only {
  display: none;
}

.mobile-menu,
.mobile-locations {
  position: relative;
}

.mobile-menu summary,
.mobile-locations summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.mobile-menu summary::-webkit-details-marker,
.mobile-locations summary::-webkit-details-marker {
  display: none;
}

/* hamburger button */
.mobile-menu summary {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mobile-menu summary span {
  display: block;
  width: 22px;
  height: 3px;
  background: #111;
  border-radius: 999px;
}

/* locations button */
.mobile-locations summary {
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #111;
  background: #fff;
}

.mobile-locations summary img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.mobile-locations summary svg {
  width: 14px;
  height: 14px;
}

/* dropdown panels */
.mobile-panel,
.locations-panel {
  position: absolute;
  top: calc(100% + 10px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
  padding: 8px;
  min-width: 180px;
  z-index: 50;
}

.mobile-panel {
  left: 0;
}

.locations-panel {
  right: 0;
}

.mobile-panel a,
.locations-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.mobile-panel a:hover,
.locations-panel a:hover {
  background: rgba(189, 47, 43, .08);
  color: var(--red);
}



/* HERO */
.hero {
  position: relative;
  padding: 75px 0 75px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("assets/hero-background.jpg");
  background-size: cover;
  background-position: center;
  opacity: .95;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1.15fr;
  gap: 34px;
  align-items: center;
  min-height: 340px;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -.02em;
  font-weight: 600;
}

.hero-copy p {
  margin: 0 0 18px;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.55;
  color: #2a2a2a;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* Hero Cards */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 10px;
  justify-items: stretch;
}

.hero-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  padding: 14px 14px 35px;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .14)
}

.hero-card .title {
  font-weight: 900;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 6px;
}

.hero-card .sub {
  font-size: 11px;
  color: #3a3a3a;
  line-height: 1.35;
}

.hero-card .iconwrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.hero-card .iconwrap img {
  max-height: 135px;
  width: auto
}

/* Fee calculator section */
.fee-shell {
  background: linear-gradient(135deg, #9b1d1b, var(--red));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 26px;
  overflow: visible;
}

.fee-grid {
  display: grid;
  grid-template-columns: 1.2fr .5fr;
  gap: 150px;
  align-items: stretch;
  padding: 25px;
  padding-bottom: 5px;
}

.fee-title {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  margin: 0 0 4px;
  padding-top: 20px;
}

.fee-sub {
  color: rgba(255, 255, 255, .86);
  margin: 0 0 20px;
  font-size: 13px
}

.info-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;

  width: 18px;
  height: 18px;

  font-size: 12px;
  font-weight: lighter;

  border-radius: 50%;
  border: 1px solid #ccc;
  color: #fff;

  cursor: help;
}

.tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);

  width: 260px;
  padding: 10px 12px;

  font-size: 12px;
  line-height: 1.4;

  background: #111;
  color: white;

  border-radius: 6px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.info-icon:hover .tooltip {
  opacity: 1;
}


.price-vin-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.inputs-row {
  display: grid;
  grid-template-columns: 3.1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.home-select-row {
  margin-bottom: 10px;
}

.home-extra-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.home-extra-fields:empty {
  display: none;
}

.input-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, .65) 50%), linear-gradient(135deg, rgba(0, 0, 0, .65) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
  cursor: pointer;
}

.home-extra-fields .field.full-span {
  grid-column: 1 / -1;
}

.calc-field-note {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  line-height: 1.35;
}

.fee-row .name {
  flex: 1;
}

.fee-row .amt {
  font-weight: 900;
  white-space: nowrap;
}

.input {
  width: 100%;
  border-radius: 12px;
  border: 0;
  padding: 11px 12px;
  outline: none;
  font-size: 12px;
  background: #fff;
}

.estimate-box {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, .10);
  padding: 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.estimate-box2 {
  align-items: center;
  align-content: center;
}


.estimate-box .label {
  font-weight: 600;
  font-size: 16px;
  text-align: center
}

.estimate-box .cost {
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  color: var(--red);
  line-height: 1
}

.toggle {
  border: 0;
  background: transparent;
  font-weight: 400;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 0 2px;
}

.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, .75);
  transition: transform .15s;
}

.caret.up {
  transform: rotate(180deg)
}

.calc-btn {
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  padding: 14px 14px;
  font-weight: 300;
  font-size: 12px;
  cursor: pointer;
  margin-top: 16px;
}

.breakdown-wrap {
  margin-top: 18px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  max-height: 0px;
  transition: max-height .25s ease;
}

.breakdown-wrap.open {
  max-height: 520px
}

.breakdown-head {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  font-weight: 900;
  font-size: 12px;
}

.breakdown-body {
  max-height: 420px;
  overflow: auto;
  padding: 6px 0
}

.fee-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 16px;
  font-size: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.fee-row:last-child {
  border-bottom: 0
}

.fee-row .amt {
  font-weight: 900
}

/* Phone Section */
.two-col-home {
  display: grid;
  grid-template-columns: 1.1fr .85fr;
  gap: 26px;
  align-items: center;
  padding: 80px 0 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .85fr;
  gap: 26px;
  align-items: center;
  padding: 20px 0 0;
}

.phone-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px
}

.phone-card img {
  height: 400px;
  width: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .18));
}

.learn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding-right: 25px;
}

.learn h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.02em
}

.learn p {
  margin: 0;
  font-weight: 200;
  font-size: 14px;
}

/* Dealer strip */
.dealer-strip {
  background: linear-gradient(90deg, #BD2F2B, #8c0001);
  padding: 95px 0 115px;
  position: relative;
}

.dealer-strip h2 {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600
}

.dealer-strip p {
  margin: 0 auto 0;
  text-align: center;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  max-width: 620px;
  line-height: 1.5;
}

.dealer-cards {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -140px;
  width: 890px;
  height: 210px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
  min-height: 160px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-card .pc-title {
  font-weight: 600;
  color: var(--red);
  font-size: 16px
}

.price-card .pc-title-sub {
  text-align: left;
  font-size: 12px;
  color: #000000;
}

.price-card .pc-price {
  font-weight: 600;
  font-size: 62px;
  text-align: left;
  margin-top: 8px;
  margin-bottom: -4px
}

.price-card .pc-sub {
  text-align: left;
  font-size: 12px;
  color: #4b5563;
  margin-top: 0
}

.next-circle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.next-circle img {
  width: 18px;
  height: 18px;
  display: block;
  margin: auto;
}

/*  Reviews  */
.reviews {
  padding: 290px 0;
  padding-bottom: 175px;
  background: #f7f9fb;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.reviews-header h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.reviews-header p {
  color: #6b7280;
}

/* Viewport */
.reviews-viewport {
  overflow: hidden;
  width: 100%;
}

/* Track that moves */
.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollReviews 60s linear infinite;
}

/* Pause on hover */
.reviews-viewport:hover .reviews-track {
  animation-play-state: paused;
}

/* Cards */
.review-card {
  width: 340px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, .08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.stars {
  color: #fbbc04;
  letter-spacing: 2px;
  font-size: 14px;
}

.source-badge img {
  width: 18px;
  height: 18px;
  opacity: .85;
}

.review-title {
  font-size: 16px;
  font-weight: 600;
  margin: 6px 0;
}

.review-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.45;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
}

.review-loc {
  font-weight: 400;
  color: #6b7280;
  font-size: 13px;
  padding-left: 5px;
}

.review-date {
  font-size: 12px;
  color: #9ca3af;
}

.review-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #BD2F2B;
  /* brand red */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 14px;
}

/* Animation */
@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* Footer */
footer {
  background: #080809;
  padding: 32px 0;
  margin-top: 26px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start
}

.footer-left {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.footer-left img {
  width: 142px;
  height: 142px;
  object-fit: fill;
  padding: 8px;
  padding-top: 0px;
}

.locations h3 {
  margin: 2px 0 10px;
  font-size: 18px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .02em
}

.loc {
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 10px;
  opacity: .92;
  font-weight: 300;
  letter-spacing: .04em
}

.loc b {
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
  opacity: .92;
  font-weight: 600;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 12px
}

.social {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.social img {
  width: auto;
  height: auto;
  object-fit: contain;
}


/* Success */

.congrats {
  padding: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 520px;
  text-align: center;
}

.badge {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 26px;

}

.congrats h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 900
}

.congrats p {
  margin: 0;
  max-width: 520px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5
}

.congrats button {
  margin-top: 25px;
  width: 200px;
}

/* CONTACT PAGE */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 55px;
  background:
    radial-gradient(circle at top left, rgba(189, 47, 43, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(189, 47, 43, 0.10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #faf7f7 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(189, 47, 43, .08);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-hero-copy h1 {
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 700;
  max-width: 640px;
}

.contact-hero-copy p {
  margin: 0;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.contact-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-highlight-card {
  background: linear-gradient(145deg, #111214 0%, #1e2025 100%);
  color: #fff;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.contact-highlight-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.contact-pill.light {
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .92);
}

.contact-highlight-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
}

.contact-highlight-card p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .82);
}

.contact-highlight-list {
  display: grid;
  gap: 12px;
}

.contact-highlight-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.contact-highlight-item:last-child {
  border-bottom: 0;
}

.contact-highlight-item span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.contact-highlight-item strong {
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.contact-cards-section {
  margin-top: -18px;
  padding-bottom: 10px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
  border-color: rgba(189, 47, 43, .20);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(189, 47, 43, .08);
  font-size: 24px;
  margin-bottom: 14px;
}

.contact-card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
}

.contact-card-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.contact-info-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}

.contact-main-section {
  padding-top: 42px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
  align-items: start;
  max-width: 80%;
}

.contact-side-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);

}

.contact-form-shell {
  padding: 28px;
}

.contact-section-head {
  margin-bottom: 20px;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(189, 47, 43, .08);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.light-chip {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.contact-section-head h2,
.contact-side-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.1;
}

.contact-section-head p,
.contact-side-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.65;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}

.contact-input {
  border: 1px solid rgba(0, 0, 0, .10);
  min-height: 48px;
  font-size: 14px;
}

.contact-input:focus {
  border-color: rgba(189, 47, 43, .40);
  box-shadow: 0 0 0 4px rgba(189, 47, 43, .08);
}

.contact-textarea {
  min-height: 160px;
  resize: vertical;
  padding-top: 14px;
}

.full-span {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.contact-form-note {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.contact-sidebar2 {
  display: grid;
  gap: 18px;
}

.contact-hero-img {
  max-height: auto;
  max-width: auto;
}


.contact-side-card {
  padding: 24px;
}

.hours-list {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.hours-list2 {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  font-size: 14px;
}

.hours-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-row span {
  color: #4b5563;
}

.hours-row strong {
  color: #111827;
}

.location-block {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.location-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.location-block strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.location-block p {
  margin: 0 0 10px;
}

.location-block a {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.contact-side-accent {
  background: linear-gradient(135deg, #9b1d1b, var(--red));
  color: #fff;
  border: 0;
}

.contact-side-accent h3,
.contact-side-accent p {
  color: #fff;
}

.contact-side-btn {
  margin-top: 18px;
  width: 100%;
}

.schedule-help-text {
  margin-top: 16px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

.schedule-done-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.done-scheduling-btn {
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s ease;
}

.done-scheduling-btn:hover {
  filter: brightness(0.95);
}

.done-scheduling-btn:active {
  transform: translateY(1px);
}


/* HELP PAGE WRAPPER (MATCHES OTHER PAGES) */
.help-card {
  max-width: 60%;
  margin: 40px auto;
  margin-bottom: 100px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.10);
  padding: 30px 30px 40px;

}

/* tighten spacing inside */
.help-card .container {
  padding: 0;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

/* adjust hero inside card */
.help-card .help-hero {
  padding: 10px 0 20px;
  text-align: center;
}

/* spacing for FAQ */
.help-section {
  padding-top: 10px;
  align-items: center;
}

.faq-container.centered {
  max-width: 900px;
  margin: 0 auto;
}

.help-section {
  padding: 0;
}

.help-hero {
  padding: 30px 0 40px;
  text-align: center;
}

.help-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.help-hero p {
  color: #6b7280;
}

.faq-container {
  max-width: 40%;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h2 {
  margin-bottom: 16px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  margin-bottom: 12px;
  padding: 14px 18px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin-top: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.help-cta {
  text-align: center;
  padding: 60px 0;
}

.help-cta-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: center;
}



@media (max-width: 980px) {



  .contact-hero {
    padding: 72px 0 36px;
  }

  .contact-hero-grid,
  .contact-main-grid,
  .contact-cards-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    max-width: 100%;
  }

  .contact-hero-copy {
    text-align: center;
  }

  .contact-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-copy h1 {
    font-size: 32px;
    max-width: none;
  }

  .contact-hero-copy p {
    max-width: none;
  }

  .contact-hero-actions {
    justify-content: center;
  }

  .contact-highlight-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-highlight-item strong {
    text-align: left;
  }

  .contact-cards-section {
    margin-top: 0;
  }

  .contact-form-shell,
  .contact-side-card {
    padding: 20px;
  }

  .contact-section-head h2,
  .contact-side-card h3 {
    font-size: 24px;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .contact-form-actions .btn {
    width: 100%;
  }
}


/* Responsive (MOBILE) */
@media (max-width: 980px) {



  /* Header */
  .desktop-nav {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  header {
    padding: 8px 0;
  }

  .header-inner {
    height: 78px;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    justify-content: center;
  }

  .brand img {
    height: 70px;
    width: auto;
    margin: 0 auto;
  }

  .mobile-locations {
    justify-self: end;
  }

  nav {
    display: none
  }

  .brand {
    min-width: unset;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: 14px
  }

  /* Fee Calculator */

  input[type="date"] {
    color: #111;
    background-color: #fff;
    min-height: 40px;
    line-height: normal;
  }

  button,
  input[type="button"],
  input[type="submit"] {
    color: #111;
  }

  input[type="radio"] {
    -webkit-appearance: radio;
    appearance: auto;
  }

  input[type="date"]:not(:valid) {
    color: #a9a9a9;
  }

  input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
  }

  input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 1;
  }

  input,
  select {
    color: #000;
    appearance: none;
    -webkit-appearance: none;
  }

  select {
    color: #000;
    background-color: white;
    -webkit-appearance: none;
    appearance: none;
  }

  .fee-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .fee-title {
    font-size: 24px;
    text-align: center;

  }

  .fee-sub {
    font-size: 11px;
    padding-top: 5px;
    padding-bottom: 10px;
    text-align: center;
    column-gap: 10px;

  }

  .inputs-row {
    grid-template-columns: 1fr 1fr;
  }

  .price-vin-row,
  .home-extra-fields {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr
  }

  /* Phone Info */
  .phone-card {
    padding: 0%;
  }

  .phone-card img {

    height: auto;
    width: auto;
  }

  .learn {
    padding-right: 0;
    align-items: center;
  }

  .learn h2 {
    font-size: 24px;
  }

  .learn .btn {
    align-self: center;
    width: 75%;
  }

  .two-col-home {
    grid-template-columns: unset;
    padding: 80px 0 40px;
  }

  /* Dealer Page */
  .dealer-strip {
    padding: 80px 0 390px;
  }

  .dealer-cards {
    position: static;
    transform: none;
    width: 90%;
    margin: 18px auto 0;
    grid-template-columns: 1fr
  }

  .price-card {
    min-height: auto;
  }

  /* Reviews */
  .reviews {
    padding-top: 120px
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-right {
    justify-content: flex-end;
    padding-right: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .upload-grid,
  .sched-grid,
  .pay-grid {
    grid-template-columns: 1fr
  }



  .help-card {
    max-width: 90%;
  }

  .faq-category {
    margin-bottom: 70px;
  }

  .section {
    padding: 5px;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  /* Successful Payment Page */


}