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

:root {
  --red:    #e63329;
  --dark:   #111418;
  --grey:   #1e2228;
  --mid:    #2c3038;
  --light:  #f5f5f5;
  --muted:  #8a9099;
  --white:  #ffffff;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #c4251c; }
.btn-outline  { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-nav      { background: var(--red); color: var(--white); padding: .55rem 1.25rem; }
.btn-nav:hover { background: #c4251c; }

/* ── Nav ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,20,24,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mid);
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: .9rem;
  padding-bottom: .9rem;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  flex: 1;
}
.logo span { color: var(--red); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a0c0f;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,12,15,.88) 0%,
    rgba(10,12,15,.75) 55%,
    rgba(10,12,15,.45) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: .75rem;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-sub {
  color: #b0b8c4;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #d0d8e4;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
}

.badge-honda {
  background: rgba(228,5,33,.18);
  border-color: rgba(228,5,33,.4);
  color: #ffb3b0;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── How It Works ── */
.how {
  padding: 3.5rem 0;
  background: var(--grey);
  border-bottom: 1px solid var(--mid);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.5rem;
}
.how-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
}
.how-step h3 { color: var(--white); font-size: 1rem; font-weight: 700; }
.how-step p  { color: var(--muted); font-size: .9rem; }

/* ── Section headers ── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: .5rem;
}
.section-header p { color: var(--muted); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: #aab0bc; }

/* ── Services ── */
.services {
  padding: 6rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--light);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--dark);
}
.card p { color: var(--muted); font-size: .95rem; }

.card-featured {
  border-top: 3px solid var(--red);
  box-shadow: 0 4px 20px rgba(230,51,41,.12);
  position: relative;
}
.card-featured:hover {
  box-shadow: 0 8px 28px rgba(230,51,41,.22);
}
.card-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

/* ── Service Areas ── */
.areas {
  padding: 6rem 0;
  background: var(--white);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.areas-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.areas-list li {
  padding: .5rem .85rem;
  background: var(--light);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--dark);
}
.areas-note {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}
.areas-note a { color: var(--red); text-decoration: none; font-weight: 600; }
.areas-note a:hover { text-decoration: underline; }

