/* ============================================================
   SHARYO JAPAN — STYLESHEET
   Mobile-First | Responsive | Premium Japanese Automotive
   ============================================================ */

/* ============================================================
   TABLE OF CONTENTS
   01. CSS Custom Properties (Variables)
   02. CSS Reset & Base
   03. Typography
   04. Utility Classes
   05. Layout — Container & Grid
   06. Buttons
   07. Section Labels & Headers
   08. Navbar
   09. Mobile Menu
   10. Hero Slider
   11. Stats Banner
   12. About Section
   13. Vehicle Showcase & Cards
   14. Filter Bar
   15. Why Choose Us
   16. Gallery
   17. Inquiry / Contact Form
   18. CTA Banner
   19. Footer
   20. Floating WhatsApp Button
   21. Back To Top Button
   22. Animations & Reveals
   23. Scrollbar
   24. Media Queries
   ============================================================ */


/* ============================================================
   01. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --color-red:          #C0001E;
  --color-red-dark:     #990018;
  --color-red-light:    #E8001F;
  --color-red-muted:    rgba(192, 0, 30, 0.08);
  --color-red-glow:     rgba(192, 0, 30, 0.25);

  /* Neutrals */
  --color-black:        #0A0A0A;
  --color-charcoal:     #1A1A1A;
  --color-dark:         #222222;
  --color-dark-mid:     #2E2E2E;
  --color-mid:          #555555;
  --color-muted:        #888888;
  --color-border:       #E8E8E8;
  --color-border-dark:  rgba(255, 255, 255, 0.08);

  /* Whites & Lights */
  --color-white:        #FFFFFF;
  --color-off-white:    #FAFAFA;
  --color-light:        #F4F4F4;
  --color-light-mid:    #ECECEC;

  /* Typography */
  --font-primary:       'Inter', 'Noto Sans JP', sans-serif;
  --font-jp:            'Noto Sans JP', 'Inter', sans-serif;

  /* Font Sizes — Mobile First */
  --fs-xs:              0.75rem;    /* 12px */
  --fs-sm:              0.875rem;   /* 14px */
  --fs-base:            1rem;       /* 16px */
  --fs-md:              1.125rem;   /* 18px */
  --fs-lg:              1.25rem;    /* 20px */
  --fs-xl:              1.5rem;     /* 24px */
  --fs-2xl:             1.875rem;   /* 30px */
  --fs-3xl:             2.25rem;    /* 36px */
  --fs-4xl:             2.75rem;    /* 44px */
  --fs-5xl:             3.5rem;     /* 56px */
  --fs-6xl:             4.5rem;     /* 72px */

  /* Font Weights */
  --fw-light:           300;
  --fw-regular:         400;
  --fw-medium:          500;
  --fw-semibold:        600;
  --fw-bold:            700;
  --fw-extrabold:       800;
  --fw-black:           900;

  /* Line Heights */
  --lh-tight:           1.1;
  --lh-snug:            1.25;
  --lh-normal:          1.5;
  --lh-relaxed:         1.7;

  /* Letter Spacing */
  --ls-tight:          -0.025em;
  --ls-normal:          0;
  --ls-wide:            0.05em;
  --ls-wider:           0.1em;
  --ls-widest:          0.2em;

  /* Spacing Scale */
  --space-1:            0.25rem;   /* 4px */
  --space-2:            0.5rem;    /* 8px */
  --space-3:            0.75rem;   /* 12px */
  --space-4:            1rem;      /* 16px */
  --space-5:            1.25rem;   /* 20px */
  --space-6:            1.5rem;    /* 24px */
  --space-8:            2rem;      /* 32px */
  --space-10:           2.5rem;    /* 40px */
  --space-12:           3rem;      /* 48px */
  --space-16:           4rem;      /* 64px */
  --space-20:           5rem;      /* 80px */
  --space-24:           6rem;      /* 96px */
  --space-32:           8rem;      /* 128px */

  /* Border Radius */
  --radius-sm:          4px;
  --radius-md:          8px;
  --radius-lg:          12px;
  --radius-xl:          16px;
  --radius-2xl:         24px;
  --radius-full:        9999px;

  /* Shadows */
  --shadow-xs:          0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:          0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:          0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:          0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl:          0 16px 48px rgba(0,0,0,0.16);
  --shadow-red:         0 8px 32px rgba(192, 0, 30, 0.25);
  --shadow-card-hover:  0 20px 60px rgba(0,0,0,0.15);

  /* Transitions */
  --transition-fast:    150ms ease;
  --transition-base:    250ms ease;
  --transition-slow:    400ms ease;
  --transition-xslow:   600ms ease;

  /* Z-Index Scale */
  --z-base:             1;
  --z-dropdown:         100;
  --z-sticky:           200;
  --z-overlay:          300;
  --z-modal:            400;
  --z-toast:            500;
  --z-float:            600;

  /* Section Padding */
  --section-pad-y:      var(--space-16);

  /* Navbar Height */
  --navbar-height:      68px;

  /* Container */
  --container-max:      1280px;
  --container-pad:      var(--space-6);
}


