/* ========================================
   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: var(--gray);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 0 15px rgba(245, 197, 24, 0.3);
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; /* Reverted */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; /* Reverted */
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ── SHARED UTILITIES ── */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; /* 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: 0.72rem; /* 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;
}

.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: 0.85rem; /* 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);
}

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

.stat-icon {
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.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: 0.9rem; /* Increased from 0.68 */
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.fleet-card-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem; /* Increased from 2.4 */
  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;
}
.fleet-card.single {
  display: flex !important;
  flex-direction: row;
  min-height: 500px;
}
.fleet-card.single .fleet-card-img,
.fleet-card.single .fleet-card-img-placeholder {
  width: 50%;
  height: auto;
  object-fit: cover;
}
.fleet-card.single .fleet-card-body {
  width: 50%;
  padding: 4rem;
}
.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.05rem;
  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: 0.88rem; /* 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: 0.72rem;
  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.72rem; /* 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: 0.68rem; /* 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: 1.05rem;
  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-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; }

  .stats-bar { grid-template-columns: repeat(2, 1fr) !important; padding: 3rem 1.5rem; gap: 3rem 1rem; }
  .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; }

  .fleet-grid.single { grid-template-columns: 1fr; }
  .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; }
}

/* ── 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;
}