*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0d0f0e;
  --bg2: #141716;
  --bg3: #1a1d1c;
  --surface: #1f2321;
  --surface2: #252927;
  --border: rgba(255,255,255,0.08);
  --border-md: rgba(255,255,255,0.14);
  --text: #f0ede8;
  --text-2: #9a9790;
  --text-3: #5a5955;
  --accent: #c8f060;
  --accent-dark: #a8d040;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; font-size: 15px; }
a { color: inherit; text-decoration: none; }

/* MARQUEE */
.marquee-bar { background: var(--accent); color: #0d0f0e; font-size: 12px; font-weight: 500; padding: 8px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-block; animation: scroll 30s linear infinite; }
.marquee-track span { margin-right: 80px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NAV */
nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 5%; border-bottom: 0.5px solid var(--border); position: sticky; top: 0; z-index: 100; background: rgba(13,15,14,0.92); backdrop-filter: blur(12px); }
.logo { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 13px; color: var(--text-2); }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #0d0f0e; font-size: 13px; font-weight: 500; padding: 8px 18px; border-radius: var(--radius-md); border: none; cursor: pointer; transition: background 0.15s; }
.nav-cta:hover { background: var(--accent-dark); }

/* HERO */
.hero { padding: 80px 5% 60px; max-width: 1100px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); border: 0.5px solid rgba(200,240,96,0.3); border-radius: 99px; padding: 5px 12px; margin-bottom: 24px; }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(32px, 5vw, 56px); font-weight: 700; line-height: 1.12; letter-spacing: -0.03em; color: var(--text); margin-bottom: 20px; max-width: 720px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 16px; color: var(--text-2); max-width: 560px; margin-bottom: 12px; }
.hero-note { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); margin-bottom: 36px; }
.hero-note::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #0d0f0e; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 12px 24px; border-radius: var(--radius-md); border: none; cursor: pointer; transition: background 0.15s, transform 0.1s; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 12px 24px; border-radius: var(--radius-md); border: 0.5px solid var(--border-md); cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.btn-secondary:hover { background: var(--surface); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1db954; }

/* TRUST BAR */
.trust-bar { border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); background: var(--bg2); }
.trust-inner { max-width: 1100px; margin: 0 auto; padding: 16px 5%; display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; }
.trust-item { font-size: 12px; color: var(--text-2); display: flex; align-items: center; gap: 7px; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* SECTIONS */
section { padding: 60px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 12px; }
.section-desc { font-size: 15px; color: var(--text-2); max-width: 680px; margin-bottom: 36px; line-height: 1.7; }

/* ROUTE CARDS */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.route-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px; transition: border-color 0.15s, background 0.15s; }
.route-card:hover { border-color: var(--border-md); background: var(--surface2); }
.route-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.route-fares { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fare-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.fare-label { color: var(--text-2); }
.fare-price { font-weight: 500; color: var(--text); }
.btn-view-cabs { width: 100%; display: block; text-align: center; padding: 8px; border-radius: var(--radius-sm); border: 0.5px solid rgba(200,240,96,0.3); font-size: 12px; font-weight: 500; color: var(--accent); background: rgba(200,240,96,0.06); transition: background 0.15s; cursor: pointer; }
.btn-view-cabs:hover { background: rgba(200,240,96,0.12); }

/* FARE TABLE */
.table-wrap { overflow-x: auto; border: 0.5px solid var(--border); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead th { background: var(--surface); padding: 12px 16px; text-align: left; font-size: 11px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-2); border-bottom: 0.5px solid var(--border); white-space: nowrap; }
tbody tr { border-bottom: 0.5px solid var(--border); transition: background 0.1s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--surface); }
td { padding: 11px 16px; color: var(--text-2); }
td:first-child { color: var(--text); font-weight: 500; }
td .btn-view-cabs { width: auto; display: inline-block; padding: 5px 12px; }

