/* ============================================================
   MIRANDA AUTO BODY — GLOBAL DESIGN SYSTEM
   mirandaautobody.com.au
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --black:       #1A1A1A;
  --red:        #C8A96E;
  --red-light:  #D4B87A;
  --red-dark:   #A8894E;
  --white:       #FFFFFF;
  --grey-light:  #F5F5F5;
  --grey-mid:    #666666;
  --grey-dark:   #333333;
  --grey-border: #E0E0E0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --shadow-red: 0 4px 20px rgba(200,169,110,0.35);

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:   1200px;
  --section-pad: 80px 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: clamp(22px, 2.5vw, 28px); font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 16px; font-weight: 600; }

p { margin-bottom: 1.2em; color: var(--grey-dark); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.8);
}

.section--grey {
  background: var(--grey-light);
}

.section--red {
  background: var(--red);
}

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

.red-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 32px;
  border-radius: 2px;
}

.red-divider--left {
  margin-left: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--red);
  color: var(--black);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn--outline-red:hover {
  background: var(--red);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn--dark:hover {
  background: var(--grey-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* --- Section Headings --- */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 18px;
  color: var(--grey-mid);
  max-width: 640px;
  line-height: 1.6;
}

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

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

.card__body {
  padding: 28px;
}

.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Top Bar --- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(5,5,5,0.97);
  border-bottom: 1px solid rgba(200,169,110,0.25);
  height: 34px;
  overflow: hidden;
}

.top-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
}

.top-bar__items {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  white-space: nowrap;
}

