/* =============================================
   AUTO POINT CAR REMOVAL – Shared Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --blue:       #1a3b6d;
  --blue-dark:  #122d56;
  --blue-mid:   #1e4580;
  --red:        #ec2029;
  --red-dark:   #c8171f;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --light-grey: #e8ecf2;
  --mid-grey:   #8a9ab0;
  --text-dark:  #1a2535;
  --text-body:  #4a5568;

  --font-heading: 'Inter', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-title.white { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-sub.white { color: rgba(255,255,255,.8); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(236,32,41,.35); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }

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

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.phone-icon::before { content: "📞"; margin-right: 4px; }

/* ── Divider ── */
.red-line {
  width: 56px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.red-line.left { margin-left: 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo img {
  height: 54px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO – shared base
   ============================================ */
.hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

/* Subtle diagonal lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.025) 40px,
    rgba(255,255,255,.025) 80px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--red); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.hero-phone-link:hover { color: var(--white); }
.hero-phone-link svg { width: 18px; height: 18px; }

/* ── Homepage hero layout ── */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ── Quote Form ── */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}

.quote-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.quote-card p {
  font-size: 0.82rem;
  color: var(--mid-grey);
  margin-bottom: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,59,109,.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a3b6d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--blue-dark);
  padding: 14px 0;
  border-top: 3px solid var(--red);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-item-icon {
  width: 32px; height: 32px;
  background: rgba(236,32,41,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: var(--light-grey);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px; height: 72px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  position: relative;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue), var(--shadow-md);
}

.step-num span {
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ============================================
   FEATURE GRID (Why Choose Us)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.1);
  transition: background 0.2s;
}

.feature-item:hover {
  background: rgba(255,255,255,.12);
}

.feature-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}

/* ============================================
   SUBURBS SECTION
   ============================================ */
.suburbs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.suburb-tag {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
  transition: all 0.2s;
}

.suburb-tag:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 4rem;
  line-height: 1;
  color: var(--light-grey);
  font-family: Georgia, serif;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars span { color: #f5a623; font-size: 1rem; }

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.author-location {
  font-size: 0.78rem;
  color: var(--mid-grey);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--light-grey);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--light-grey); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  font-family: var(--font-heading);
}

.faq-icon {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}

.faq-icon svg {
  width: 14px; height: 14px;
  stroke: white;
  stroke-width: 2.5;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--red);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--red);
  padding: 56px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
}

.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  margin-top: 6px;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blue);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}

/* Footer logo white container */
.footer-logo-box {
  display: inline-block;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  line-height: 0;
}

.footer-brand img { height: 52px; }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,.75);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--red);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.75);
}

.footer-contact-icon {
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.footer-contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-hours-row .day { font-weight: 600; color: rgba(255,255,255,.9); }
.footer-hours-row .closed { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   PAGE-SPECIFIC: CASH FOR CARS
   ============================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.offer-icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.offer-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.65;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.condition-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.condition-tag:hover { background: rgba(255,255,255,.15); }

.condition-check {
  width: 28px; height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.condition-tag span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

/* ============================================
   PAGE-SPECIFIC: AUTO PARTS
   ============================================ */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.part-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.part-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.part-card-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--white);
}

.part-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.part-card p {
  font-size: 0.8rem;
  color: var(--text-body);
}

.makes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.make-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.make-tag:hover {
  background: var(--red);
  border-color: var(--red);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 4px solid var(--blue);
  transition: border-color 0.2s;
}

.benefit-card:hover { border-color: var(--red); }

.benefit-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ============================================
   PAGE-SPECIFIC: CONTACT
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.contact-card-icon {
  width: 64px; height: 64px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-card a {
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
}

.contact-card a:hover { text-decoration: underline; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-grey);
}

.hours-table td:first-child {
  font-weight: 700;
  color: var(--blue);
  width: 140px;
}

.hours-table td:last-child {
  color: var(--text-body);
}

.hours-table tr:last-child td { border-bottom: none; }
.hours-table .closed-row td:last-child { color: var(--red); font-weight: 600; }

.map-placeholder {
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--mid-grey);
  border: 1px solid var(--light-grey);
  overflow: hidden;
  position: relative;
}

.map-placeholder iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ============================================
   ABOUT SPLIT (Used on some pages)
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.check-list { margin-top: 20px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 12px;
}

.check-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================
   HOMEPAGE HERO – TWO-COLUMN LAYOUT WITH CTA CARD
   ============================================ */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.hero-cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.40);
  width: 320px;
  flex-shrink: 0;
}

.hcc-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 5px;
}

.hcc-sub {
  font-size: 0.82rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.5;
}

.hcc-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  width: 100%;
  text-decoration: none;
  margin-bottom: 18px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(236,32,41,.45);
  letter-spacing: 0.01em;
}
.hcc-phone-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 7px 24px rgba(236,32,41,.55);
}

.hcc-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  border-top: 1px solid var(--light-grey);
}

.hcc-trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.82rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--light-grey);
  font-weight: 500;
}

.hcc-icon {
  width: 30px; height: 30px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.hcc-icon svg { width: 14px; height: 14px; }

.hcc-prefer-email {
  font-size: 0.75rem;
  color: var(--mid-grey);
  text-align: center;
  margin-bottom: 4px;
}

.hcc-email-link {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.hcc-email-link:hover { color: var(--red); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .quote-card { max-width: 540px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-two-col { grid-template-columns: 1fr; }
  .hero-cta-card { width: 100%; max-width: 400px; }
}

@media (max-width: 768px) {
  /* ── Mobile header: hide logo, keep phone CTA + hamburger ── */
  .nav-logo { display: none; }

  /* Tighten CTA button so it fits neatly beside the hamburger */
  .nav-cta {
    padding: 10px 16px;
    font-size: 0.875rem;
    gap: 6px;
  }

  /* Ensure nav-inner fills width cleanly with just CTA + toggle */
  .nav-inner {
    justify-content: space-between;
  }

  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; box-shadow: var(--shadow-md); gap: 18px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .features-grid,
  .offers-grid,
  .conditions-grid,
  .parts-grid,
  .makes-grid,
  .benefits-grid,
  .contact-cards { grid-template-columns: 1fr 1fr; }

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

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

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

  .trust-bar-inner { gap: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-inner { padding: 56px 0 48px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .section-pad { padding: 52px 0; }
}

@media (max-width: 480px) {
  .features-grid,
  .offers-grid,
  .conditions-grid,
  .parts-grid,
  .makes-grid,
  .benefits-grid,
  .contact-cards { grid-template-columns: 1fr; }

  .suburbs-grid { grid-template-columns: repeat(2, 1fr); }

  .trust-bar-inner { flex-direction: column; gap: 12px; }

  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  /* Extra-small phones: compact CTA further */
  .nav-cta {
    padding: 9px 12px;
    font-size: 0.82rem;
    gap: 5px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1,
.hero-sub,
.hero-actions { animation: fadeInUp 0.6s ease both; }
.hero-sub     { animation-delay: 0.1s; }
.hero-actions { animation-delay: 0.2s; }