/* ============================================================
   02. CSS RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Accessibility — screen reader only */
.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;
}

/* Honeypot */
.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-black);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl);  }
h4 { font-size: var(--fs-lg);  }
h5 { font-size: var(--fs-md);  }
h6 { font-size: var(--fs-base);}

p {
  line-height: var(--lh-relaxed);
  color: var(--color-mid);
}

strong {
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
}


/* ============================================================
   04. UTILITY CLASSES
   ============================================================ */
.text--accent      { color: var(--color-red); }
.text-center       { text-align: center; }
.text-left         { text-align: left; }
.text-right        { text-align: right; }
.bg--light         { background-color: var(--color-light); }
.bg--white         { background-color: var(--color-white); }
.section-padding   { padding-block: var(--section-pad-y); }
.reveal-up,
.reveal-left,
.reveal-right      { opacity: 0; }


/* ============================================================
   05. LAYOUT — CONTAINER & GRID
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}


/* ============================================================
   06. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0.7rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    color           var(--transition-base),
    border-color    var(--transition-base),
    transform       var(--transition-base),
    box-shadow      var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

/* Primary */
.btn--primary {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-red-dark);
  border-color: var(--color-red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

/* Outline White */
.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  background-color: var(--color-white);
  color: var(--color-red);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Outline Red */
.btn--outline-red {
  background-color: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}
.btn--outline-red:hover,
.btn--outline-red:focus-visible {
  background-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* WhatsApp */
.btn--whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border-color: #25D366;
}
.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background-color: #1ebe5e;
  border-color: #1ebe5e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* Sizes */
.btn--sm  { font-size: var(--fs-xs); padding: 0.5rem 1.1rem; }
.btn--lg  { font-size: var(--fs-base); padding: 0.875rem 2rem; }
.btn--full { width: 100%; }
.btn--full-mobile { width: 100%; }


/* ============================================================
   07. SECTION LABELS & HEADERS
   ============================================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.section-label--center {
  justify-content: center;
}

.section-label__line {
  display: block;
  height: 2px;
  width: 32px;
  background-color: var(--color-red);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.section-label__text {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-red);
}

.section-heading {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-black);
  margin-bottom: var(--space-4);
}

.section-subtext {
  font-size: var(--fs-base);
  color: var(--color-mid);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.section-header {
  margin-bottom: var(--space-10);
}


/* ============================================================
   08. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: transparent;
  transition:
    background-color var(--transition-slow),
    box-shadow       var(--transition-slow),
    padding          var(--transition-slow);
  padding-block: var(--space-4);
}

.navbar.scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding-block: var(--space-3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo__icon {
  width: 42px;
  height: 42px;
  background-color: var(--color-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--fs-lg);
  flex-shrink: 0;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.navbar__logo:hover .logo__icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: var(--shadow-red);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__brand {
  font-size: var(--fs-lg);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-wider);
  color: var(--color-white);
  transition: color var(--transition-base);
}

.logo__sub {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  color: var(--color-red);
  text-transform: uppercase;
}

.navbar.scrolled .logo__brand {
  color: var(--color-black);
}

/* Desktop Nav */
.navbar__nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  position: relative;
  transition: color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background-color: var(--color-red);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
  transform-origin: center;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar.scrolled .nav__link {
  color: var(--color-mid);
}

.navbar.scrolled .nav__link:hover {
  color: var(--color-red);
}

/* Navbar Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base);
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .hamburger:hover {
  background-color: var(--color-light);
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  transition:
    transform  var(--transition-base),
    opacity    var(--transition-base),
    background var(--transition-base);
  transform-origin: center;
}

.navbar.scrolled .hamburger__line {
  background-color: var(--color-dark);
}

.hamburger.open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hide CTA button on mobile to save space */
.navbar__actions .btn--primary {
  display: none;
}


/* ============================================================
   09. MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
  border-top: 3px solid var(--color-red);
}

.mobile-menu.open {
  max-height: 480px;
  padding-block: var(--space-4);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding-inline: var(--container-pad);
  padding-bottom: var(--space-4);
}

.mobile-menu__link {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-dark);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-base), color var(--transition-base);
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  background-color: var(--color-red-muted);
  color: var(--color-red);
}

.mobile-menu__cta {
  margin-top: var(--space-2);
  border-radius: var(--radius-full) !important;
}


/* ============================================================
   10. HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background-color: var(--color-black);
}

/* Slider */
.hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
  background-color: var(--color-dark);
}

