/* ═══════════════════════════════════════════════════════════════
   Dube Auto Detail — Exact Reference Translation
   Focus: Precision, Scale, Whitespace, Hierarchy
═══════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --black: #000000;
  --dark: #121212;
  --dark-grey: #1f1f1f;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --red: #d92b2b;
  --blue: #1d3d63; /* Reference footer color */
  --blue-tag: #2b6cb0; /* Reference tag color */

  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", sans-serif;

  --container-w: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ── Keyframe Animations ───────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* ── Reveal & Animations ───────────────────────────────── */
[data-reveal],
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-visible,
.reveal.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
/* Staggering for groups */
[data-reveal-group].is-visible > *:nth-child(1) {
  transition-delay: 0.1s;
}
[data-reveal-group].is-visible > *:nth-child(2) {
  transition-delay: 0.2s;
}
[data-reveal-group].is-visible > *:nth-child(3) {
  transition-delay: 0.3s;
}
[data-reveal-group].is-visible > *:nth-child(4) {
  transition-delay: 0.4s;
}

/* ── Typography & Utils ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (max-width: 480px) {
  .flex-start,
  .flex-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .container {
    padding-inline: 1rem;
  }
  section {
    overflow-x: hidden;
    max-width: 100vw;
  }
}

.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}

.heading-display {
  font-family: var(--font-display);
  line-height: 1;
  text-transform: uppercase;
}

.section-padding {
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.bg-darker {
  background-color: #0a0a0a;
}
.page-hero-offset {
  padding-top: clamp(8rem, 15vw, 12rem) !important;
}

.heading-xl {
  font-size: clamp(2.8rem, 12vw, 8rem);
}
.heading-lg {
  font-size: clamp(2.2rem, 8vw, 5rem);
}
.heading-md {
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--white);
  text-transform: uppercase;
}

.text-red {
  color: var(--red);
}
.text-white {
  color: var(--white);
}
.text-muted {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Dark Section Text Colors ───────────────────────────── */
.bg-dark,
.about-section,
.services-section,
.specialities-section,
.exceptional-section,
.cta-section,
.testimonial-section,
.contact-section {
  color: var(--white) !important;
}
.bg-dark p,
.about-section p,
.services-section p,
.specialities-section p,
.exceptional-section p,
.cta-section p,
.testimonial-section p,
.contact-section p,
.bg-dark h1,
.about-section h1,
.services-section h1,
.specialities-section h1,
.exceptional-section h1,
.cta-section h1,
.testimonial-section h1,
.contact-section h1,
.bg-dark h2,
.about-section h2,
.services-section h2,
.specialities-section h2,
.exceptional-section h2,
.cta-section h2,
.testimonial-section h2,
.contact-section h2,
.bg-dark h3,
.about-section h3,
.services-section h3,
.specialities-section h3,
.exceptional-section h3,
.cta-section h3,
.testimonial-section h3,
.contact-section h3,
.bg-dark span,
.about-section span,
.services-section span,
.specialities-section span,
.exceptional-section span,
.cta-section span,
.testimonial-section span,
.contact-section span {
  color: var(--white) !important;
}

/* Reveal No-JS Fallback */
.no-js .reveal,
.no-js [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

.input-field {
  width: 100%;
  padding: 1.25rem;
  background: var(--dark-grey);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: var(--dark-grey);
}
.input-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Forms & Inputs --- */
.form-group {
  margin-bottom: 2rem;
}
.input-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}
.input-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 2px;
  transition:
    border-color 0.3s,
    background 0.3s;
  outline: none;
}
.input-field:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.08);
}
.input-field::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* --- General Components --- */
.btn--black {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.btn--black:hover {
  border-color: var(--red);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* --- Vehicle & Search --- */
.veh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.spec-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
  font-size: 0.85rem;
}
.spec-label {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.spec-value {
  color: var(--white);
  font-weight: 700;
}

/* --- Subpage Hero --- */
.hero--inner {
  height: 50vh;
  min-height: 400px;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 10000; /* Extremely high to stay above all elements */
  display: flex;
  align-items: center;
  background: var(--black); /* Solid black by default for visibility */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  padding-inline: 2rem;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--red);
}

/* --- Dropdown --- */
.nav-dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-grey);
  min-width: 220px;
  padding: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.dropdown-content a {
  display: block;
  padding: 0.8rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--red);
  padding-left: 3rem;
}
.nav-dropdown:hover .dropdown-content {
  display: block;
  animation: navFadeIn 0.3s ease;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  touch-action: manipulation;
  -webkit-appearance: none;
  -webkit-user-select: none;
  user-select: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white) !important;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
  overflow-y: auto;
  padding-top: 120px;
}
.nav-mobile.is-active {
  transform: translateX(0);
}
.nav-mobile__inner {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  text-align: center;
}
.nav-mobile__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.nav-mobile__links a {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0.5rem 0;
}
.nav-mobile__links a:hover {
  color: var(--red);
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
  }
  .nav-inner {
    padding-inline: 1.25rem;
  }
  .site-nav {
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .contact-section > .container > div {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    align-items: stretch !important;
  }
  .contact-section > .container > div > div {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding-inline: 1rem;
  }
  .nav-logo {
    font-size: 1.4rem;
  }
}

