/* ============================================================
   BikeRentalPOS — Main Stylesheet
   Theme: Google Material You · Light · Clean · Modern
   ============================================================ */

/* ── GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Google palette */
  --blue:    #1a73e8;
  --blue-dk: #1557b0;
  --blue-lt: #e8f0fe;
  --green:   #34a853;
  --green-lt:#e6f4ea;
  --yellow:  #fbbc04;
  --yellow-lt:#fef7e0;
  --red:     #ea4335;
  --red-lt:  #fce8e6;

  /* Neutrals */
  --white:   #ffffff;
  --gray-50: #f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-300:#cbd5e1;
  --gray-400:#94a3b8;
  --gray-500:#64748b;
  --gray-600:#475569;
  --gray-700:#334155;
  --gray-800:#1e293b;
  --gray-900:#0f172a;

  /* Semantic */
  --bg:      var(--white);
  --surface: var(--gray-50);
  --border:  var(--gray-200);
  --text:    var(--gray-800);
  --text2:   var(--gray-500);
  --text3:   var(--gray-400);
  --accent:  var(--blue);
  --accent-dk:var(--blue-dk);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --nav-h: 68px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.15);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 600; font-size: .9rem;
  cursor: pointer; border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: white;
}
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent; color: var(--gray-700);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--blue-lt); }

.btn-hero-primary {
  background: var(--accent); color: white;
  padding: 14px 28px; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(26,115,232,.4);
}
.btn-hero-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,115,232,.5); }

.btn-hero-ghost {
  background: rgba(255,255,255,.12); color: white;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.2); }

.btn-white { background: white; color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--blue-lt); }
.btn-ghost-white { color: white; border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--gray-800);
}
.logo-icon { font-size: 1.4rem; }
.logo-text strong { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 500; font-size: .9rem; color: var(--gray-600);
  transition: all .15s;
}
.nav-links a:hover { color: var(--accent); background: var(--blue-lt); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
}
.hamburger span { width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 8px;
  padding: 16px 24px; border-top: 1px solid var(--border);
  background: white;
}
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-family: var(--font-display); font-weight: 500;
}
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 60%, var(--blue-lt) 100%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--gray-200) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .5;
}
.hero-gradient {
  position: absolute;
  width: 600px; height: 600px;
  right: -100px; top: -100px;
  background: radial-gradient(circle, rgba(26,115,232,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 60px 0 60px 24px;
  max-width: 600px;
  margin-left: calc((100vw - 1200px) / 2);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-lt); color: var(--green);
  padding: 6px 14px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.05;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem; color: var(--gray-500);
  max-width: 480px; margin-bottom: 32px; line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap;
}
.hero-stats {
  display: flex; align-items: center; gap: 20px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--gray-900); }
.stat-lbl { font-size: .78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; }
.stat-div { width: 1px; height: 36px; background: var(--gray-200); }

/* Hero Visual */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px;
}
.hero-card-float {
  position: relative; width: 400px; height: 400px;
}
.bike-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(26,115,232,.35);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50% { transform: translate(-50%,-50%) translateY(-14px); }
}
.bike-emoji { font-size: 5rem; }
.float-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
}
.card-1 { top: 20px; right: -20px; animation: floatCard 3.5s ease-in-out infinite; }
.card-2 { bottom: 60px; right: -30px; animation: floatCard 3.5s 1.2s ease-in-out infinite; }
.card-3 { bottom: 0; left: 10px; animation: floatCard 3.5s .6s ease-in-out infinite; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon { font-size: 1.8rem; }
.fc-name { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--gray-800); }
.fc-price { font-size: .8rem; color: var(--gray-500); }
.fc-avail { font-size: .75rem; font-weight: 700; padding: 3px 8px; border-radius: 100px; }
.avail-open { background: var(--green-lt); color: var(--green); }

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--blue-lt); color: var(--blue);
  padding: 5px 14px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--gray-900);
  margin-bottom: 12px;
}
.section-header p { color: var(--gray-500); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ── Why Us ── */
.why-us { background: var(--gray-50); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feat-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--ic) 15%, white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--gray-800); margin-bottom: 10px;
}
.feature-card p { color: var(--gray-500); font-size: .92rem; line-height: 1.65; }

