/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #00b0ff;
  --primary-dark: #0081cb;
  --accent: #a78bfa;
  --bg: #020617; /* Slate 950 */
  --bg2: #0f172a; /* Slate 900 */
  --card: rgba(15, 23, 42, 0.6); /* Translucent Slate 900 */
  --card2: rgba(30, 41, 59, 0.6); /* Translucent Slate 800 */
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.12);
  --gradient: linear-gradient(135deg, #00b0ff, #c084fc);
  --gradient-hover: linear-gradient(135deg, #38bdf8, #d8b4fe);
  --glow-shadow: 0 0 25px rgba(0, 176, 255, 0.5);
  --glow-shadow-accent: 0 0 25px rgba(167, 139, 250, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(0, 176, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,176,255,.1);
  padding: .3rem .9rem;
  border-radius: 100px;
  border: 1px solid rgba(0,176,255,.3);
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo { text-decoration: none; font-size: 1.4rem; font-weight: 800; }
.logo-hop { color: var(--text); }
.logo-on { color: var(--primary); }
.logo-travel { color: var(--muted); font-weight: 400; font-size: 1rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--gradient); color: #fff; padding: .6rem 1.4rem; border-radius: 100px; text-decoration: none; font-weight: 700; font-size: .95rem; transition: transform .2s, box-shadow .2s; }

/* Language Selector */
.lang-selector select { background: transparent; color: var(--text); border: 1px solid var(--border); padding: .4rem .8rem; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: .9rem; cursor: pointer; outline: none; transition: border-color .2s; }
.lang-selector select:hover { border-color: var(--primary); }
.lang-selector select option { background: var(--bg); color: var(--text); }

.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--glow-shadow); background: var(--gradient-hover); }
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; z-index: 1001; position: relative; width: 34px; height: 34px; justify-content: center; }
.hamburger span { width: 24px; height: 2px; background: var(--text); display: block; border-radius: 2px; transition: all .3s ease-in-out; position: absolute; }
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 16px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.active span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 16px; transform: rotate(-45deg); }
.mobile-menu { 
  display: flex; flex-direction: column; gap: .5rem; padding: 5rem 1.5rem 2rem; 
  background: rgba(10,15,30,.98); backdrop-filter: blur(20px);
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; z-index: 1000;
  transition: right .4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { color: var(--muted); text-decoration: none; font-weight: 500; padding: .8rem 0; border-bottom: 1px solid var(--border); font-size: 1.1rem; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta { background: var(--gradient); color: #fff !important; padding: .8rem 1.5rem; border-radius: 8px; text-align: center; margin-top: 1rem; box-shadow: 0 4px 15px rgba(0,176,255,.3); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.35) saturate(1.2);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,30,.4) 0%, rgba(10,15,30,.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 6rem 1.5rem 4rem; max-width: 800px;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2); padding: .4rem 1rem; border-radius: 100px;
  font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem; color: #fff;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem; color: #fff; letter-spacing: -.02em;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--primary); color: #fff;
  padding: .9rem 2rem; border-radius: 100px; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(0,176,255,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,176,255,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  padding: .9rem 2rem; border-radius: 100px; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: background .2s, transform .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 800; color: #fff; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .8rem; z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px; background: rgba(255,255,255,.4); border-radius: 50%;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ===== FEATURES ===== */
.features { padding: 7rem 0; text-align: center; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1rem;
}
.feature-card {
  background: var(--card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 2rem; text-align: left; position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(0,176,255,.1), transparent 50%);
  opacity: 0; transition: opacity .4s ease;
}
.feature-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--glow-shadow); border-color: rgba(0,176,255,.4); }
.feature-card:hover::before { opacity: 1; }
.feature-card--highlight { background: linear-gradient(135deg, rgba(0,176,255,.08), rgba(167,139,250,.08)); border-color: rgba(0,176,255,.3); }
.feature-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.feature-card p { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.feature-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--gradient); color: #fff; font-size: .7rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: 100px; letter-spacing: .05em; text-transform: uppercase;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 7rem 0; background: var(--bg2); text-align: center; }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.step { background: var(--card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 20px; padding: 2rem 1.5rem; max-width: 220px; text-align: center; flex: 1; min-width: 180px; transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s; }
.step:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--glow-shadow); border-color: rgba(167, 139, 250, 0.3); }
.step-num { font-size: .75rem; font-weight: 800; color: var(--primary); letter-spacing: .1em; margin-bottom: .5rem; }
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.step p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.step-arrow { font-size: 1.5rem; color: var(--muted); margin-top: 3rem; flex-shrink: 0; }