/* Toggle Animation */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) saturate(1.1);
  display: block;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(5, 5, 5, 0.9) 0%,
    rgba(5, 5, 5, 0.7) 40%,
    transparent 100%
  );
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__floating-card {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__floating-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.hero__floating-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

/* --- Typewriter --- */
.hero__typewriter {
  white-space: normal;
  display: block;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero__typewriter {
    white-space: normal;
    font-size: clamp(2rem, 10vw, 3.5rem);
    line-height: 1.1;
    display: block;
  }
  .hero__text-col {
    padding-bottom: 2rem !important;
  }
}

/* ══════════════════════════════════════════════════════════
   2. ABOUT (Detailing Experts)
══════════════════════════════════════════════════════════ */
.about-section {
  padding: 4rem 0;
  background: var(--dark-grey);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-content {
  max-width: 480px;
  margin: 0 auto;
}
.about-title {
  font-size: 4.5rem;
  line-height: 0.9;
  margin-bottom: 1rem;
  color: var(--white);
}
.about-title span {
  color: var(--red);
  display: block;
}
.about-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.btn--red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1.1rem 2.8rem;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--red);
}
.btn--red:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(217, 43, 43, 0.4);
}

.btn--outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1.1rem 2.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(217, 43, 43, 0.3);
}

.btn--dark {
  display: inline-block;
  background: var(--dark-grey);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1.1rem 2.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}
.btn--dark:hover {
  background: var(--black);
  border-color: var(--red);
}

/* Overlapping images right side */
.about-images {
  position: relative;
  height: 500px;
}
.about-img-1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.about-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65%;
  height: 300px;
  object-fit: cover;
  z-index: 2;
  border: 8px solid var(--black);
}

/* ══════════════════════════════════════════════════════════
   3. SERVICES (White Bg, 2x2 Grid)
══════════════════════════════════════════════════════════ */
.services-section {
  padding: 2rem 0 4rem 0;
  background: var(--black);
  margin-top: -2rem;
}
.hover-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6) !important;
  border-color: var(--red) !important;
}
.section-header {
  margin-bottom: 2rem;
}
.section-title {
  font-size: 3.5rem;
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.service-card {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(217, 43, 43, 0.25);
}
.service-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.service-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 2;
}
.service-card__tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  letter-spacing: 0.1em;
}
.heading-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   4. SPECIALITIES (White Bg, 4x2 Grid)
══════════════════════════════════════════════════════════ */
.specialities-section {
  padding: 4rem 0;
  background: var(--dark-grey);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.spec-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--black);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.6s ease both;
}

.spec-card:nth-child(1) {
  animation-delay: 0.1s;
}
.spec-card:nth-child(2) {
  animation-delay: 0.2s;
}
.spec-card:nth-child(3) {
  animation-delay: 0.3s;
}
.spec-card:nth-child(4) {
  animation-delay: 0.4s;
}
.spec-card:nth-child(5) {
  animation-delay: 0.5s;
}
.spec-card:nth-child(6) {
  animation-delay: 0.6s;
}
.spec-card:nth-child(7) {
  animation-delay: 0.7s;
}
.spec-card:nth-child(8) {
  animation-delay: 0.8s;
}

.spec-card:hover {
  transform: translateY(-8px) scale(1.05);
}
.spec-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.5s ease;
}

.spec-card:hover .spec-card__img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1) saturate(1.2);
}
.spec-card__title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   5. WHY US (Exceptional)
══════════════════════════════════════════════════════════ */
.exceptional-section {
  position: relative;
  padding: 8rem 0;
  background: var(--black);
}
.exceptional-bg {
  position: absolute;
  inset: 0;
}
.exceptional-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
/* Strong orange gradient or overlay over the image if needed, 
   but we'll just use a vibrant car image in HTML */