/* ── Why Us ── */
.why {
  padding: 6rem 0;
  background: var(--light);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 2rem;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.check {
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.why-list strong { display: block; margin-bottom: .25rem; font-size: 1rem; }
.why-list p { color: var(--muted); font-size: .9rem; }

.image-placeholder {
  background: var(--mid);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  gap: .75rem;
  font-size: .9rem;
}
.image-placeholder span { font-size: 4rem; }

/* ── Contact ── */
.contact {
  padding: 6rem 0;
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon { font-size: 1.4rem; margin-top: .1rem; }
.info-item strong { display: block; color: var(--white); margin-bottom: .2rem; }
.info-item p { color: #8a9099; font-size: .95rem; }
.tel-link { color: #8a9099; text-decoration: none; font-weight: 600; }
.tel-link:hover { color: var(--white); }

/* Form */
.contact-form {
  background: var(--grey);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--mid);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: #ccc;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--mid);
  border: 1px solid #3a404a;
  border-radius: var(--radius);
  color: var(--white);
  padding: .65rem .9rem;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555d6b; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--mid); }

.full-width { width: 100%; text-align: center; }

.form-success {
  display: none;
  margin-top: 1rem;
  color: #4caf82;
  font-size: .9rem;
  text-align: center;
}
.form-success.visible { display: block; }

.form-error {
  display: none;
  margin-top: 1rem;
  color: #e53935;
  font-size: .9rem;
  text-align: center;
}
.form-error.visible { display: block; }

/* ── Footer ── */
.footer {
  background: #0a0c0f;
  padding: 1.75rem 0;
  border-top: 1px solid var(--mid);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer p { color: var(--muted); font-size: .85rem; }
.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

/* ── Brands Ticker ── */
.brands {
  background: var(--white);
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}
.brands-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 1rem;
}
.brands-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  white-space: nowrap;
  color: #bbb;
  transition: color .2s;
  cursor: default;
  padding: .25rem 0;
}
.brand:hover { color: var(--dark); }

/* brand-specific styling */
.brand.toyota    { font-style: italic; letter-spacing: 3px; }
.brand.ford      { font-weight: 900; letter-spacing: -1px; font-size: 1.3rem; }
.brand.holden    { letter-spacing: 4px; font-size: .95rem; }
.brand.mazda     { font-weight: 900; letter-spacing: 2px; color: #c00; }
.brand.mazda:hover { color: #900; }
.brand.hyundai   { font-weight: 300; letter-spacing: 3px; font-size: 1rem; }
.brand.mitsubishi{ font-size: .85rem; letter-spacing: 2px; }
.brand.nissan    { font-weight: 900; letter-spacing: -1px; font-size: 1.2rem; }
.brand.subaru    { letter-spacing: 4px; font-size: .9rem; }
.brand.honda     { font-weight: 900; font-style: italic; }
.brand.honda-featured {
  color: #e40521;
  font-weight: 900;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: -.5px;
}
.brand.kia       { font-weight: 900; letter-spacing: 6px; font-size: 1.3rem; }
.brand.vw        { font-size: .85rem; letter-spacing: 3px; }
.brand.jeep      { font-weight: 900; letter-spacing: 5px; }
.brand.isuzu     { font-weight: 700; letter-spacing: 2px; color: #b00; }
.brand.isuzu:hover { color: #800; }
.brand.suzuki    { font-style: italic; font-weight: 800; }
.brand.landrover { font-size: .8rem; letter-spacing: 3px; }
.brand.ram       { font-weight: 900; letter-spacing: 6px; font-size: 1.2rem; }

/* ── Stats Bar ── */
.stats {
  background: var(--red);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── FAQ ── */
.faq {
  padding: 6rem 0;
  background: var(--dark);
}
.faq .section-header h2 { color: var(--white); }
.faq .section-header p  { color: #aab0bc; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--grey);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 1.4rem 1.2rem;
  color: #8a9099;
  font-size: .92rem;
  line-height: 1.65;
}

/* Why-photo */
.why-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--grey);
  border: 1px solid var(--mid);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--white); }
.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .35rem;
}
.modal-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.75rem; }

.modal-form .form-group label { color: #ccc; }
.modal-form .form-group input,
.modal-form .form-group textarea {
  background: var(--mid);
  border: 1px solid #3a404a;
  border-radius: var(--radius);
  color: var(--white);
  padding: .65rem .9rem;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.modal-form .form-group input::placeholder,
.modal-form .form-group textarea::placeholder { color: #555d6b; }
.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus { border-color: var(--red); }

.form-divider {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  border-top: 1px solid var(--mid);
  padding-top: 1.25rem;
  margin-bottom: 1rem;
}

.form-row-3 { grid-template-columns: 2fr 1fr 1fr; }

/* Service selector buttons */
.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .25rem;
}
.service-btn {
  background: var(--mid);
  border: 1.5px solid #3a404a;
  border-radius: 999px;
  color: #ccc;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.service-btn:hover { border-color: var(--red); color: var(--white); }
.service-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── Google Reviews ── */
.reviews {
  padding: 6rem 0;
  background: var(--light);
}
.reviews-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: .75rem;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: .3rem .85rem;
  font-size: .82rem;
  font-weight: 600;
  color: #555;
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.reviews-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.stars { color: #f9ab00; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-summary p { color: var(--muted); font-size: .85rem; margin-top: .2rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.review-top {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.review-stars { color: #f9ab00; font-size: .9rem; }
.google-icon { margin-left: auto; flex-shrink: 0; }
.review-text { color: #444; font-size: .9rem; line-height: 1.55; flex: 1; }
.review-date { color: var(--muted); font-size: .8rem; }

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid #dadce0;
  border-radius: var(--radius);
  color: var(--dark);
  font-weight: 600;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  text-decoration: none;
  transition: box-shadow .2s;
}
.btn-google:hover { box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
  border-radius: var(--radius);
  padding: .75rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ── Contact map ── */
.contact-map { display: flex; }
.map-placeholder {
  background: var(--mid);
  border-radius: var(--radius);
  flex: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  gap: .5rem;
  font-size: .9rem;
  text-align: center;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder small { font-size: .8rem; opacity: .6; }

/* Link-style button */
.link-btn {
  background: none;
  border: none;
  color: var(--red);
  font-weight: 600;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.link-btn:hover { text-decoration: underline; }

/* Card CTA */
.card { cursor: pointer; }
.card-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--red);
  font-size: .85rem;
  font-weight: 700;
}

/* ── WhatsApp Button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.25rem .75rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: background .2s, box-shadow .2s, transform .15s;
}
.whatsapp-btn:hover {
  background: #1ebe5a;
  box-shadow: 0 6px 22px rgba(37,211,102,.55);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: .85rem; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--dark);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--mid);
  }

  .why-inner,
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .how-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 1.75rem 1.25rem; }
  .form-row-3 { grid-template-columns: 1fr; }
  .reviews-heading-row { flex-direction: column; gap: .5rem; }
}