/* ── Fleet Preview ── */
.fleet-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 36px;
}
.fleet-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: white;
  transition: all .3s;
  display: block;
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.fleet-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-size: 3.5rem;
}
.fleet-emoji { z-index: 1; }
.ebike  { background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%); }
.mtb    { background: linear-gradient(135deg, #e6f4ea 0%, #ceead6 100%); }
.hybrid { background: linear-gradient(135deg, #fef7e0 0%, #feefc3 100%); }
.kids   { background: linear-gradient(135deg, #fce8e6 0%, #f5c6c3 100%); }
.fleet-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--blue); color: white;
  padding: 4px 10px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
}
.fleet-card-body { padding: 20px; }
.fleet-card-body h3 {
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  color: var(--gray-800); margin-bottom: 8px;
}
.fleet-card-body p { color: var(--gray-500); font-size: .85rem; margin-bottom: 14px; line-height: 1.5; }
.fleet-price { font-family: var(--font-display); color: var(--gray-600); font-size: .88rem; }
.fleet-price strong { color: var(--blue); font-size: 1.1rem; }
.fleet-cta { text-align: center; }

/* ── How It Works ── */
.how-it-works { background: var(--gray-50); }
.steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 24px;
}
.step {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 28px;
  text-align: center; flex: 1; max-width: 300px;
  transition: all .3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 3rem; color: var(--blue-lt);
  line-height: 1; margin-bottom: 8px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 14px; }
.step h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--gray-800); margin-bottom: 10px;
}
.step p { color: var(--gray-500); font-size: .9rem; line-height: 1.6; }
.step-arrow { font-size: 2rem; color: var(--gray-300); align-self: center; flex-shrink: 0; }

/* ── Reviews ── */
.reviews-track-wrap { overflow: hidden; }
.reviews-track {
  display: flex; gap: 20px;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
  width: 320px; flex-shrink: 0;
}
.stars { color: var(--yellow); font-size: 1rem; margin-bottom: 12px; }
.review-card p { color: var(--gray-600); font-size: .9rem; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.reviewer { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--gray-700); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #0d47a1 100%);
  padding: 80px 0; text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white; margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: var(--gray-900); color: var(--gray-300); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 14px; }
.footer-brand p { color: var(--gray-400); font-size: .9rem; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 1.3rem; text-decoration: none; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: white; margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--gray-400);
  font-size: .9rem; padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-col p { color: var(--gray-400); font-size: .9rem; line-height: 1.7; }
.footer-hours, .footer-addr { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .85rem; color: var(--gray-500); }
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: white; }

/* ══════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gray-900); margin-bottom: 12px;
}
.page-hero p { color: var(--gray-500); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }

/* ══════════════════════════════════
   PRICING TABLE
══════════════════════════════════ */
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th {
  background: var(--gray-800); color: white;
  font-family: var(--font-display); font-weight: 600;
  font-size: .85rem; text-transform: uppercase; letter-spacing: .07em;
  padding: 14px 20px; text-align: left;
}
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .92rem; color: var(--gray-700);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--blue-lt); }
.pricing-table .category-row td {
  background: var(--blue-lt); color: var(--blue);
  font-family: var(--font-display); font-weight: 700;
}
.price-highlight { color: var(--blue); font-weight: 700; }

