/* ========================================
   IconicRides – Global Styles
   ======================================== */

/* ── LAYOUT ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #080808;
  --yellow: #F5C518;
  --red: #E8230A;
  --white: #F0EDE8;
  --gray: #141414;
  --mid-gray: #1E1E1E;
  --text-muted: #999;
  --font-display: 'Bebas Neue', cursive;
  --font-ui: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  /* Increased from 300 */
  font-size: 1.05rem;
  /* Increased base size */
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.96), transparent);
  transition: background 0.3s;
}

.site-nav.scrolled {
  background: rgba(8, 8, 8, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 26px;
  filter: brightness(0) invert(1);
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  /* Reverted */
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  /* Reverted */
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}

.nav-cta:hover {
  background: white;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  padding: 0;
}

.nav-close {
  display: none;
}

/* ── FLASH MESSAGES ── */
.flash-container {
  position: fixed;
  top: 80px;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 380px;
}

.flash-msg {
  padding: 0.9rem 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 3px solid;
  cursor: pointer;
}

.flash-msg.success {
  background: rgba(14, 14, 14, 0.97);
  border-color: #22c55e;
  color: #86efac;
}

.flash-msg.danger {
  background: rgba(14, 14, 14, 0.97);
  border-color: var(--red);
  color: #fca5a5;
}

.flash-msg.warning {
  background: rgba(14, 14, 14, 0.97);
  border-color: var(--yellow);
  color: var(--yellow);
}

.flash-msg.info {
  background: rgba(14, 14, 14, 0.97);
  border-color: #60a5fa;
  color: #93c5fd;
}

.flash-close {
  margin-left: auto;
  opacity: 0.5;
  font-size: 1rem;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* ── FOOTER ── */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 2rem 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0.4;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .footer-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.2rem;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(240, 237, 232, 0.55);
  max-width: 380px;
  margin-bottom: 1.5rem;
}

.footer-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  background: var(--yellow);
  color: #000000;
  border-radius: 0 !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-ig-btn i {
  font-size: 0.95rem;
  color: #000000;
}

.footer-ig-btn:hover {
  background: #e5b70f;
  color: #000000;
  transform: translateY(-1px);
}

.footer-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(240, 237, 232, 0.4);
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── SHARED UTILITIES ── */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  /* Reverted */
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--yellow);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.btn-ar {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  /* Increased readability */
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.btn-ar:hover {
  background: white;
  transform: translateY(-1px);
}

.btn-ar:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-ar-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  /* Reverted */
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  cursor: pointer;
  line-height: 1;
}

.btn-ar-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-ar-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.btn-ar-ghost:hover {
  opacity: 1;
}

/* ── FORM ELEMENTS ── */
.ar-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  /* Reverted */
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
  display: block;
  margin-bottom: 0.5rem;
}

.ar-input {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* Increased contrast */
  color: var(--white);
  padding: 1rem 1.25rem;
  /* Increased padding */
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  /* Increased size */
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  display: block;
}

.ar-input:focus {
  border-color: var(--yellow);
}

.ar-input::placeholder {
  color: rgba(240, 237, 232, 0.2);
}

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

.ar-field {
  margin-bottom: 1.5rem;
}

/* ── POPOVER ── */
.size-popover {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 0;
  width: 290px;
  background: #141414;
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 12px;
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(245, 197, 24, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.size-popover.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.popover-arrow {
  position: absolute;
  top: 100%;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(245, 197, 24, 0.4);
}

.popover-header {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.6rem;
}

.size-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.size-row strong {
  color: var(--yellow);
  font-size: 1.25rem;
}

.popover-hint {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(240, 237, 232, 0.5);
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.info-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s, opacity 0.2s;
}

.info-trigger:hover {
  transform: scale(1.15);
  opacity: 1;
}

.ar-error {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  /* Harmonized */
  color: #fca5a5;
  margin-top: 0.45rem;
}

.ar-hint {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  /* Harmonized */
  color: var(--text-muted);
  margin-top: 0.45rem;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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



button:disabled,
.btn-ar:disabled,
.btn-ar-ghost:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
}


/* ── INDEX ── */
/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-start;
  padding: 0 4rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 72% 50%, rgba(245, 197, 24, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 82% 38%, rgba(232, 35, 10, 0.05) 0%, transparent 50%),
    var(--black);
}

.speed-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.speed-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 197, 24, 0.22), transparent);
  animation: speedLine linear infinite;
}

