/* ============================================================
   Fraser Coast Tyres – Stylesheet
   Mobile-first, dark navy + amber, Barlow Condensed display
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy:        #0d2137;
  --navy-mid:    #1e3a5f;
  --navy-light:  #2a4d7a;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --amber-light: #fcd34d;
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --grey-light:  #e8ecf1;
  --grey:        #9eaab8;
  --grey-dark:   #4a5568;
  --text:        #1a2b3c;
  --text-light:  #64748b;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(13,33,55,0.10);
  --shadow-lg:  0 8px 40px rgba(13,33,55,0.18);

  --header-h: 68px;
  --section-gap: 80px;
  --container: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

.section { padding: var(--section-gap) 0; background: var(--white); }
.section-light { background: var(--off-white) !important; }
.section-dark  { background: var(--navy) !important; }
.section-dark .section-header h2,
.section-dark h2 { color: var(--white); }
.section-dark .section-tag { color: var(--amber); }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

/* Shared CTA helpers */
.section-cta-center { text-align: center; }
.cta-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Workshop service cards inside dark section */
.section-dark .workshop-service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.section-dark .workshop-service-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(245,158,11,0.4);
}
.section-dark .workshop-service-card h3 { color: var(--white); }
.section-dark .workshop-service-card p  { color: rgba(255,255,255,0.6); }
.section-dark .workshop-service-card .service-icon { color: var(--amber); background: rgba(245,158,11,0.12); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover, .btn-outline:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline.dark {
  color: var(--navy);
  border-color: var(--navy-mid);
}
.btn-outline.dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 15px 32px; font-size: 1.1rem; }
.btn-full { width: 100%; }
.link-btn {
  background: none;
  border: none;
  color: var(--amber-dark);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,33,55,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
  height: var(--header-h);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo-text strong { color: var(--amber); font-weight: 900; }
.main-nav { display: none; }
@media (min-width: 900px) {
  .main-nav { display: flex; }
  .main-nav ul { display: flex; gap: 4px; }
  .main-nav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
  }
  .main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
}
.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .hamburger { display: none; } }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 40px 32px;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 0;
  display: block;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--amber); }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 60px;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245,158,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(30,58,95,0.8) 0%, transparent 60%),
    linear-gradient(135deg, #0d2137 0%, #1e3a5f 100%);
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--amber-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-accent { color: var(--amber); display: block; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 480px) { .hero-scroll-hint { display: none; } }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 48px) 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(245,158,11,0.1) 0%, transparent 60%),
    linear-gradient(135deg, #0d2137 0%, #1e3a5f 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-tag { color: var(--amber); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}

/* ---------- NAV ACTIVE STATE ---------- */
.main-nav .nav-active { color: var(--amber) !important; }

/* ---------- SERVICE CARD DETAILED ---------- */
.service-card-detailed { display: flex; flex-direction: column; }
.service-includes {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--grey-light);
}
.service-includes li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}
.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber-dark);
  font-weight: 700;
}

/* ---------- WORKSHOP SERVICES GRID ---------- */
.workshop-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .workshop-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .workshop-services-grid { grid-template-columns: repeat(3, 1fr); } }
.workshop-service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
}
.workshop-service-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,158,11,0.4); }
.workshop-service-card .service-icon { color: var(--amber); background: rgba(245,158,11,0.12); }
.workshop-service-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.workshop-service-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }

/* ---------- HOW IT WORKS PAGE ---------- */
.hiw-steps { display: flex; flex-direction: column; max-width: 820px; margin: 0 auto; gap: 0; }
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  gap: 0 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-light);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num {
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: var(--amber);
  line-height: 1;
  opacity: 0.9;
  padding-top: 4px;
}
.hiw-step-content { grid-column: 2; }
.hiw-step-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.hiw-step-content p { color: var(--text-light); line-height: 1.7; margin-bottom: 10px; font-size: 0.97rem; }
.hiw-step-content a { color: var(--amber-dark); font-weight: 600; }
.hiw-step-cta { grid-column: 2; margin-top: 16px; }
.hiw-tip {
  background: rgba(245,158,11,0.08);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text);
  margin-top: 12px;
}
.hiw-tip strong { color: var(--navy); }
.hiw-code {
  font-family: monospace;
  background: var(--grey-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.hiw-connector { display: none; }
@media (max-width: 540px) {
  .hiw-step { grid-template-columns: 1fr; }
  .hiw-step-num { grid-row: 1; font-size: 2.5rem; }
  .hiw-step-content { grid-column: 1; }
  .hiw-step-cta { grid-column: 1; }
}

/* What to expect grid */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .expect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .expect-grid { grid-template-columns: repeat(4, 1fr); } }
.expect-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.expect-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.expect-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.expect-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ---------- FAQ CTA ---------- */
.faq-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faq-cta p { font-size: 1.1rem; color: var(--text-light); }

/* ---------- CONTACT AREA CARDS ---------- */
.area-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .area-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .area-cards { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.area-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--navy); margin-bottom: 6px; }
.area-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