/* ===== SHOWCASE ===== */
.showcase { padding: 7rem 0; overflow: hidden; }
.showcase-inner { display: flex; align-items: center; gap: 5rem; }
.showcase-text { flex: 1; }
.showcase-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.showcase-list li { display: flex; align-items: flex-start; gap: 1rem; }
.check { background: rgba(0,176,255,.15); color: var(--primary); font-weight: 800; padding: .1rem .4rem; border-radius: 6px; font-size: .9rem; flex-shrink: 0; margin-top: .1rem; }
.showcase-list strong { display: block; font-weight: 700; }
.showcase-list div { color: var(--muted); font-size: .95rem; }

.showcase-phones { flex: 1; position: relative; height: 550px; display: flex; align-items: center; }
.phone-mockup {
  position: absolute; width: 260px; background: var(--card2); border: 1px solid var(--border);
  border-radius: 36px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.phone-front { left: 30%; top: 0; z-index: 2; }
.phone-back { left: 0; top: 10%; z-index: 1; opacity: .7; transform: scale(.9); }
.phone-screen { padding: 1rem; min-height: 500px; background: #0f172a; }
.phone-screen--map { background: #1e293b; }
.mock-map { height: 250px; background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%); border-radius: 12px; position: relative; overflow: hidden; margin-bottom: 1rem; }
.mock-map::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,.03) 40px, rgba(255,255,255,.03) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,.03) 40px, rgba(255,255,255,.03) 41px); }
.mock-map-pin { position: absolute; font-size: 1.8rem; animation: float 3s ease-in-out infinite; }
.mock-map-pin.bus { top: 40%; left: 50%; }
.mock-map-pin.user { top: 65%; left: 30%; animation-delay: 1s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.mock-card { background: rgba(0,176,255,.15); border: 1px solid rgba(0,176,255,.3); border-radius: 10px; padding: .7rem 1rem; display: flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600; color: var(--primary); }
.mock-card-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-card-dot.live { background: #ef4444; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.mock-header { background: var(--card); border-radius: 12px; padding: .7rem 1rem; margin-bottom: .8rem; }
.mock-search { font-size: .8rem; color: var(--muted); }
.mock-chip-row { display: flex; gap: .5rem; margin-bottom: .8rem; }
.mock-chip { font-size: .7rem; padding: .3rem .7rem; border-radius: 100px; background: var(--card); border: 1px solid var(--border); color: var(--muted); }
.mock-chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.mock-trip-card { background: var(--card); border-radius: 12px; overflow: hidden; display: flex; gap: .8rem; align-items: center; padding: .7rem; }
.mock-trip-img { width: 60px; height: 60px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.mock-trip-title { font-size: .8rem; font-weight: 700; margin-bottom: .2rem; }
.mock-trip-meta { font-size: .7rem; color: var(--muted); }
.mock-trip-pill { display: inline-block; background: rgba(0,176,255,.1); color: var(--primary); font-size: .65rem; font-weight: 700; padding: .15rem .5rem; border-radius: 100px; margin-top: .3rem; }

/* ===== FOR VENDORS ===== */
.for-vendors { padding: 7rem 0; background: var(--bg2); }
.vendor-card-grid { display: flex; gap: 5rem; align-items: center; }
.vendor-text { flex: 1; }
.vendor-features { display: flex; flex-direction: column; gap: 1.2rem; }
.vendor-feat { display: flex; gap: 1rem; align-items: flex-start; }
.vendor-feat span { font-size: 1.5rem; flex-shrink: 0; }
.vendor-feat strong { display: block; font-weight: 700; margin-bottom: .2rem; }
.vendor-feat small { color: var(--muted); font-size: .9rem; }
.btn-vendor {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, #a78bfa, #f472b6); color: #fff;
  padding: .9rem 2rem; border-radius: 100px; font-weight: 700; font-size: 1rem;
  text-decoration: none; margin-top: 2rem; transition: opacity .2s, transform .2s;
  box-shadow: 0 8px 30px rgba(167,139,250,.4);
}
.btn-vendor:hover { opacity: .85; transform: translateY(-3px); }
.vendor-visual { flex-shrink: 0; display: flex; flex-direction: column; }
.vendor-stat-card {
  background: var(--card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.2rem;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vendor-stat-card:hover { transform: translateX(8px) scale(1.02); box-shadow: var(--glow-shadow); border-color: rgba(0,176,255,.4); }
.vsc-icon { font-size: 2rem; }
.vsc-num { font-size: 2rem; font-weight: 800; }
.vsc-label { font-size: .85rem; color: var(--muted); }

/* ===== DOWNLOAD ===== */
.download { padding: 7rem 0; text-align: center; position: relative; overflow: hidden; }
.download-bg-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,176,255,.15), transparent 70%);
  pointer-events: none;
}
.c1 { width: 600px; height: 600px; top: -200px; left: -200px; }
.c2 { width: 500px; height: 500px; bottom: -200px; right: -100px; background: radial-gradient(circle, rgba(167,139,250,.12), transparent 70%); }
.download-inner { position: relative; z-index: 2; }
.download-icon { font-size: 4rem; margin-bottom: 1rem; }
.download-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 1rem; }
.download-sub { font-size: 1.1rem; color: var(--muted); max-width: 500px; margin: 0 auto 2.5rem; }
.download-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-download {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--card2); border: 1px solid var(--border);
  color: #fff; padding: 1rem 1.8rem; border-radius: 14px;
  text-decoration: none; transition: background .2s, transform .2s, border-color .2s;
  min-width: 180px;
}
.btn-download:hover { background: var(--card); border-color: var(--primary); transform: translateY(-3px); }
.btn-download div { text-align: left; }
.btn-download small { display: block; font-size: .7rem; color: var(--muted); }
.btn-download strong { font-size: 1rem; font-weight: 700; }
.download-note { margin-top: 1.5rem; font-size: .85rem; color: var(--muted); }