@keyframes speedLine {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translateX(110vw);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-top: 4rem;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  /* Reverted */
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--yellow);
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(5.5rem, 13vw, 12rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}

.hero-title .accent {
  color: var(--yellow);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.55);
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ── BANNER ── */
.banner {
  position: absolute;
  top: 500px;
  left: -5%;
  width: 110%;
  transform: rotate(-8deg);
  background: var(--yellow);
  color: var(--black);
  padding: 1.25rem 2rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  z-index: 50;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  /* allows clicks through underneath */
}

@media (max-width: 960px) {
  .banner {
    top: 100px;
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
  }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--gray);
  border-top: 1px solid rgba(255, 197, 24, 0.08);
  border-bottom: 1px solid rgba(255, 197, 24, 0.08);
  padding: 2.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
  cursor: default;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 2.4rem;
  color: var(--yellow);
  margin-bottom: 1rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  opacity: 1;
  text-shadow: 0 0 12px rgba(245, 197, 24, 0.6);
  transform: scale(1.1);
}

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  /* Reverted */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* stats-bar responsive handled in main mobile block */

/* ── FLEET ── */
.fleet-section {
  padding: 7rem 4rem;
  background: var(--black);
}

.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.fleet-intro {
  max-width: 360px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(240, 237, 232, 0.45);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: rgba(255, 255, 255, 0.04);
}

.fleet-card {
  background: var(--gray);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}

.fleet-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.fleet-card:hover::after {
  transform: scaleX(1);
}

.fleet-card:hover {
  background: #1c1c1c;
}

.fleet-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.fleet-card-img-placeholder {
  width: 100%;
  height: 220px;
  background: var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.1);
  font-size: 3rem;
}

.fleet-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.fleet-card-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.fleet-card-desc {
  font-size: 1.15rem;
  /* Increased from 0.88 */
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.6);
  /* Increased contrast */
  margin-bottom: 2rem;
}

.fleet-specs {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.fleet-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
  /* Increased from 0.82 */
}

.fleet-spec-k {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  /* Increased from 0.68 */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fleet-spec-v {
  font-weight: 500;
  color: var(--white);
}

.fleet-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
}

.fleet-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  /* Increased from 2rem */
  color: var(--yellow);
  letter-spacing: 0.04em;
}

.fleet-price em {
  font-style: normal;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  /* Increased from 0.72rem */
  color: var(--text-muted);
  margin-left: 0.4rem;
}

/* ── QUICK BOOKING ── */
.quick-booking-section {
  padding: 6rem 4rem;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--gray) 100%);
  border-top: 1px solid rgba(245, 197, 24, 0.1);
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
}

.qb-form {
  background: rgba(245, 197, 24, 0.03);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 197, 24, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr 1fr;
  gap: 1rem;
  align-items: end;
  margin-top: 3rem;
}

.qb-form.centered-form {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr 1.5fr 1fr;
  /* Adjusted for removed bike select */
}

/* ── FLEET SINGLE MODE ── */
.fleet-grid.single {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  gap: 2rem;
  align-items: stretch;
}

.fleet-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 3rem;
}

.fleet-card.single {
  display: flex !important;
  flex-direction: column;
  min-height: 100%;
}

.fleet-card.single .fleet-card-img,
.fleet-card.single .fleet-card-img-placeholder {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.fleet-card.single .fleet-card-body {
  width: 100%;
  padding: 3rem;
}

.fleet-card.single .fleet-card-name {
  font-size: 4rem;
}

.fleet-card.single .fleet-price {
  font-size: 3rem;
}

.fleet-card.single .btn-ar {
  padding: 1.2rem 3rem;
}

/* fleet-single + qb-form responsive handled in main mobile block */

.qb-select {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  /* Increased from 0.95 */
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.qb-select:focus {
  border-color: var(--yellow);
}

.qb-select option {
  background: #111;
}

/* ── PROCESS ── */
.process-section {
  padding: 7rem 4rem;
  background: var(--gray);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.step:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.step-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(245, 197, 24, 0.12);
  min-width: 48px;
  transition: color 0.3s;
}

.step:hover .step-num,
.step.active .step-num {
  color: var(--yellow);
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.step:hover .step-title,
.step.active .step-title {
  color: var(--white);
}

.step-desc {
  font-size: 1rem;
  /* Reverted */
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.28);
  transition: color 0.3s;
}

.step:hover .step-desc,
.step.active .step-desc {
  color: rgba(240, 237, 232, 0.5);
}



/* ── BIKE DETAIL ── */
.detail-wrap {
  padding-top: 100px;
  padding-bottom: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── CAROUSEL ── */
.bike-carousel {
  position: relative;
  overflow: hidden;
  background: var(--gray);
}

.carousel-inner {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1rem;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(245, 197, 24, 0.8);
  color: var(--black);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--yellow);
}

/* ── BIKE INFO ── */
.bike-meta {
  padding: 1.5rem 0;
}

.bike-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  /* Reverted */
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}

.bike-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.bike-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.5);
  margin-bottom: 1.5rem;
}