.exceptional-content {
  position: relative;
  z-index: 10;
}
.exceptional-title {
  text-align: center;
  font-size: 3rem;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 4rem auto;
  line-height: 1.1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-box {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(5px);
  padding: 3rem 2rem;
  border-radius: 4px;
  text-align: center;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 0 15px 40px rgba(217, 43, 43, 0.2);
}
.feature-box__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-box:hover .feature-box__icon {
  transform: scale(1.3) rotate(-10deg);
  color: var(--red);
}
.feature-box__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.feature-box__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   6. CTA (Damn good car detailing)
══════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 10rem 0;
  background: var(--dark);
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(100%);
}
.cta-content {
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 4.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.cta-sub {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.btn--blue {
  /* We use Red for Dube Auto Detail */
  display: inline-block;
  background: var(--blue-tag);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem 4rem;
  border-radius: 50px;
}
.btn--dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}
.input-field option {
  background: var(--dark);
  color: var(--white);
}
.input-field:focus {
  letter-spacing: 0.1em;
  padding: 1.2rem 4rem;
  border-radius: 50px;
}

/* ══════════════════════════════════════════════════════════
   7. TESTIMONIALS / GALLERY FLOATING
══════════════════════════════════════════════════════════ */
.testimonial-section {
  position: relative;
  padding: 8rem 0;
  background: var(--black);
}
.test-bg {
  position: absolute;
  inset: 0;
}
.test-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.test-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.test-title {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 4rem;
}

.test-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.test-card {
  width: 340px;
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInLeft 0.6s ease 0.2s both;
}

.test-card:nth-child(2) {
  animation: slideInRight 0.6s ease 0.3s both;
}

.test-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(217, 43, 43, 0.15);
}
.test-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.test-card__head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.test-card__user {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.test-card__imgs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.test-card__imgs img {
  width: 100%;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   8. CONTACT
══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 6rem 0;
  background: var(--dark-grey);
  text-align: center;
}
.contact-title {
  font-size: 2.5rem;
  color: var(--red);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   9. FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-map iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 4px;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-contact li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 400px;
    width: 100%;
    display: block;
  }
  .spec-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-cards {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 12rem 0 6rem;
  }
  .hero__content {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
    padding: 0 2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-images {
    height: 400px;
  }
  .about-title {
    font-size: 3.5rem;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .hero__title {
    font-size: 4.5rem;
  }
  .spec-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
  }
}

/* PREMIUM HOVER EFFECTS */
.hover-card,
.service-card,
.spec-card,
.feature-card,
.test-card,
.btn--red,
.btn--black {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.hover-card:hover,
.service-card:hover,
.spec-card:hover,
.feature-card:hover,
.test-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(217, 43, 43, 0.2);
  border-color: var(--red) !important;
}

/* Shine Sweep Animation */
.hover-card::after,
.btn--red::after,
.btn--black::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent
  );
  transform: rotate(-45deg) translateX(-100%);
  transition: transform 0.6s;
  pointer-events: none;
}

.hover-card:hover::after,
.btn--red:hover::after,
.btn--black:hover::after {
  transform: rotate(-45deg) translateX(100%);
}

/* GLOWING BUTTONS */
.btn--red:hover {
  box-shadow: 0 0 25px rgba(217, 43, 43, 0.5);
  transform: translateY(-3px) scale(1.05);
}

/* PARALLAX UTILS */
.parallax-container {
  position: relative;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

/* BOOKING FLOW STYLES */
.booking-progress {
  position: relative;
  z-index: 10;
}
.step-dot {
  text-align: center;
  position: relative;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}
.step-dot span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid currentColor;
  margin: 0 auto 10px;
  font-family: var(--font-display);
  font-weight: 700;
}
.step-dot p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.step-dot.active {
  color: var(--red);
}
.step-dot.completed {
  color: #00ff88;
}
.step-line {
  flex: 0 0 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: -20px;
}

.booking-step {
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

#booking-submit {
  display: none; /* Only show on final step */
}

/* ══════════════════════════════════════════════════════════
   PAGE-SPECIFIC RESPONSIVE — Fleet, Blog, Contact, Gallery
══════════════════════════════════════════════════════════ */