/* ===== FOOTER ===== */
.footer { background: #06090f; padding: 5rem 0 0; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--muted); transition: color .2s; }
.footer-social a:hover { color: var(--primary); }
.footer-links-group h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: 1rem; }
.footer-links-group { display: flex; flex-direction: column; gap: .5rem; }
.footer-links-group a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links-group a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 1.5rem; text-align: center; color: var(--muted); font-size: .85rem; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== BOOK A TRIP SECTION ===== */
.book-section { padding: 7rem 0; background: var(--bg); }

/* Step Indicator */
.book-steps-indicator { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 3rem; }
.bsi-step { display: flex; align-items: center; gap: .6rem; opacity: .4; transition: opacity .3s; }
.bsi-step.active { opacity: 1; }
.bsi-num { width: 36px; height: 36px; border-radius: 50%; background: var(--card); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 800; transition: all .3s; }
.bsi-step.active .bsi-num { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 0 15px rgba(0,176,255,.5); }
.bsi-label { font-size: .85rem; font-weight: 600; color: var(--muted); }
.bsi-step.active .bsi-label { color: var(--text); }
.bsi-line { flex: 1; max-width: 80px; height: 2px; background: var(--border); margin: 0 .5rem; }

/* Trip Cards Grid */
.web-trips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.web-trip-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; cursor: pointer; transition: all .35s cubic-bezier(0.4, 0, 0.2, 1); }
.web-trip-card:hover { transform: translateY(-6px); box-shadow: var(--glow-shadow); border-color: rgba(0,176,255,.4); }
.web-trip-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.web-trip-body { padding: 1.2rem; }
.web-trip-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.web-trip-vendor { font-size: .85rem; color: var(--muted); margin-bottom: .8rem; }
.web-trip-meta { display: flex; justify-content: space-between; align-items: center; }
.web-trip-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.web-trip-seats { font-size: .8rem; color: var(--muted); background: var(--card2); padding: .2rem .6rem; border-radius: 100px; }
.web-trip-book-btn { display: block; width: 100%; margin-top: 1rem; background: var(--gradient); color: #fff; border: none; padding: .7rem; border-radius: 10px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: opacity .2s, transform .2s; }
.web-trip-book-btn:hover { opacity: .85; transform: translateY(-1px); }

/* Search */
.book-search-row { margin-bottom: 1rem; }
.book-search-input { width: 100%; padding: .9rem 1.2rem; background: var(--card); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-size: 1rem; font-family: 'Outfit', sans-serif; transition: border-color .2s; outline: none; }
.book-search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,176,255,.15); }