.bike-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  color: var(--yellow);
  margin-bottom: 2rem;
}

.bike-price em {
  font-style: normal;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  /* Reverted */
  color: var(--text-muted);
  margin-left: 0.3rem;
}

.specs-block {
  background: var(--gray);
  padding: 1.5rem;
}

.specs-block h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  /* Reverted */
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-k {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.spec-v {
  font-weight: 400;
  color: rgba(240, 237, 232, 0.8);
}

/* ── BOOKING FORM ── */
.booking-panel {
  background: var(--gray);
  padding: 2.5rem;
  position: sticky;
  top: 90px;
}

.booking-panel h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

/* Size radio buttons */
.size-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-radio {
  display: none;
}

.size-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  /* Reverted */
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: rgba(240, 237, 232, 0.6);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.size-radio:checked+.size-label {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.size-label:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* Accessory cards */
.acc-cards-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.acc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.acc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.2rem 0.75rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
  text-align: center;
}

.acc-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.acc-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.acc-card:has(input:checked) {
  border-color: rgba(245, 197, 24, 0.5);
  background: rgba(245, 197, 24, 0.07);
}

.acc-card-icon {
  font-size: 1.7rem;
  color: rgba(240, 237, 232, 0.35);
  transition: color 0.2s;
}

.acc-card:has(input:checked) .acc-card-icon {
  color: var(--yellow);
}

.acc-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.77rem;
  /* Reverted */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
  transition: color 0.2s;
  line-height: 1.3;
}

.acc-card:has(input:checked) .acc-card-label {
  color: rgba(240, 237, 232, 0.9);
}

.acc-card.full-width {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
}

.acc-card.full-width .acc-card-icon {
  font-size: 1.5rem;
}

.acc-included {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  /* Reverted */
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-left: 2px solid rgba(245, 197, 24, 0.3);
}

/* Coupon row */
.coupon-row {
  display: flex;
  gap: 0.5rem;
}

.coupon-row .ar-input {
  flex: 1;
}

.coupon-row .btn-ar,
.coupon-row .btn-ar-outline {
  flex-shrink: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  white-space: nowrap;
}

/* Price preview */
.price-preview-block {
  padding: 1.2rem;
  background: var(--black);
  margin-bottom: 1.5rem;
}

.price-preview-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  /* Reverted */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

#price-preview {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
}

#price-loading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  /* Increased from 0.78 */
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: none;
}

/* Terms checkbox */
.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.terms-row input[type="checkbox"] {
  accent-color: var(--yellow);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  cursor: pointer;
}

.terms-row label {
  font-size: 0.95rem;
  /* Increased from 0.82 */
  line-height: 1.6;
  color: rgba(240, 237, 232, 0.7);
  /* Increased contrast */
  cursor: pointer;
}

.terms-row a {
  color: var(--yellow);
  text-decoration: none;
}

.terms-row a:hover {
  text-decoration: underline;
}

/* Feedback text */
.feedback-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  /* Increased from 0.8 */
  margin-top: 0.5rem;
}

.feedback-text.success {
  color: #86efac;
}

.feedback-text.error {
  color: #fca5a5;
}