.hero__slide--active .hero__slide-bg {
  transform: scale(1);
}

.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.78) 0%,
    rgba(10, 10, 10, 0.52) 50%,
    rgba(192, 0, 30, 0.18) 100%
  );
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: var(--z-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--navbar-height) + var(--space-8));
  padding-bottom: var(--space-16);
}

/* Hero Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: rgba(192, 0, 30, 0.15);
  border: 1px solid rgba(192, 0, 30, 0.4);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  width: fit-content;
  backdrop-filter: blur(8px);
}

.hero__badge i {
  color: var(--color-red-light);
}

/* Hero Heading */
.hero__heading {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-white);
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Hero Subtext */
.hero__subtext {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lh-relaxed);
  max-width: 520px;
  margin-bottom: var(--space-8);
}

/* Hero Actions */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

/* Slide Indicators */
.hero__indicators {
  display: flex;
  gap: var(--space-2);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
  cursor: pointer;
  padding: 0;
}

.hero__dot--active {
  background-color: var(--color-red);
  border-color: var(--color-red);
  width: 28px;
}

/* Slider Controls */
.hero__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-base);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.hero__control:hover,
.hero__control:focus-visible {
  background-color: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-50%) scale(1.05);
}

.hero__control--prev { left: var(--space-4); }
.hero__control--next { right: var(--space-4); }

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: var(--z-base);
}

.scroll-indicator__mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator__wheel {
  width: 3px;
  height: 8px;
  background-color: var(--color-red);
  border-radius: var(--radius-full);
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator__text {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}


/* ============================================================
   11. STATS BANNER
   ============================================================ */
.stats-banner {
  background-color: var(--color-black);
  padding-block: var(--space-10);
  border-top: 3px solid var(--color-red);
}

.stats-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.stat-item__number {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--color-red);
  letter-spacing: var(--ls-tight);
  line-height: 1;
  font-feature-settings: "tnum";
}

.stat-item__symbol {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--color-red);
  line-height: 1;
  vertical-align: super;
}

.stat-item__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.stat-item__divider {
  display: none;
}


/* ============================================================
   12. ABOUT SECTION
   ============================================================ */
.about__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

/* About Media */
.about__media {
  position: relative;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  background-color: var(--color-light-mid);
  transition: transform var(--transition-xslow);
}

.about__image-wrap:hover .about__image {
  transform: scale(1.03);
}

.about__image-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background-color: var(--color-red);
  color: var(--color-white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-lg);
}

/* About Content */
.about__text {
  font-size: var(--fs-base);
  color: var(--color-mid);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.about__highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--color-red-muted);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid rgba(192, 0, 30, 0.2);
}

.about__highlight-item strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-1);
  letter-spacing: 0.01em;
}

.about__highlight-item p {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: var(--lh-relaxed);
  margin: 0;
}