/* ---------- YEAR SPAN ---------- */
/* JS fills .year spans with current year */

/* ---------- AREA STRIP ---------- */
.area-strip {
  background: var(--amber);
  padding: 12px 0;
  overflow: hidden;
}
.area-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.area-label { opacity: 0.6; }
.dot { opacity: 0.4; }

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,158,11,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber-dark);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* ---------- WORKSHOP BANNER ---------- */
.workshop-banner {
  margin-top: 48px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px 24px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.workshop-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.workshop-banner-icon {
  grid-column: 1;
  grid-row: 1;
  width: 52px;
  height: 52px;
  background: rgba(245,158,11,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.workshop-banner-icon svg { width: 28px; height: 28px; }
.workshop-banner-text {
  grid-column: 2;
  grid-row: 1;
}
.workshop-banner-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.workshop-banner-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}
.workshop-banner-text strong em { color: var(--amber); font-style: normal; }
.workshop-banner-services {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.workshop-banner-services span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.workshop-banner-services svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
  flex-shrink: 0;
}
.workshop-banner .btn {
  grid-column: 1 / -1;
  justify-self: start;
}
@media (max-width: 600px) {
  .workshop-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .workshop-banner-icon { grid-column: 1; }
  .workshop-banner-text { grid-column: 1; }
}

/* ---------- WHY CHOOSE US ---------- */
.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .why-inner { grid-template-columns: 1fr 1fr; } }
.why-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.1;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  margin-top: 2px;
}
.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-list p { color: var(--text-light); font-size: 0.95rem; }
.cta-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-card-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.cta-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.1;
}
.cta-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.cta-hours {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-hours strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: 6px;
}
.cta-hours span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
  }
}
.step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.8;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.step p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.step-arrow {
  font-size: 2rem;
  color: var(--amber);
  text-align: center;
  display: none;
}
@media (min-width: 768px) { .step-arrow { display: block; } }

/* ---------- TYRE SHOP ---------- */
.tyre-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 36px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.filter-group { display: flex; flex-direction: column; gap: 6px; min-width: 160px; }
.filter-group label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
}
.filter-select {
  padding: 10px 14px;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239eaab8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-select:focus { outline: none; border-color: var(--amber); }
.tyre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .tyre-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tyre-grid { grid-template-columns: repeat(3, 1fr); } }
.tyre-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--grey-light);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.tyre-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}
.tyre-card.hidden { display: none; }
.tyre-img {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  height: 180px;
}
.tyre-img svg { width: 100px; height: 100px; }
.tyre-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tyre-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.tyre-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  line-height: 1.1;
}
.tyre-type-label {
  font-size: 0.85rem;
  color: var(--grey-dark);
  font-weight: 500;
}
.tyre-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars { color: var(--amber); font-size: 0.95rem; letter-spacing: 1px; }
.rating-count { font-size: 0.8rem; color: var(--text-light); }
.tyre-sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.size-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 4px 10px;
  border: 1.5px solid var(--grey-light);
  border-radius: 4px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.size-tag.active {
  border-color: var(--navy-mid);
  background: var(--navy-mid);
  color: var(--white);
}
.size-tag:hover:not(.active) {
  border-color: var(--amber);
  color: var(--navy);
}
.tyre-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.tyre-price { font-size: 1rem; color: var(--text-light); }
.tyre-price strong { font-size: 1.5rem; color: var(--navy); font-family: var(--font-display); font-weight: 900; }
.tyre-fitted { font-size: 0.8rem; color: var(--grey); }
.tyre-cta { margin-top: auto; }
.tyre-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 32px;
}
.tyre-note a { color: var(--amber-dark); text-decoration: underline; }
.no-results {
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
  font-size: 1rem;
}

