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

:root {
  --orange:   #FF6B35;
  --orange-d: #e85a26;
  --blue:     #0077b6;
  --blue-d:   #023e8a;
  --teal:     #2ec4b6;
  --yellow:   #FFD166;
  --cream:    #FFFBF5;
  --stone:    #F5F0E8;
  --text:     #1a1a2e;
  --muted:    #6b7280;
  --white:    #ffffff;
  --r:        16px;
  --r-lg:     24px;
  --shadow:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Nav ── */
.nav {
  position: sticky; top: 0;
  background: rgba(255,251,245,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--orange);
  display: flex; align-items: center; gap: 8px;
}
.lang-toggle {
  background: var(--stone);
  border: 2px solid #e0d8cc;
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
}
.lang-toggle:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ── Shared ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--orange-d);
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn-primary:active { transform: translateY(4px); box-shadow: none; }
.btn-primary:hover { background: var(--orange-d); }
.btn-block { width: 100%; justify-content: center; font-size: 1.1rem; padding: 16px; }
.btn-secondary {
  background: var(--stone);
  color: var(--text);
  border: 2px solid #e0d8cc;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f0 0%, #ffecd6 50%, #e8f4ff 100%);
  padding: 80px 24px 100px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  opacity: 0.15;
}
.shape-1 { width: 400px; height: 400px; background: var(--orange); top: -100px; right: -100px; }
.shape-2 { width: 250px; height: 250px; background: var(--teal); bottom: -50px; left: -50px; }
.shape-3 { width: 150px; height: 150px; background: var(--yellow); top: 50%; right: 20%; }

.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 60px;
  position: relative;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-weight: 800; font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 28px;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.hero-tags span {
  background: var(--white);
  border: 2px solid #e8ddd0;
  border-radius: 50px;
  padding: 6px 14px;
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px;
}

/* Hero Illustration */
.hero-illustration {
  flex: 0 0 380px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.city-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 280px;
  border: 3px solid #f0e8dc;
}
.city-card-map {
  background: #e8f4e8;
  height: 180px;
  position: relative;
  overflow: hidden;
}
.map-road {
  position: absolute;
  background: var(--white);
  opacity: 0.6;
}
.road-h { height: 12px; width: 100%; top: 50%; transform: translateY(-50%); }
.road-v { width: 12px; height: 100%; left: 45%; }
.map-pin {
  position: absolute;
  font-size: 1.6rem;
  animation: bounce-pin 2s infinite ease-in-out;
}
.pin-1 { top: 20%; left: 20%; animation-delay: 0s; }
.pin-2 { top: 30%; right: 25%; animation-delay: 0.6s; }
.pin-3 { bottom: 20%; left: 40%; animation-delay: 1.2s; }
.map-player {
  position: absolute;
  font-size: 1.8rem;
  bottom: 25%; right: 20%;
  animation: float 3s infinite ease-in-out;
}
.city-card-info {
  padding: 12px 16px;
  background: var(--white);
}
.city-card-label {
  font-weight: 800; font-size: 0.9rem;
  color: var(--teal);
}
.floating-badge {
  position: absolute;
  background: var(--white);
  border: 2px solid #f0e8dc;
  border-radius: 50px;
  padding: 8px 14px;
  font-weight: 800; font-size: 0.8rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.badge-1 { top: 10px; right: -20px; }
.badge-2 { bottom: 30px; right: -30px; }
.badge-3 { top: 50%; left: -30px; transform: translateY(-50%); }

/* ── Why Section ── */
.why { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 2px solid #f0e8dc;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2.8rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem; margin-bottom: 10px;
  color: var(--text);
}
.why-card p { color: var(--muted); font-size: 0.95rem; }

/* ── How It Works ── */
.how { padding: 100px 0; background: var(--stone); }
.steps {
  display: flex; align-items: flex-start;
  gap: 16px; flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 220px; max-width: 300px;
  display: flex; gap: 16px; align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  box-shadow: 0 4px 0 var(--orange-d);
}
.step-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem; margin-bottom: 6px;
}
.step-body p { font-size: 0.9rem; color: var(--muted); }
.step-arrow {
  font-size: 1.8rem; color: var(--orange);
  margin-top: 12px; font-weight: 900;
  flex-shrink: 0;
}

/* ── Routes ── */
.routes { padding: 100px 0; background: var(--white); }
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.route-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid #f0e8dc;
  background: var(--cream);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.route-active { border-color: var(--orange); }
.route-soon { opacity: 0.7; }
.route-city-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800; font-size: 0.78rem;
  padding: 4px 12px; border-radius: 50px;
  z-index: 2;
}
.route-coming-soon-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--yellow);
  color: var(--text);
  font-weight: 800; font-size: 0.78rem;
  padding: 4px 12px; border-radius: 50px;
  z-index: 2;
}
.route-image { height: 160px; position: relative; }
.route-map-preview {
  height: 100%; display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8f4e8 0%, #d4edda 100%);
  font-size: 4rem;
}
.route-map-blur { filter: blur(3px); }
.route-body { padding: 20px 22px 24px; }
.route-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem; margin-bottom: 8px;
}
.route-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.route-stats {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 20px;
}
.route-stats span {
  background: var(--white);
  border: 1px solid #e8ddd0;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.82rem; font-weight: 700;
}
.btn-route {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 800; font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-route:hover { background: var(--orange-d); }

/* ── Booking ── */
.book { padding: 100px 0; background: var(--stone); }
.book-sub {
  text-align: center; color: var(--muted);
  font-size: 1rem; margin-top: -32px; margin-bottom: 44px;
}
.book-card {
  max-width: 560px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  border: 2px solid #f0e8dc;
}
.book-route-summary {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 28px;
}
.book-route-name { font-weight: 800; font-size: 0.95rem; }
.book-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem; color: var(--orange);
}
.book-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 800; font-size: 0.9rem; }
.form-group input {
  padding: 12px 16px;
  border: 2px solid #e8ddd0;
  border-radius: var(--r);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--orange); background: var(--white); }
.field-hint { font-size: 0.8rem; color: var(--muted); }
.field-error { font-size: 0.82rem; color: #e53e3e; font-weight: 700; }
.field-error.hidden, .hidden { display: none; }
.promo-row { display: flex; gap: 10px; }
.promo-row input { flex: 1; }
.promo-msg { font-size: 0.85rem; font-weight: 700; }
.promo-msg.success { color: #2e7d32; }
.promo-msg.error { color: #e53e3e; }
.book-total {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem; font-weight: 700;
  padding: 14px 0;
  border-top: 2px dashed #e8ddd0;
}
.book-total strong {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem; color: var(--orange);
}
.book-secure {
  text-align: center;
  font-size: 0.8rem; color: var(--muted);
  margin-top: 4px;
}

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream);
  border: 2px solid #f0e8dc;
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 800; font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--orange); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 18px; color: var(--muted); font-size: 0.92rem; }

/* ── Footer ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 48px 24px;
}
.footer-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-links a { color: var(--yellow); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-copy { font-size: 0.78rem; margin-top: 16px; opacity: 0.5; }

/* ── Animations ── */
@keyframes bounce-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-tags { justify-content: center; }
  .hero-illustration { width: 100%; max-width: 300px; }
  .badge-1, .badge-2, .badge-3 { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .step { max-width: 100%; }
  .book-card { padding: 24px 20px; }
  .book-route-summary { flex-direction: column; gap: 6px; align-items: flex-start; }
}