/* ============================================================
   13. VEHICLE SHOWCASE & CARDS
   ============================================================ */
.vehicles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

/* Vehicle Card */
.vehicle-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition:
    transform    var(--transition-slow),
    box-shadow   var(--transition-slow);
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

/* Card Image */
.vehicle-card__image-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.vehicle-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background-color: var(--color-light-mid);
  transition: transform var(--transition-xslow);
}

.vehicle-card:hover .vehicle-card__image {
  transform: scale(1.06);
}

.vehicle-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.vehicle-card:hover .vehicle-card__overlay {
  opacity: 1;
}

/* Badges */
.vehicle-card__badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  line-height: 1.5;
}

.vehicle-card__badge + .vehicle-card__badge {
  top: calc(var(--space-3) + 30px);
}

.vehicle-card__badge--hot {
  background-color: var(--color-black);
  color: var(--color-white);
}

.vehicle-card__badge--hybrid {
  background-color: #1a7f4a;
  color: var(--color-white);
}

/* Card Body */
.vehicle-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-3);
}

.vehicle-card__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}

.vehicle-card__year {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-red);
  margin-top: calc(var(--space-1) * -1);
}

/* Specs */
.vehicle-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-3);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-3);
}

.vehicle-card__specs li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--color-muted);
  line-height: 1.4;
}

.vehicle-card__specs li i {
  color: var(--color-red);
  font-size: 11px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/* Price */
.vehicle-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}

.price__label {
  font-size: var(--fs-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.price__value {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-red);
  letter-spacing: var(--ls-tight);
}

/* CTA */
.vehicle-card__cta {
  margin-top: var(--space-2);
}

/* Coming Soon Card */
.vehicle-card--coming-soon {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 100%);
  border: 2px dashed rgba(192, 0, 30, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.vehicle-card__coming-soon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  gap: var(--space-4);
}

.coming-soon__icon {
  width: 64px;
  height: 64px;
  background-color: rgba(192, 0, 30, 0.12);
  border: 2px solid rgba(192, 0, 30, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  color: var(--color-red);
  animation: pulse 2s ease-in-out infinite;
}

.coming-soon__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-snug);
}

.coming-soon__text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--lh-relaxed);
  max-width: 240px;
  margin: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0    var(--color-red-glow); }
  50%       { transform: scale(1.05); box-shadow: 0 0 0 12px transparent; }
}

/* Filter hide class */
.vehicle-card.hidden {
  display: none;
}


/* ============================================================
   14. FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.filter-btn {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  color: var(--color-mid);
  background-color: var(--color-white);
  transition:
    background-color var(--transition-base),
    border-color     var(--transition-base),
    color            var(--transition-base),
    transform        var(--transition-base);
}

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: translateY(-1px);
}

.filter-btn--active {
  background-color: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-red);
}

.filter-btn--active:hover {
  background-color: var(--color-red-dark);
  border-color: var(--color-red-dark);
  color: var(--color-white);
}


/* ============================================================
   15. WHY CHOOSE US
   ============================================================ */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.why-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition:
    transform      var(--transition-slow),
    box-shadow     var(--transition-slow),
    border-color   var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 0, 30, 0.15);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-red-muted);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  color: var(--color-red);
  margin: 0 auto var(--space-5);
  transition: background-color var(--transition-base), transform var(--transition-slow);
  border: 1.5px solid rgba(192, 0, 30, 0.15);
}

.why-card:hover .why-card__icon {
  background-color: var(--color-red);
  color: var(--color-white);
  transform: scale(1.08) rotate(-5deg);
}

.why-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  margin-bottom: var(--space-3);
  letter-spacing: var(--ls-tight);
}

.why-card__text {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: var(--lh-relaxed);
  margin: 0;
}


/* ============================================================
   16. GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
  background-color: var(--color-light-mid);
}

.gallery__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-xslow);
  background-color: var(--color-light-mid);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.06);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(192, 0, 30, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.gallery__item-overlay i {
  font-size: var(--fs-2xl);
  color: var(--color-white);
  transform: scale(0.7);
  transition: transform var(--transition-slow);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item:hover .gallery__item-overlay i {
  transform: scale(1);
}


/* ============================================================
   17. INQUIRY / CONTACT FORM
   ============================================================ */