/* ══════════════════════════════════
   RESERVATION FORM
══════════════════════════════════ */
.reserve-wrap {
  max-width: 760px; margin: 0 auto;
  padding: 40px 24px 80px;
}
.steps-bar {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 40px;
}
.sbar-step {
  display: flex; align-items: center; gap: 10px;
  flex: 1;
}
.sbar-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  color: var(--gray-400);
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; flex-shrink: 0;
}
.sbar-label {
  font-family: var(--font-display); font-size: .82rem; font-weight: 600;
  color: var(--gray-400); transition: all .3s;
  display: none;
}
.sbar-line { flex: 1; height: 2px; background: var(--border); }
.sbar-step.active .sbar-num { border-color: var(--blue); background: var(--blue); color: white; }
.sbar-step.active .sbar-label { color: var(--blue); }
.sbar-step.done .sbar-num { border-color: var(--green); background: var(--green); color: white; }
.sbar-step.done .sbar-num::after { content: '✓'; }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.step-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.6rem; color: var(--gray-900);
  margin-bottom: 6px;
}
.step-sub { color: var(--gray-500); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  color: var(--gray-700); margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: .95rem; font-family: var(--font-body);
  color: var(--gray-800);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,232,.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--gray-400); margin-top: 5px; }

/* Bike type chips */
.bike-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bike-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.bike-chip input { display: none; }
.bike-chip-icon { font-size: 1.2rem; }
.bike-chip-name { font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--gray-700); }
.bike-chip-price { font-size: .78rem; color: var(--gray-400); }
.bike-chip:has(input:checked) {
  border-color: var(--blue); background: var(--blue-lt);
}
.bike-chip:has(input:checked) .bike-chip-name { color: var(--blue); }

/* Qty spinner */
.qty-wrap {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; width: fit-content;
}
.qty-btn {
  width: 40px; height: 40px;
  background: var(--gray-100); border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--gray-600);
  transition: background .15s;
}
.qty-btn:hover { background: var(--blue-lt); color: var(--blue); }
.qty-input {
  width: 60px; height: 40px;
  border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
  text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  outline: none;
}

/* Duration badge */
.duration-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow-lt); color: #8a6400;
  padding: 6px 14px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  margin-top: 10px;
}

/* Summary card */
.summary-card {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 24px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--gray-500); }
.summary-row .value { font-weight: 600; color: var(--gray-800); }
.summary-total { border-top: 2px solid var(--border); margin-top: 8px; padding-top: 12px; }
.summary-total .label { font-family: var(--font-display); font-weight: 700; color: var(--gray-900); }
.summary-total .value { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--blue); }

/* Waiver */
.waiver-box {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px;
  max-height: 180px; overflow-y: auto;
  font-size: .85rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 16px;
}
.check-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: .9rem; color: var(--gray-700);
  margin-bottom: 12px;
}
.check-label input[type=checkbox] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--blue);
}

/* Form nav */
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; gap: 12px;
}

/* Success */
.success-screen { text-align: center; padding: 40px 0; }
.success-icon { font-size: 5rem; margin-bottom: 20px; animation: pop .5s ease; }
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-screen h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; color: var(--green); margin-bottom: 10px;
}
.success-screen p { color: var(--gray-500); margin-bottom: 8px; }
.res-id { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--blue); }

/* ══════════════════════════════════
   ADMIN PANEL
══════════════════════════════════ */
.admin-body { background: var(--gray-50); min-height: 100vh; }
.admin-nav {
  background: white; border-bottom: 1px solid var(--border);
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.admin-nav-left { display: flex; align-items: center; gap: 24px; }
.admin-tabs { display: flex; gap: 4px; }
.admin-tab {
  padding: 8px 16px; border-radius: var(--r-md);
  font-family: var(--font-display); font-weight: 600; font-size: .88rem;
  color: var(--gray-600); cursor: pointer; border: none; background: none;
  transition: all .15s;
}
.admin-tab:hover { background: var(--blue-lt); color: var(--blue); }
.admin-tab.active { background: var(--blue); color: white; }
.admin-main { max-width: 1200px; margin: 32px auto; padding: 0 24px; }
.admin-view { display: none; }
.admin-view.active { display: block; }

/* Stat cards */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.stat-card .sc-icon { font-size: 2rem; margin-bottom: 10px; }
.stat-card .sc-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; color: var(--gray-900); margin-bottom: 4px;
}
.stat-card .sc-label { font-size: .85rem; color: var(--gray-500); }
.stat-card .sc-delta { font-size: .82rem; color: var(--green); font-weight: 600; margin-top: 8px; }