/* Loading / Error */
.book-loading { display: flex; align-items: center; gap: 1rem; color: var(--muted); padding: 3rem; justify-content: center; }
.book-spinner { width: 28px; height: 28px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.book-error { text-align: center; color: #f87171; padding: 2rem; background: rgba(248,113,113,.1); border-radius: 12px; border: 1px solid rgba(248,113,113,.2); }

/* Form Step */
.book-form-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.book-back-btn { background: none; border: 1px solid var(--border); color: var(--muted); padding: .5rem 1rem; border-radius: 8px; cursor: pointer; font-size: .9rem; transition: all .2s; }
.book-back-btn:hover { border-color: var(--primary); color: var(--primary); }
.selected-trip-badge { background: var(--primary); color: #fff; padding: .35rem 1rem; border-radius: 100px; font-size: .85rem; font-weight: 700; }
.book-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.book-form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.book-field { margin-bottom: 1.2rem; }
.book-label { display: block; font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: .5rem; }
.book-input, .book-select { width: 100%; padding: .8rem 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: .95rem; font-family: 'Outfit', sans-serif; outline: none; transition: border-color .2s; }
.book-input:focus, .book-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,176,255,.12); }
.book-select option { background: #0f172a; }
.book-price-box { background: linear-gradient(135deg, rgba(0,176,255,.1), rgba(192,132,252,.1)); border: 1px solid rgba(0,176,255,.3); border-radius: 14px; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; }
.book-price-label { font-size: .85rem; color: var(--muted); }
.book-price-value { font-size: 1.8rem; font-weight: 900; color: var(--primary); }
.book-consent { display: flex; gap: .75rem; align-items: flex-start; margin: 1.2rem 0; background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.2); border-radius: 10px; padding: 1rem; }
.book-checkbox { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--primary); margin-top: 2px; }
.book-consent-label { font-size: .9rem; color: #93c5fd; line-height: 1.5; cursor: pointer; }
.book-captcha { margin-bottom: 1.5rem; }
.book-captcha-q { font-weight: 800; color: var(--primary); font-size: 1.1rem; letter-spacing: .05em; }
.book-submit-btn { width: 100%; background: var(--gradient); color: #fff; border: none; padding: 1rem; border-radius: 12px; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all .3s; box-shadow: 0 8px 25px rgba(0,176,255,.3); font-family: 'Outfit', sans-serif; }
.book-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0,176,255,.45); }
.book-submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Ticket */
.book-ticket { max-width: 500px; margin: 0 auto; background: var(--card2); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.book-ticket-header { background: var(--primary); padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-weight: 800; color: #fff; font-size: .95rem; letter-spacing: .05em; }
.book-ticket-status { background: rgba(255,255,255,.2); padding: .3rem .8rem; border-radius: 100px; font-size: .75rem; font-weight: 800; }
.book-ticket-body { padding: 1.5rem; }
.book-ticket-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: .95rem; }
.book-ticket-row span { color: var(--muted); }
.book-ticket-row strong { color: var(--text); font-weight: 700; }
.total-row { border-top: 1px dashed var(--border); padding-top: 1rem; margin-top: .5rem; }
.conf-price { color: var(--primary) !important; font-size: 1.4rem; }
.book-ticket-divider { position: relative; height: 24px; display: flex; align-items: center; }
.notch { width: 24px; height: 24px; border-radius: 50%; background: var(--bg); position: absolute; }
.notch.left { left: -12px; }
.notch.right { right: -12px; }
.book-ticket-footer { padding: 1rem 1.5rem 1.5rem; text-align: center; }
.book-ticket-id-label { font-size: .75rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; }
.book-ticket-id { font-size: 1.3rem; font-weight: 900; letter-spacing: .15em; color: var(--text); }
.book-ticket-actions { display: flex; gap: 1rem; padding: 0 1.5rem 1.5rem; }
.book-wa-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; background: #25d366; color: #fff; text-decoration: none; padding: .85rem; border-radius: 10px; font-weight: 700; font-size: .9rem; transition: opacity .2s; }
.book-wa-btn:hover { opacity: .85; }
.book-new-btn { flex: 1; background: var(--card); border: 1px solid var(--border); color: var(--text); padding: .85rem; border-radius: 10px; font-weight: 700; font-size: .9rem; cursor: pointer; transition: border-color .2s; font-family: 'Outfit', sans-serif; }
.book-new-btn:hover { border-color: var(--primary); }
.book-ticket-note { text-align: center; font-size: .8rem; color: var(--muted); padding: 0 1.5rem 1.5rem; line-height: 1.5; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-inner { flex-direction: column; gap: 3rem; }
  .showcase-phones { height: 400px; width: 100%; }
  .phone-front { left: 35%; }
  .vendor-card-grid { flex-direction: column; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .web-trips-grid { grid-template-columns: 1fr; }
  .book-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .download-btns { flex-direction: column; align-items: center; }
  .web-trips-grid { grid-template-columns: 1fr; }
  .bsi-label { display: none; }
}