.inquiry__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

/* Info Panel */
.inquiry__info-text {
  font-size: var(--fs-base);
  color: var(--color-mid);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background-color: var(--color-red-muted);
  border: 1.5px solid rgba(192, 0, 30, 0.2);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-md);
  flex-shrink: 0;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.contact-detail-item:hover .contact-detail__icon {
  background-color: var(--color-red);
  color: var(--color-white);
}

.contact-detail-item strong {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-1);
}

.contact-detail-item a,
.contact-detail-item span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-dark);
  transition: color var(--transition-base);
}

.contact-detail-item a:hover {
  color: var(--color-red);
}

/* Social Links */
.inquiry__social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  color: var(--color-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  transition: all var(--transition-base);
}

.social-link:hover,
.social-link:focus-visible {
  background-color: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.social-link--whatsapp:hover,
.social-link--whatsapp:focus-visible {
  background-color: #25D366;
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* Form Wrap */
.inquiry__form-wrap {
  background-color: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* Form Structure */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.form__group--full {
  width: 100%;
}

.form__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  letter-spacing: 0.01em;
}

.form__required {
  color: var(--color-red);
  margin-left: 2px;
}

.form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form__input-wrap--textarea {
  align-items: flex-start;
}

.form__icon {
  position: absolute;
  left: var(--space-4);
  color: var(--color-muted);
  font-size: var(--fs-sm);
  pointer-events: none;
  transition: color var(--transition-base);
  z-index: 1;
}

.form__icon--textarea {
  top: var(--space-4);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4) var(--space-3) 2.75rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--color-dark);
  background-color: var(--color-off-white);
  transition:
    border-color   var(--transition-base),
    box-shadow     var(--transition-base),
    background-color var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
  line-height: var(--lh-normal);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-muted);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px var(--color-red-glow);
  background-color: var(--color-white);
}

.form__input:focus ~ .form__icon,
.form__select:focus ~ .form__icon,
.form__textarea:focus ~ .form__icon {
  color: var(--color-red);
}

.form__input:focus + .form__icon,
.form__select:focus + .form__icon,
.form__textarea:focus + .form__icon {
  color: var(--color-red);
}

.form__input-wrap .form__icon:has(~ .form__input:focus),
.form__input-wrap .form__icon:has(~ .form__select:focus),
.form__input-wrap .form__icon:has(~ .form__textarea:focus) {
  color: var(--color-red);
}

/* Select specific */
.form__input-wrap--select {
  position: relative;
}

.form__select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__select-arrow {
  position: absolute;
  right: var(--space-4);
  color: var(--color-muted);
  font-size: var(--fs-xs);
  pointer-events: none;
  z-index: 1;
}

/* Textarea */
.form__textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: var(--space-4);
}

/* Validation States */
.form__input.is-valid,
.form__select.is-valid,
.form__textarea.is-valid {
  border-color: #1a7f4a;
}

.form__input.is-invalid,
.form__select.is-invalid,
.form__textarea.is-invalid {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(192, 0, 30, 0.12);
}

.form__error {
  font-size: var(--fs-xs);
  color: var(--color-red);
  font-weight: var(--fw-medium);
  min-height: 1em;
  transition: opacity var(--transition-base);
}

/* Form Status */
.form__status {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  display: none;
}

.form__status.success {
  display: block;
  background-color: rgba(26, 127, 74, 0.1);
  border: 1px solid rgba(26, 127, 74, 0.3);
  color: #1a7f4a;
}

.form__status.error {
  display: block;
  background-color: var(--color-red-muted);
  border: 1px solid rgba(192, 0, 30, 0.3);
  color: var(--color-red);
}

/* Form Actions */
.form__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}