/* Reservations table */
.data-table {
  width: 100%; border-collapse: collapse;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table th {
  background: var(--gray-50);
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray-500); padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--gray-700);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--blue-lt); }
.status-pill {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: .75rem;
}
.status-confirmed { background: var(--green-lt); color: var(--green); }
.status-pending   { background: var(--yellow-lt); color: #8a6400; }
.status-complete  { background: var(--gray-100); color: var(--gray-500); }
.status-cancelled { background: var(--red-lt); color: var(--red); }

/* Action buttons */
.action-btn {
  padding: 6px 12px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  cursor: pointer; background: white;
  transition: all .15s;
}
.action-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }
.action-btn.danger:hover { border-color: var(--red); color: var(--red); background: var(--red-lt); }

/* Admin login */
.login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--gray-50);
}
.login-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 48px 40px;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.login-card h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.8rem; color: var(--gray-900);
  margin-bottom: 6px; text-align: center;
}
.login-card p { color: var(--gray-500); text-align: center; margin-bottom: 32px; }
.alert {
  padding: 12px 16px; border-radius: var(--r-md);
  font-size: .9rem; margin-bottom: 16px;
}
.alert-error { background: var(--red-lt); color: var(--red); border: 1px solid #f5c6c3; }
.alert-success { background: var(--green-lt); color: var(--green); }

/* ══════════════════════════════════
   FLEET PAGE
══════════════════════════════════ */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bike-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: all .3s;
}
.bike-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.bike-card-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative;
}
.bike-card-body { padding: 24px; }
.bike-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.bike-tag {
  padding: 3px 10px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  background: var(--blue-lt); color: var(--blue);
}
.bike-card-body h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--gray-800); margin-bottom: 8px;
}
.bike-card-body p { color: var(--gray-500); font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }
.bike-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.bike-spec { font-size: .82rem; color: var(--gray-500); }
.bike-spec strong { color: var(--gray-800); }

/* ══════════════════════════════════
   TRAILS PAGE
══════════════════════════════════ */
.trail-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trail-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 24px;
  transition: all .3s;
}
.trail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.difficulty {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  margin-bottom: 12px;
}
.diff-easy   { background: var(--green-lt); color: var(--green); }
.diff-mod    { background: var(--blue-lt); color: var(--blue); }
.diff-hard   { background: var(--red-lt); color: var(--red); }
.diff-expert { background: #1a1a1a; color: white; }
.trail-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--gray-800); margin-bottom: 8px;
}
.trail-card p { color: var(--gray-500); font-size: .88rem; line-height: 1.6; margin-bottom: 14px; }
.trail-meta { display: flex; gap: 16px; }
.trail-meta span { font-size: .82rem; color: var(--gray-500); }
.trail-meta span strong { color: var(--gray-700); }

/* ══════════════════════════════════
   TOAST / NOTIFICATIONS
══════════════════════════════════ */
.toast-container { position: fixed; top: 90px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: white; border-left: 4px solid var(--green);
  box-shadow: var(--shadow-lg); border-radius: var(--r-md);
  padding: 14px 18px; min-width: 260px;
  display: flex; align-items: center; gap: 12px;
  animation: slideIn .3s ease;
}
.toast.error { border-color: var(--red); }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast-msg { font-size: .9rem; color: var(--gray-700); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { margin-left: 0; padding: 80px 24px 40px; max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-cards { grid-template-columns: repeat(2, 1fr); }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .features-grid { grid-template-columns: 1fr; }
  .fleet-cards { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .trail-cards { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sbar-label { display: block; }
}
@media (max-width: 480px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .trail-cards { grid-template-columns: 1fr; }
}