/* --- Fleet / Commercial Quote --- */
.fleet-quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.fleet-quote-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.fleet-quote-intro {
  margin: 1rem 0 2rem;
  color: var(--white);
  opacity: 0.9;
}

.fleet-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fleet-benefit-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.fleet-benefit-line {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background: var(--red);
}

.fleet-benefit-item .text-body {
  font-weight: 700;
  color: var(--white);
}

.fleet-quote-form-card {
  background: var(--black);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(228, 34, 34, 0.1);
  min-width: 0;
}

.fleet-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.fleet-form-field {
  min-width: 0;
}

.fleet-form-field--full {
  margin-bottom: 1.25rem;
}

.fleet-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.fleet-form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.fleet-hero__title {
  font-size: clamp(2.5rem, 10vw, 5rem);
  line-height: 1.05;
}

@media (max-width: 992px) {
  .fleet-quote-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .fleet-form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fleet-quote-form-card {
    padding: 1.5rem 1.25rem;
  }
}

/* --- Blog --- */
.blog-hero {
  padding: clamp(8rem, 18vw, 12rem) 0 clamp(3rem, 8vw, 6rem);
  background: var(--black);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-hero__title {
  font-size: clamp(2.5rem, 10vw, 5rem);
  margin-bottom: 1rem;
}

.blog-hero__subtitle {
  opacity: 0.6;
  max-width: 600px;
  margin: 0 auto;
}

.blog-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--dark-grey);
}

.blog-empty {
  text-align: center;
  padding: 4rem;
  background: var(--black);
  border-radius: 4px;
}

.blog-empty .text-body {
  opacity: 0.5;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.blog-card {
  background: var(--black);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__content {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-card__date {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin: 1rem 0 1.25rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card__link {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Contact --- */
.contact-hero__title {
  font-size: clamp(2.25rem, 9vw, 4rem);
  line-height: 1.05;
}

.contact-hero__subtitle {
  margin: 1.25rem auto 0;
  max-width: 600px;
  opacity: 0.7;
}

.contact-main {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.contact-section-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 2rem;
  line-height: 1.05;
}

.contact-info__block {
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-hours-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--dark-grey);
  border: 1px solid rgba(228, 34, 34, 0.1);
  box-shadow: 0 0 20px rgba(217, 43, 43, 0.1);
}

.contact-hours-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-form-card {
  background: var(--dark-grey);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(217, 43, 43, 0.1);
  min-width: 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-form-row .input-field {
  min-width: 0;
}

.contact-form-textarea {
  min-height: 151px;
  margin-bottom: 1.5rem;
  resize: vertical;
  width: 100%;
}

.contact-form-submit {
  width: 100%;
}

.contact-map {
  height: clamp(280px, 50vw, 400px);
  filter: grayscale(1) invert(1) contrast(1.2);
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-card {
    padding: 1.5rem 1.25rem;
  }

  .contact-section-title {
    margin-bottom: 1.5rem;
  }
}

/* --- Gallery --- */
.gallery-pairs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
}

.gallery-pair-card {
  background: var(--dark-grey);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 4px;
  min-width: 0;
}

.gallery-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.gallery-pair-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--black);
  border-radius: 2px;
}

.gallery-pair-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-pair-img--before {
  filter: grayscale(1);
  opacity: 0.75;
}

.gallery-pair-img--after {
  animation: shineSwipe 8s ease-in-out infinite;
}

.gallery-pair-label {
  position: absolute;
  top: 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  color: var(--white);
  z-index: 1;
}

.gallery-pair-label--before {
  left: 0.5rem;
  background: var(--black);
}

.gallery-pair-label--after {
  right: 0.5rem;
  background: var(--red);
}

.gallery-pair-meta {
  padding: 0 0.5rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-pair-title {
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin: 0;
  min-width: 0;
}

.gallery-pair-stage {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  flex-shrink: 0;
}

.gallery-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 2rem;
}

.gallery-showcase-card {
  background: var(--dark-grey);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 4px;
  min-width: 0;
}

.gallery-showcase-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
  border-radius: 2px;
}

.gallery-showcase-title {
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin: 0;
}

@media (max-width: 480px) {
  .gallery-pair-images {
    gap: 0.35rem;
  }

  .gallery-pair-label {
    font-size: 0.55rem;
    top: 0.35rem;
  }

  .gallery-pair-label--before {
    left: 0.35rem;
  }

  .gallery-pair-label--after {
    right: 0.35rem;
  }
}