/* ============================================================
   18. CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
  background-color: var(--color-black);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-dark);
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.72) 50%,
    rgba(192, 0, 30, 0.25) 100%
  );
  z-index: 1;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-red-light);
  margin-bottom: var(--space-5);
}

.cta-banner__heading {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--color-white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-5);
}

.cta-banner__text {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--lh-relaxed);
  max-width: 560px;
  margin: 0 auto var(--space-8);
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}


/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-charcoal);
}

/* Footer Main */
.footer__main {
  padding-block: var(--space-16) var(--space-10);
  border-bottom: 1px solid var(--color-border-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

/* Footer Logo */
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  text-decoration: none;
}

.logo__icon--footer {
  background-color: var(--color-red);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--fs-lg);
  flex-shrink: 0;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.footer__logo:hover .logo__icon--footer {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: var(--shadow-red);
}

.logo__sub--footer {
  color: rgba(255, 255, 255, 0.45);
}

.footer__col--brand .logo__brand {
  color: var(--color-white);
}

.footer__brand-text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
  max-width: 300px;
}

/* Footer Social */
.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  background-color: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.footer__social-link--wa:hover,
.footer__social-link--wa:focus-visible {
  background-color: #25D366;
  border-color: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Footer Column */
.footer__col-heading {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer__col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-red);
  border-radius: var(--radius-full);
}

/* Footer Links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-base), padding-left var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--color-red-light);
  padding-left: var(--space-1);
}

/* Footer Contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.footer__contact-item i {
  color: var(--color-red);
  font-size: var(--fs-sm);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item span,
.footer__contact-item a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-base);
}

.footer__contact-item a:hover {
  color: var(--color-red-light);
}

/* Footer Hours */
.footer__hours {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
}

.footer__hours-heading {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-3);
}

.footer__hours p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.8;
}

/* Footer Bottom */
.footer__bottom {
  padding-block: var(--space-5);
  background-color: var(--color-black);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.footer__bottom-copy p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  line-height: 1.6;
}

.footer__credits {
  color: rgba(255, 255, 255, 0.25) !important;
}

.footer__credits strong {
  color: var(--color-red);
  font-weight: var(--fw-semibold);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-5);
}

.footer__bottom-link {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition-base);
}

.footer__bottom-link:hover {
  color: var(--color-red-light);
}


/* ============================================================
   20. FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-float);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform    var(--transition-base),
    box-shadow   var(--transition-base);
  animation: floatWa 3s ease-in-out infinite;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

.floating-whatsapp__tooltip {
  position: absolute;
  right: calc(100% + var(--space-3));
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.floating-whatsapp__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--color-black);
}

.floating-whatsapp:hover .floating-whatsapp__tooltip {
  opacity: 1;
}

@keyframes floatWa {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}


/* ============================================================
   21. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: calc(var(--space-6) + 64px);
  right: var(--space-6);
  z-index: var(--z-float);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: var(--color-red);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-red);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity    var(--transition-base),
    transform  var(--transition-base),
    background var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background-color: var(--color-red-dark);
  transform: translateY(-3px);
}


/* ============================================================
   22. ANIMATIONS & REVEALS
   ============================================================ */

/* Reveal base states */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity    0.7s ease,
    transform  0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity    0.7s ease,
    transform  0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity    0.7s ease,
    transform  0.7s ease;
}

/* Revealed state (JS adds this class) */
.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Staggered delays for grid children */
.why-us__grid .why-card:nth-child(1) { transition-delay: 0ms;   }
.why-us__grid .why-card:nth-child(2) { transition-delay: 80ms;  }
.why-us__grid .why-card:nth-child(3) { transition-delay: 160ms; }
.why-us__grid .why-card:nth-child(4) { transition-delay: 240ms; }
.why-us__grid .why-card:nth-child(5) { transition-delay: 320ms; }
.why-us__grid .why-card:nth-child(6) { transition-delay: 400ms; }

.gallery__grid .gallery__item:nth-child(1) { transition-delay: 0ms;   }
.gallery__grid .gallery__item:nth-child(2) { transition-delay: 60ms;  }
.gallery__grid .gallery__item:nth-child(3) { transition-delay: 120ms; }
.gallery__grid .gallery__item:nth-child(4) { transition-delay: 180ms; }
.gallery__grid .gallery__item:nth-child(5) { transition-delay: 240ms; }
.gallery__grid .gallery__item:nth-child(6) { transition-delay: 300ms; }
.gallery__grid .gallery__item:nth-child(7) { transition-delay: 360ms; }
.gallery__grid .gallery__item:nth-child(8) { transition-delay: 420ms; }