/* TOURS */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.tour-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.15s; }
.tour-card:hover { border-color: var(--border-md); }
.tour-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.tour-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); }
.tour-price { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.tour-meta { font-size: 12px; color: var(--text-3); display: flex; flex-direction: column; gap: 4px; }
.tour-places { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.tour-places strong { color: var(--text); font-weight: 500; }

/* PLACES */
.places-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.places-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; }
.places-card h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 0.5px solid var(--border); }
.places-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.places-list li { font-size: 13px; color: var(--text-2); display: flex; flex-direction: column; gap: 2px; }
.places-list li strong { font-weight: 500; color: var(--text); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
details { border-bottom: 0.5px solid var(--border); }
details:last-child { border-bottom: none; }
summary { padding: 18px 24px; font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background 0.12s; }
summary:hover { background: var(--surface); }
summary::after { content: '+'; font-size: 18px; color: var(--text-3); flex-shrink: 0; }
details[open] summary::after { content: '−'; color: var(--accent); }
.faq-body { padding: 0 24px 18px; font-size: 14px; color: var(--text-2); line-height: 1.7; }
.faq-body ul { margin-top: 8px; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }

/* LINKS */
.links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.link-item { font-size: 13px; color: var(--text-2); padding: 8px 12px; border-radius: var(--radius-sm); border: 0.5px solid var(--border); transition: border-color 0.12s, color 0.12s, background 0.12s; }
.link-item:hover { color: var(--accent); border-color: rgba(200,240,96,0.25); background: rgba(200,240,96,0.04); }

/* HELP BANNER */
.help-banner { background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--radius-xl); padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.help-text h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.help-text p { font-size: 14px; color: var(--text-2); max-width: 420px; }
.help-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* PROSE */
.prose { font-size: 15px; color: var(--text-2); line-height: 1.8; max-width: 800px; }
.prose p { margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 500; }

/* RENTAL NOTE */
.rental-note { font-size: 12px; color: var(--text-3); margin-top: 14px; }

/* FOOTER */
footer { background: var(--bg2); border-top: 0.5px solid var(--border); padding: 30px 5%; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--accent); }
.footer-contact { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-contact a { font-size: 13px; color: var(--text-2); padding: 8px 16px; border: 0.5px solid var(--border); border-radius: var(--radius-md); transition: border-color 0.12s, color 0.12s; }
.footer-contact a:hover { color: var(--text); border-color: var(--border-md); }

/* ══════════════════════════════
   BOOKING MODAL
══════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--bg2);
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 720px;
  padding: 40px;
  position: relative;
  animation: modalIn 0.22s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }

.modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  color: var(--text-2);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.12s, color 0.12s;
}
.modal-close:hover { background: var(--surface2); color: var(--text); }

.modal-heading { text-align: center; margin-bottom: 28px; }
.modal-heading h2 { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.modal-heading h5 { font-size: 13px; color: var(--text-2); font-weight: 400; }
.modal-heading h5 a { color: var(--accent); }
.modal-heading p { font-size: 13px; color: var(--text-3); margin-top: 8px; line-height: 1.6; max-width: 480px; margin-left: auto; margin-right: auto; }

/* FORM GRID */
.form-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-2); }

.form-input, .form-select {
  background: var(--surface);
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus, .form-select:focus { border-color: rgba(200,240,96,0.5); background: var(--surface2); }
.form-input:disabled { opacity: 0.6; cursor: not-allowed; }

.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a5955' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer; }
.form-select option { background: #1f2321; color: var(--text); }

/* Price field special */
.price-field { position: relative; }
.price-field .currency { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-3); font-size: 14px; pointer-events: none; }
.price-field .form-input { padding-left: 26px; }
.price-field.has-price .form-input { color: var(--accent); font-weight: 600; border-color: rgba(200,240,96,0.3); }

/* Price loading */
.price-spinner { display: none; width: 14px; height: 14px; border: 2px solid var(--border-md); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.6s linear infinite; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }
.price-spinner.active { display: block; }
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* Submit */
.form-submit-row { text-align: center; margin-top: 6px; }
.btn-book-submit {
  background: var(--accent);
  color: #0d0f0e;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 48px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.01em;
}
.btn-book-submit:hover { background: var(--accent-dark); }
.btn-book-submit:active { transform: scale(0.99); }
.btn-book-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Status message */
.form-status {
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: none;
}
.form-status.info { display: block; background: rgba(200,240,96,0.08); color: var(--accent); border: 0.5px solid rgba(200,240,96,0.2); }
.form-status.success { display: block; background: rgba(74,222,128,0.08); color: #4ade80; border: 0.5px solid rgba(74,222,128,0.2); }
.form-status.error { display: block; background: rgba(248,113,113,0.08); color: #f87171; border: 0.5px solid rgba(248,113,113,0.2); }

/* Autocomplete dropdown */
.autocomplete-wrap { position: relative; }
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--surface2);
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius-md);
  z-index: 200;
  max-height: 180px;
  overflow-y: auto;
  display: none;
}
.autocomplete-dropdown.open { display: block; }
.autocomplete-item { padding: 9px 14px; font-size: 13px; color: var(--text-2); cursor: pointer; transition: background 0.1s, color 0.1s; }
.autocomplete-item:hover, .autocomplete-item.active { background: var(--surface); color: var(--text); }

@media (max-width: 640px) {
  nav { padding: 14px 4%; }
  .nav-links { display: none; }
  section { padding: 48px 4%; }
  .help-banner { padding: 24px; }
  .hero { padding: 48px 4% 40px; }
  .modal-box { padding: 24px 20px; }
  .form-grid, .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
}