/* ---- FIREBASE TYRE CARDS ---- */
.tyres-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 0;
  color: var(--text-light);
}
.tyres-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--grey-light);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tyres-empty {
  text-align: center;
  color: var(--text-light);
  padding: 40px 0;
  grid-column: 1 / -1;
}
.tyres-empty a { color: var(--amber-dark); text-decoration: underline; }

/* Badges row */
.tyre-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
}
.tyre-badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 40px;
}
.tyre-badge-stock  { background: var(--amber); color: var(--navy); }
.tyre-badge-order  { background: var(--grey-light); color: var(--grey-dark); }
.tyre-badge-special { background: var(--navy-mid); color: var(--white); }

/* Tyre image with real photo */
.tyre-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.tyre-img-placeholder { background: var(--white); }

/* Tyre size label */
.tyre-size-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--navy-mid);
  background: var(--grey-light);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* Tyre description */
.tyre-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Price boxes */
.tyre-prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  padding: 10px 12px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--off-white);
}
.price-box-featured {
  border-color: var(--amber);
  background: rgba(245,158,11,0.06);
}
.price-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  width: 100%;
}
.tyre-price-amt {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
}
.price-box-featured .tyre-price-amt { color: var(--navy); }
.price-was {
  font-size: 0.8rem;
  color: var(--grey);
  text-decoration: line-through;
}
.price-saving {
  font-size: 0.78rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 1px 7px;
  border-radius: 40px;
}

/* CTA row */
.tyre-cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

/* Filter active state */
#reset-filters.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Tyre filter meta count */
.tsb-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  align-self: center;
  white-space: nowrap;
}

/* is-special card */
.tyre-card.is-special {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), var(--shadow);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; flex: 1; }
.testimonial-card footer { margin-top: auto; }
.testimonial-card strong { display: block; color: var(--white); font-weight: 700; }
.testimonial-card span { font-size: 0.85rem; color: var(--amber); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--amber); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  transition: transform 0.3s, background 0.2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--amber);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer > div { padding: 0 24px 20px; color: var(--text-light); line-height: 1.7; }
.faq-answer > div p { font-size: 0.95rem; }

/* ---------- CONTACT ---------- */
.contact-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 700px) { .contact-simple { grid-template-columns: auto 1fr; gap: 48px; align-items: start; } }

/* Big call card */
.contact-call-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  min-width: 240px;
}
.contact-call-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,158,11,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 4px;
}
.contact-call-icon svg { width: 20px; height: 20px; }
.contact-call-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.contact-call-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
}
.contact-call-number:hover { color: var(--amber); }
.contact-call-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .contact-inner { grid-template-columns: 1fr 1.4fr; } }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-detail > div { display: flex; flex-direction: column; gap: 4px; }
.contact-detail strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
}
.contact-detail a {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-detail a:hover { color: var(--amber-dark); }
.contact-detail span { color: var(--text-light); font-size: 0.9rem; }
.contact-note { color: var(--grey); font-size: 0.85rem !important; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.form-group label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239eaab8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; }
.field-error { color: #ef4444; font-size: 0.8rem; }
.form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #065f46;
  font-weight: 600;
  margin-top: 8px;
}
.form-privacy {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}
.form-privacy a { color: var(--amber-dark); text-decoration: underline; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 48px;
}
@media (min-width: 700px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-inner { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 32px; } }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--amber); color: var(--navy); }
.footer-social svg { width: 18px; height: 18px; }
.footer-links h4, .footer-contact-block h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-contact-block { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-block p, .footer-contact-block span { font-size: 0.9rem; }
.footer-contact-block a:hover { color: var(--amber); }
.footer-hours {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-hours strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--amber); }

/* ---------- FLOATING CALL BUTTON ---------- */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 90;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(245,158,11,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.float-call svg { width: 20px; height: 20px; }
.float-call:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(245,158,11,0.7); }
@media (min-width: 900px) { .float-call { display: none; } }

/* ---------- ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* ---------- FOCUS STYLES ---------- */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .float-call, .hero-scroll-hint { display: none; }
  .hero { min-height: auto; }
}