/* Hero content stagger */
.hero__content .reveal-up:nth-child(1) { transition-delay: 200ms; }
.hero__content .reveal-up:nth-child(2) { transition-delay: 350ms; }
.hero__content .reveal-up:nth-child(3) { transition-delay: 500ms; }
.hero__content .reveal-up:nth-child(4) { transition-delay: 650ms; }
.hero__content .reveal-up:nth-child(5) { transition-delay: 800ms; }


/* ============================================================
   23. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-light);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-red);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-red-dark);
}


/* ============================================================
   24. MEDIA QUERIES
   ============================================================ */

/* ── Small Mobile (≥ 400px) ── */
@media (min-width: 400px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ── Tablet (≥ 640px) ── */
@media (min-width: 640px) {
  :root {
    --container-pad: var(--space-8);
  }

  h1 { font-size: var(--fs-4xl); }
  h2 { font-size: var(--fs-3xl); }

  .hero__heading     { font-size: var(--fs-4xl); }
  .section-heading   { font-size: var(--fs-3xl); }
  .cta-banner__heading { font-size: var(--fs-4xl); }

  /* Stats */
  .stats-banner__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-10) var(--space-12);
  }

  .stat-item__divider {
    display: block;
    width: 1px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.1);
    align-self: center;
  }

  /* Vehicles Grid — 2 columns */
  .vehicles__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Us Grid — 2 columns */
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery Grid — 2 columns */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery__img {
    height: 100%;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  /* Form row */
  .form__row {
    flex-direction: row;
    gap: var(--space-4);
  }

  /* Form actions */
  .form__actions {
    flex-direction: row;
  }

  .btn--full-mobile {
    width: auto;
  }

  /* CTA Banner actions */
  .cta-banner__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ── Large Tablet (≥ 768px) ── */
@media (min-width: 768px) {
  :root {
    --navbar-height: 74px;
    --section-pad-y: var(--space-20);
  }

  /* Navbar Desktop Nav */
  .navbar__nav {
    display: flex;
  }

  .navbar__actions .btn--primary {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  /* About Layout */
  .about__image {
    height: 420px;
  }

  /* Inquiry Layout */
  .inquiry__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-12);
    align-items: start;
  }

  /* Footer Grid */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10) var(--space-8);
  }

  /* Footer Bottom */
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── Desktop (≥ 1024px) ── */
@media (min-width: 1024px) {
  :root {
    --section-pad-y: var(--space-24);
    --container-pad: var(--space-10);
  }

  h1 { font-size: var(--fs-5xl); }
  h2 { font-size: var(--fs-4xl); }

  .hero__heading     { font-size: var(--fs-5xl); }
  .section-heading   { font-size: var(--fs-4xl); }
  .cta-banner__heading { font-size: var(--fs-5xl); }

  /* Hero controls — show always */
  .hero__control { width: 52px; height: 52px; }
  .hero__control--prev { left: var(--space-8); }
  .hero__control--next { right: var(--space-8); }

  /* Stats Banner — horizontal single row */
  .stats-banner__inner {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-around;
  }

  /* About Layout — 2 columns */
  .about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }

  .about__image {
    height: 520px;
  }

  /* Vehicles Grid — 3 columns */
  .vehicles__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Why Us Grid — 3 columns */
  .why-us__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Gallery Grid */
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row:    span 2; }

  /* Footer Grid */
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: var(--space-8);
  }
}

/* ── Wide Desktop (≥ 1280px) ── */
@media (min-width: 1280px) {
  :root {
    --container-pad: var(--space-6);
  }

  h1 { font-size: var(--fs-6xl); }

  .hero__heading { font-size: var(--fs-6xl); }

  /* Vehicles Grid — 4 columns */
  .vehicles__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery__grid {
    grid-auto-rows: 260px;
  }
}

/* ── Print / Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.01ms !important;
    scroll-behavior:          auto   !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}