/* ── CHECKOUT ── */
.checkout-wrap {
  padding: 100px 4rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-header {
  margin-bottom: 3rem;
}

.checkout-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.checkout-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  line-height: 0.93;
  letter-spacing: 0.02em;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.summary-panel {
  background: var(--gray);
  padding: 2.5rem;
  position: sticky;
  top: 90px;
}

.summary-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  color: var(--yellow);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.s-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.s-value {
  color: var(--white);
  font-weight: 500;
}

.summary-accessories {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.acc-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.acc-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: rgba(240, 237, 232, 0.9);
}

.acc-list li i {
  color: var(--yellow);
  font-size: 1.1rem;
}

.acc-list li small {
  color: rgba(240, 237, 232, 0.5);
}

.summary-coupon {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  margin-top: 1.5rem;
}

.summary-total {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.s-total-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
}



.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-submit {
  width: 100%;
  padding: 1.2rem;
  font-size: 1rem;
}

/* ── DELIVERY SWITCHER ── */
.delivery-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.delivery-option {
  cursor: pointer;
}

.delivery-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.delivery-option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.2rem 1rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.5);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.delivery-option-label i {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.delivery-option-label small {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.delivery-option:hover .delivery-option-label {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.delivery-option input:checked+.delivery-option-label {
  border-color: rgba(245, 197, 24, 0.5);
  background: rgba(245, 197, 24, 0.07);
  color: var(--yellow);
}

.delivery-option input:checked+.delivery-option-label i {
  color: var(--yellow);
}

.delivery-info {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(245, 197, 24, 0.05);
  border-left: 2px solid rgba(245, 197, 24, 0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(240, 237, 232, 0.6);
  line-height: 1.5;
}

.delivery-info i {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── AUTOCOMPLETE ── */
.autocomplete-wrap {
  position: relative;
}

.autocomplete-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: none;
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
}

.autocomplete-item {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(240, 237, 232, 0.7);
  cursor: pointer;
  transition: background 0.15s;
}

.autocomplete-item:hover {
  background: rgba(245, 197, 24, 0.08);
  color: var(--white);
}


/* ── ABOUT ── */
.about-wrap {
  padding: 120px 4rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-hero {
  margin-bottom: 6rem;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-section.reverse {
  direction: rtl;
}

.about-section.reverse>* {
  direction: ltr;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-text h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(240, 237, 232, 0.55);
  margin-bottom: 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ── ROUTES ── */
.routes-section {
  padding: 7rem 4rem;
  background: var(--black);
}

.routes-grid {
  display: flex;
  gap: 1.5rem;
  margin-top: 4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.routes-grid::-webkit-scrollbar {
  display: none;
}

.route-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--gray);
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.route-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s;
}

.route-card:hover img {
  filter: grayscale(0) contrast(1.2);
}

.route-card-body {
  padding: 2rem 2.2rem 2.5rem;
}

.route-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  /* Reverted */
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  display: inline-block;
  margin-bottom: 1rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.route-badge.beginner {
  background: #166534;
  color: #86efac;
}

.route-badge.intermediate {
  background: #713f12;
  color: #fde68a;
}

.route-badge.pro {
  background: #7f1d1d;
  color: #fca5a5;
}

.route-card-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.route-card-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.6);
  margin-bottom: 1.8rem;
}

.route-meta {
  display: flex;
  gap: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  /* Reverted */
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ========================================
   RESPONSIVE OVERRIDES (MOBILE)
   ======================================== */

@media (max-width: 960px) {
  .site-footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding-bottom: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .site-nav {
    padding: 1rem 2rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links-wrap {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 105;
  }

  .nav-links-wrap.open {
    display: flex;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .hero {
    height: auto !important;
    min-height: auto !important;
    padding: 0 1.5rem 10rem !important;
    display: block !important;
  }

  .hero-content {
    padding-top: 120px !important;
    margin-top: 0 !important;
  }

  .hero-title {
    font-size: clamp(3.5rem, 15vw, 6rem) !important;
    margin-bottom: 2.5rem !important;
  }

  .fleet-section,
  .quick-booking-section,
  .process-section,
  .routes-section {
    padding: 6rem 1.5rem;
  }

  .about-wrap {
    padding: 100px 1.5rem 4rem;
  }

  .about-section {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-bottom: 4rem !important;
  }

  .about-section.reverse {
    direction: ltr !important;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 1rem 1rem;
    gap: 1rem 0.5rem;
  }

  .stats-bar .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
  }

  .stats-bar .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .stats-bar .stat-icon {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .stats-bar .stat-number {
    font-size: 1.35rem;
  }

  .stats-bar .stat-label {
    font-size: 0.7rem;
    margin-top: 0.3rem;
  }

  .fleet-grid.single {
    grid-template-columns: 1fr !important;
  }

  .fleet-plus {
    display: none;
  }

  .fleet-card.single {
    flex-direction: column !important;
    min-height: auto;
  }

  .fleet-card.single .fleet-card-img,
  .fleet-card.single .fleet-card-img-placeholder {
    width: 100%;
    height: 300px;
  }

  .fleet-card.single .fleet-card-body {
    width: 100%;
    padding: 2rem;
  }

  .fleet-card-name {
    font-size: 2.2rem !important;
  }

  .fleet-card-desc {
    font-size: 1rem !important;
  }

  .fleet-card-price {
    font-size: 2.5rem !important;
  }

  .fleet-spec-row {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
  }

  .fleet-spec-v {
    text-align: right;
    max-width: 60%;
  }

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

  .routes-grid {
    gap: 1.2rem;
    padding: 0 1.5rem 2rem;
    margin: 0 -1.5rem;
  }

  .route-card {
    flex: 0 0 85%;
    width: 85%;
    scroll-snap-align: center;
  }

  .checkout-wrap {
    padding: 90px 1rem 4rem;
  }

  .checkout-title {
    font-size: 3.2rem !important;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .summary-panel {
    padding: 1.5rem;
  }

  .summary-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .form-row-2col {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .detail-wrap {
    padding: 90px 1rem 4rem;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    position: static;
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .process-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }

  .route-card .btn-ar-outline {
    margin-top: 1rem;
    display: block;
    text-align: center;
  }

  .site-footer {
    padding: 3rem 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3.5rem !important;
  }

  .fleet-card.single .fleet-card-body {
    padding: 1.2rem !important;
  }

  .fleet-card-footer {
    padding-top: 1rem !important;
    gap: 0.5rem !important;
  }

  .fleet-price {
    font-size: 1.8rem !important;
  }

  .fleet-price em {
    font-size: 0.8rem !important;
    margin-left: 0.2rem !important;
  }

  .fleet-card-footer .btn-ar {
    padding: 0.6rem 1rem !important;
    font-size: 0.8rem !important;
  }
}

/* ── FLATPICKR OVERRIDES ── */
.flatpickr-calendar,
.flatpickr-calendar.dark {
  background: var(--gray) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  border-radius: 4px !important;
}

.flatpickr-months,
.flatpickr-weekdays,
.flatpickr-weekdaycontainer,
span.flatpickr-weekday {
  background: var(--gray) !important;
  color: var(--white) !important;
}

span.flatpickr-weekday {
  color: var(--text-muted) !important;
  font-weight: 600 !important;
  font-family: var(--font-ui) !important;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.flatpickr-day {
  color: var(--white) !important;
  border-radius: 0 !important;
  transition: background 0.2s, color 0.2s;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.2) !important;
  background: transparent !important;
  cursor: not-allowed !important;
  text-decoration: line-through;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
}

.flatpickr-day.inRange,
.flatpickr-day.inRange:hover {
  background: #332A00 !important;
  /* solid dark yellow/brown instead of rgba */
  border-color: transparent !important;
  box-shadow: -5px 0 0 #332A00, 5px 0 0 #332A00 !important;
  color: var(--yellow) !important;
}

.flatpickr-day:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: var(--white) !important;
  fill: var(--white) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--gray) !important;
}

.flatpickr-day.today {
  border-color: var(--yellow) !important;
}

.flatpickr-day.today:hover {
  background: var(--yellow) !important;
  color: var(--black) !important;
}

.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #332A00 !important;
}

/* ── GOOGLE MAPS CARD ── */
.map-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  overflow: hidden;
}

.map-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 380px;
  position: relative;
}

.map-container iframe {
  filter: invert(90%) hue-rotate(180deg) contrast(1.1) brightness(0.95);
  border-radius: 8px;
}

@media (max-width: 860px) {
  .map-card-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .map-container {
    height: 280px;
  }
}

/* ── FAQ STYLING ── */
.faq-category-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.6rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(245, 197, 24, 0.3);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 197, 24, 0.4);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.faq-icon {
  font-size: 1.1rem;
  color: var(--yellow);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.4rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.7);
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
  margin-top: 0.2rem;
  padding-top: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ── CONTACT PAGE STYLES ── */
.contact-wrap {
  padding: 120px 4rem 6rem;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 { font-family: 'Bebas Neue', cursive; font-size: 2.2rem; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.contact-info p  { font-size: 0.9rem; line-height: 1.85; color: rgba(240,237,232,0.5); }

.contact-detail-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-top: 1.5rem; }
.contact-detail-icon { color: var(--yellow); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-detail-text { font-size: 0.88rem; line-height: 1.7; color: rgba(240,237,232,0.55); }

.contact-form-wrap { background: var(--gray); padding: 2.5rem; }

@media (max-width: 768px) {
  .contact-wrap { padding: 100px 1.5rem 4rem; grid-template-columns: 1fr; gap: 3rem; }
}

/* ── BOOKING CONFIRMATION & CONTRACT STYLES ── */
.confirm-wrap {
  padding: 120px 1.5rem 6rem;
  max-width: 1150px;
  margin: 0 auto;
}

.confirm-header-card {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.confirm-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #22c55e;
  flex-shrink: 0;
}

.confirm-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.confirm-sub {
  font-size: 1.05rem;
  color: rgba(240, 237, 232, 0.6);
  margin: 0;
}

.confirm-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.details-card, .contract-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
}

.card-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.confirm-bike-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
  margin-bottom: 1.5rem;
}

.confirm-bike-placeholder {
  aspect-ratio: 16/9;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.confirm-bike-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.confirm-booking-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.confirm-booking-num strong {
  color: var(--yellow);
}

.confirm-info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.confirm-info-row:last-child {
  border-bottom: none;
}

.confirm-info-k {
  color: var(--text-muted);
}

.confirm-info-v {
  color: rgba(240, 237, 232, 0.9);
  text-align: right;
  max-width: 60%;
}

.contract-status-box {
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contract-status-box.pending {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.contract-status-box.signed {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.contract-status-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contract-status-box.pending .contract-status-icon { color: #f59e0b; }
.contract-status-box.signed .contract-status-icon { color: #22c55e; }

.contract-status-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contract-status-desc {
  font-size: 0.85rem;
  color: rgba(240, 237, 232, 0.6);
  line-height: 1.4;
}

.confirm-email-note {
  padding: 1.5rem;
  background: rgba(34, 197, 94, 0.03);
  border-left: 3px solid rgba(34, 197, 94, 0.3);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(240, 237, 232, 0.7);
  margin-bottom: 3rem;
}

.confirm-email-note strong {
  color: #86efac;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 650px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--yellow);
}

.modal-close {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.modal-close:hover { color: #fff; }

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

.contract-scrollbox {
  max-height: 220px;
  overflow-y: auto;
  font-size: 0.85rem;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  color: rgba(240, 237, 232, 0.8);
}

.signature-area {
  margin-bottom: 1rem;
}

.signature-canvas-wrap {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 4px;
  height: 160px;
  position: relative;
}

.signature-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

.signature-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

/* PDF Generator Container (Hidden) */
#pdf-template {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 680px;
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'Barlow', sans-serif;
  padding: 24px;
  box-sizing: border-box;
}

#pdf-logo-wrapper svg {
  height: 40px !important;
  width: auto !important;
  display: block;
}

#pdf-template h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: #111;
  margin-bottom: 5px;
  border-bottom: 2px solid #111;
  padding-bottom: 10px;
}

#pdf-template table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

#pdf-template th, #pdf-template td {
  padding: 5px 8px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.8rem;
  box-sizing: border-box;
}

#pdf-template th {
  background-color: #f3f4f6;
  font-weight: 600;
  color: #374151;
}

#pdf-template td {
  color: #1f2937;
}

#pdf-template .section-title {
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 14px;
  margin-bottom: 6px;
  color: #111;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .confirm-wrap {
    padding: 100px 1.5rem 4rem;
  }

  .confirm-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .confirm-header-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* ── COUNTDOWN WIDGET STYLES ── */
.countdown-grid {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  text-align: center;
  min-width: 70px;
}

.countdown-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(240, 237, 232, 0.55);
  margin-top: 0.2rem;
}

@media (max-width: 600px) {
  .countdown-grid {
    justify-content: center;
  }
}