.top-bar__item {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.top-bar__sep {
  color: rgba(200,169,110,0.6);
  margin: 0 10px;
  font-size: 11px;
}

.top-bar__item .star { color: #C8A96E; font-size: 10px; }

.top-bar__phone {
  color: #C8A96E;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 16px;
  display: inline-flex; align-items: center; gap: 6px; overflow: hidden; }

@media (max-width: 768px) {
  .top-bar { display: none; }
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.site-header.scrolled {
  top: 34px;
  background: rgba(8,8,8,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(200,169,110,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 12px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.header__logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}

.header__badge {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0px;
  flex: 1;
  justify-content: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--red);
  background: rgba(255,255,255,0.05);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--black);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.nav__dropdown-link:last-child { border-bottom: none; }

.nav__dropdown-link:hover {
  color: var(--red);
  background: rgba(200,169,110,0.08);
  padding-left: 24px;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__phone {
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  padding: 80px 24px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__link {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  font-family: var(--font-display);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.mobile-nav__link:hover { color: var(--red); }

.mobile-nav__sub {
  padding: 8px 0 8px 20px;
  font-size: 16px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.7);
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.mobile-nav__sub:hover { color: var(--red); }

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav__ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Sticky Mobile Bar --- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--black);
  border-top: 1px solid rgba(200,169,110,0.3);
  padding: 10px 16px;
  gap: 10px;
}

.sticky-mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.sticky-mobile-bar .call-btn {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.sticky-mobile-bar .book-btn {
  background: var(--red);
  color: var(--black);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg video,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.5) 50%,
    rgba(26,26,26,0.3) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  white-space: nowrap;
}
.hero__badge svg,
.hero__badge .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__title .accent { color: var(--red); }

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}

.hero__trust-item .icon {
  color: var(--red);
  font-size: 18px;
}

/* --- Trust / Logo Strip --- */
.trust-strip {
  background: var(--black);
  padding: 24px 0;
  border-top: 1px solid rgba(200,169,110,0.15);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.trust-strip__item img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

.trust-strip__divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* --- Service Cards Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.service-card__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover .service-card__desc {
  max-height: 80px;
  opacity: 1;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Why Miranda Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.why-item:hover {
  border-color: var(--red);
  background: rgba(200,169,110,0.05);
  transform: translateY(-4px);
}

.why-item__icon {
  width: 64px;
  height: 64px;
  background: rgba(200,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.why-item__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.why-item__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.why-item__desc {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* --- Brand Carousel / Marquee --- */
.marquee-section {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(200,169,110,0.1);
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}

.marquee-item:hover { color: var(--red); }

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- About / Split Section --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.split-section__img {
  position: relative;
  overflow: hidden;
}

.split-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
}

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

.review-card__stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
}

.review-card__vehicle {
  font-size: 13px;
  color: var(--grey-mid);
}

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

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

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

.faq-question:hover { color: var(--red); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

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

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

.faq-answer p {
  padding-bottom: 20px;
  color: var(--grey-mid);
  font-size: 16px;
  line-height: 1.7;
}

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

/* --- CTA Banner --- */
.cta-banner {
  background: var(--black);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.08) 0%, transparent 60%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Areas We Service --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.area-link {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s;
}

.area-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
}

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

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__cat {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.blog-card__link:hover { gap: 8px; }

/* --- Forms --- */
.form-section {
  background: var(--grey-light);
  padding: var(--section-pad);
}

.form-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.form-label .required {
  color: #E53E3E;
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

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

.form-radio-group,
.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-radio-label,
.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: var(--grey-dark);
}

.form-radio-label input,
.form-checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
}

.upload-area {
  border: 2px dashed var(--grey-border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--grey-light);
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--red);
  background: rgba(200,169,110,0.05);
}

.upload-area__icon {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--grey-mid);
}

.upload-area__text {
  font-size: 15px;
  color: var(--grey-mid);
  margin-bottom: 4px;
}

.upload-area__hint {
  font-size: 13px;
  color: var(--grey-mid);
  opacity: 0.7;
}

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.upload-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--grey-border);
}

.form-submit {
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success__icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--black);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--teal, #C8A96E); }

.breadcrumb__sep { color: rgba(255,255,255,0.3); }

.page-hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
}

.footer__top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.7fr 0.9fr 0.9fr;
  gap: 32px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(200,214,214,0.5);
  margin-bottom: 16px;
  font-style: italic;
}

.footer__address {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer__address a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer__address a:hover { color: var(--red); }

.footer__phone-link {
  display: inline-block;
  color: #E0C99A;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer__phone-link:hover { color: #EDD9B0; }
.footer__email-link {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  display: block;
  margin-top: 4px;
  transition: var(--transition);
}
.footer__email-link:hover { color: #E0C99A; }

.footer__hours {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E0C99A;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover {
  color: #E0C99A;
  padding-left: 4px;
}

.footer__trust-strip {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__trust-badge {
  height: 36px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.footer__trust-badge:hover { opacity: 1; }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  transition: var(--transition);
}

.footer__social:hover {
  border-color: #E0C99A;
  color: #E0C99A;
  background: rgba(224,201,154,0.08);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer__legal a:hover { color: #E0C99A; }

/* --- Repair Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(200,169,110,0.3));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-red);
}

.process-step__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.process-step__desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* --- Page Content (inner pages) --- */
.page-content {
  padding: 64px 0;
}

.content-block {
  max-width: 760px;
}

.content-block h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-block h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.content-block ul {
  list-style: none;
  margin-bottom: 20px;
}

.content-block ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 16px;
  color: var(--grey-dark);
  line-height: 1.6;
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* --- Insurer / Brand Logos Grid --- */
.insurer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.insurer-card {
  background: var(--white);
  border: 2px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.insurer-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-3px);
}

.insurer-card img {
  height: 48px;
  width: auto;
  margin: 0 auto 12px;
  object-fit: contain;
}

.insurer-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.insurer-card__status {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .insurer-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px 0;
  }

  /* Header */
  .top-bar { display: none; }
  .header__nav { display: none; }
  .header__cta .btn { display: none; }
  .header__phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  /* Sticky bar */
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 64px; }

  /* Hero */
  .hero__content { padding: 100px 20px 60px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 16px; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .insurer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Split section */
  .split-section { grid-template-columns: 1fr; }
  .split-section__img { min-height: 280px; }
  .split-section__content { padding: 40px 24px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }

  /* Forms */
  .form-container { padding: 28px 20px; }
  .form-grid-2 { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .cta-banner__btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 110px 20px 56px; }

  /* Trust strip */
  .trust-strip__inner { gap: 16px; }
  .trust-strip__divider { display: none; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .insurer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Utility: visually hidden (accessibility) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Notification bar --- */
.notif-bar {
  background: var(--red);
  color: var(--black);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}

.notif-bar a {
  color: var(--black);
  text-decoration: underline;
}

/* Top bar icon sizing fix */
.top-bar .icon,
.top-bar__phone .icon {
  width: 13px !important;
  height: 13px !important;
  flex-shrink: 0;
  vertical-align: middle;
  overflow: visible;
}

/* Authorised badge in dropdown */
.badge-auth {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C8A96E;
  border: 1px solid rgba(200,169,110,0.4);
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 4px;
  vertical-align: middle;
}
.dropdown__heading {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 8px 20px 4px;
  pointer-events: none;
  cursor: default;
}
.dropdown__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 16px;
  list-style: none;
}
