:root {
  --bg: #0b1020;
  --surface: #ffffff;
  --ink: #14182b;
  --muted: #6b7280;
  --line: #e7e9f0;
  --brand: #ff5a5f;
  --brand-dark: #e84b50;
  --accent: #1fb6a6;
  --gold: #f5a623;
  --radius: 18px;
  --shadow: 0 18px 50px -20px rgba(20, 24, 43, 0.35);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #f7f8fc;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: none; cursor: pointer; font-weight: 600;
  font-family: inherit; font-size: 0.95rem; padding: 12px 20px;
  border-radius: 999px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 10px 24px -10px var(--brand); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(20,24,43,.06); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(20,24,43,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; }
.brand-mark { color: var(--brand); font-size: 1.3rem; }
.brand-name { font-size: 1.15rem; letter-spacing: -.02em; }
.brand-name span { color: var(--brand); }
.nav { display: flex; gap: 28px; }
.nav a { color: var(--muted); font-weight: 600; font-size: .95rem; transition: color .15s; }
.nav a:hover { color: var(--ink); }
.header-actions { display: flex; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

/* Hero */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,16,32,.35), rgba(11,16,32,.75)),
    url("https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=format&fit=crop&w=1600&q=70") center/cover;
  transform: scale(1.05);
}
.hero-content { position: relative; padding: 92px 22px 120px; }
.eyebrow {
  display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; }
.hero h1 em { color: #ffd5d6; font-style: italic; }
.hero-sub { margin: 18px 0 30px; font-size: 1.08rem; max-width: 560px; color: rgba(255,255,255,.9); }

/* Search bar */
.search-bar {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 10px;
  background: #fff; padding: 12px; border-radius: var(--radius);
  box-shadow: var(--shadow); max-width: 880px;
}
.search-field { display: flex; flex-direction: column; text-align: left; padding: 6px 12px; border-radius: 12px; }
.search-field + .search-field { border-left: 1px solid var(--line); }
.search-field label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.search-field input, .search-field select {
  border: none; outline: none; font-family: inherit; font-size: 1rem; font-weight: 600;
  color: var(--ink); background: transparent; padding: 4px 0; width: 100%;
}
.search-btn { align-self: stretch; }

.hero-stats { display: flex; gap: 38px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats strong { display: block; font-size: 1.5rem; }
.hero-stats span { font-size: .85rem; color: rgba(255,255,255,.8); }

/* Categories */
.categories { margin-top: -36px; position: relative; z-index: 5; }
.chip-row { display: flex; gap: 12px; overflow-x: auto; padding: 6px 2px 4px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); padding: 11px 18px; border-radius: 999px;
  font-weight: 600; font-size: .92rem; cursor: pointer; transition: all .15s ease; box-shadow: var(--shadow);
}
.chip:hover { transform: translateY(-2px); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Section head */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin: 54px 0 22px; flex-wrap: wrap; }
.section-head h2 { font-size: 1.9rem; letter-spacing: -.02em; }
.sort-wrap { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); }
.sort-wrap select { font-family: inherit; font-weight: 600; padding: 9px 12px; border-radius: 10px; border: 1px solid var(--line); background: #fff; cursor: pointer; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); cursor: pointer; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.07); }
.card-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #4a3000; font-weight: 700; font-size: .72rem; padding: 5px 10px; border-radius: 999px; }
.card-fav { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,.92); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1rem; }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-dest { font-size: .82rem; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.card-title { font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; }
.card-meta { display: flex; gap: 12px; font-size: .82rem; color: var(--muted); flex-wrap: wrap; }
.card-rating { color: var(--ink); font-weight: 700; }
.card-rating .star { color: var(--gold); }
.card-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; padding-top: 8px; }
.price-now { font-size: 1.35rem; font-weight: 800; }
.price-old { font-size: .85rem; color: var(--muted); text-decoration: line-through; margin-left: 6px; }
.price-unit { font-size: .72rem; color: var(--muted); display: block; }
.card-cta { font-size: .85rem; font-weight: 700; color: var(--brand); }
.empty-state { text-align: center; color: var(--muted); padding: 50px 0; }

/* Why */
.why { padding: 80px 0; }
.why h2 { font-size: 1.9rem; margin-bottom: 38px; letter-spacing: -.02em; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.why-icon { font-size: 1.8rem; }
.why-card h3 { margin: 12px 0 6px; font-size: 1.15rem; }
.why-card p { color: var(--muted); font-size: .94rem; }

/* CTA */
.cta { padding: 70px 0; background: linear-gradient(135deg, #14182b, #232a4d); color: #fff; }
.cta-inner { text-align: center; max-width: 640px; }
.cta h2 { font-size: 2rem; letter-spacing: -.02em; }
.cta p { color: rgba(255,255,255,.8); margin: 12px 0 26px; }
.cta-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cta-form input { flex: 1; min-width: 200px; padding: 13px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: #fff; font-family: inherit; font-size: .95rem; }
.cta-form input::placeholder { color: rgba(255,255,255,.6); }
.cta-note { margin-top: 16px; color: #9ff5e8; font-weight: 600; }

/* Footer */
.site-footer { background: #0b1020; color: #c9cde0; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid h4 { color: #fff; margin-bottom: 14px; font-size: .95rem; }
.footer-grid a { display: block; color: #c9cde0; font-size: .9rem; padding: 4px 0; }
.footer-grid a:hover { color: #fff; }
.footer-grid .brand-name { color: #fff; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: #8a90ad; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11,16,32,.6); backdrop-filter: blur(3px); }
.modal-card { position: relative; background: #fff; border-radius: 22px; max-width: 620px; width: 100%; max-height: 90vh; overflow: auto; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; background: rgba(255,255,255,.9); border: none; width: 38px; height: 38px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; }
.modal-hero { aspect-ratio: 16/9; overflow: hidden; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { padding: 24px 26px 28px; }
.modal-content h3 { font-size: 1.6rem; letter-spacing: -.02em; }
.modal-dest { color: var(--muted); font-weight: 600; margin: 4px 0 14px; }
.modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.modal-tag { background: #f0f2f8; padding: 5px 12px; border-radius: 999px; font-size: .8rem; font-weight: 600; }
.modal-hl { list-style: none; display: grid; gap: 10px; margin: 8px 0 22px; }
.modal-hl li { display: flex; gap: 10px; align-items: flex-start; }
.modal-hl li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.modal-price-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }

/* Responsive */
@media (max-width: 860px) {
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-field:nth-child(1) { grid-column: 1 / -1; }
  .search-field + .search-field { border-left: none; }
  .search-btn { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .search-bar { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* ============ Multi-page portal additions ============ */

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted); padding: 22px 0 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { opacity: .5; }

/* Make whole card a link */
a.card { color: inherit; }

/* ---- Search page ---- */
.search-page { padding-bottom: 60px; }
.search-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filters { position: sticky; top: 88px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.filters h3 { margin-bottom: 14px; }
.fl { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 14px 0 5px; }
.fl-input { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: .95rem; font-weight: 500; background: #fff; }
.fl-btn { width: 100%; margin-top: 18px; }
.fl-reset { display: block; text-align: center; margin-top: 10px; font-size: .85rem; color: var(--muted); font-weight: 600; }
.results .section-head { margin-top: 6px; }

/* ---- Detail page ---- */
.detail { padding-bottom: 70px; }
.detail-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; flex-wrap: wrap; margin: 6px 0 18px; }
.detail-head h1 { font-size: 2.2rem; letter-spacing: -.03em; }
.detail-sub { color: var(--muted); margin-top: 8px; font-weight: 600; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; margin-bottom: 30px; }
.gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-side { display: grid; grid-template-rows: repeat(3, 1fr); gap: 12px; }
.gallery-side img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; aspect-ratio: 16/9; }

.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.detail-main h2 { font-size: 1.4rem; margin: 28px 0 12px; letter-spacing: -.02em; }
.detail-main h2:first-child { margin-top: 0; }
.detail-main .lead { font-size: 1.05rem; color: #333a52; }

.itinerary { list-style: none; display: grid; gap: 0; border-left: 2px solid var(--line); margin-left: 6px; }
.itinerary li { display: grid; grid-template-columns: 76px 1fr; gap: 14px; padding: 0 0 22px 18px; position: relative; }
.itinerary li::before { content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); border: 2px solid #fff; }
.day-no { font-weight: 800; color: var(--brand); font-size: .9rem; }
.itinerary p { color: var(--muted); font-size: .94rem; margin-top: 2px; }

.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.incl-grid h3 { font-size: 1.05rem; margin-bottom: 10px; }
.incl, .excl { list-style: none; display: grid; gap: 8px; }
.incl li, .excl li { padding-left: 22px; position: relative; font-size: .92rem; color: #333a52; }
.incl li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.excl li::before { content: "✕"; position: absolute; left: 0; color: #c2354a; font-weight: 800; }

/* Booking box (sticky) */
.book-box { position: sticky; top: 88px; }
.book-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.book-price { display: flex; align-items: baseline; gap: 8px; }
.book-feats { list-style: none; display: grid; gap: 10px; margin: 16px 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: .92rem; color: #333a52; }
.book-btn { width: 100%; margin-top: 8px; }

.related { margin-top: 56px; }
.related h2 { font-size: 1.6rem; margin-bottom: 20px; letter-spacing: -.02em; }

/* ---- Booking page ---- */
.booking-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; padding-bottom: 70px; }
.booking-form-wrap h1 { font-size: 2rem; letter-spacing: -.02em; }
.booking-form { margin-top: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.booking-form h3 { margin: 22px 0 12px; font-size: 1.1rem; }
.booking-form h3:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 14px; }
.form-field label { font-size: .8rem; font-weight: 700; color: var(--muted); margin-bottom: 5px; }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: .95rem; background: #fff; resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--brand); border-color: transparent; }
.booking-submit { width: 100%; margin-top: 10px; }

.summary-card .summary-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; margin-bottom: 14px; }
.summary-line { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--line); font-size: .92rem; }
.summary-line.total { font-weight: 800; font-size: 1.05rem; }

/* ---- Confirmation page ---- */
.confirm { padding: 50px 0 80px; display: flex; justify-content: center; }
.confirm-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 40px; max-width: 600px; width: 100%; text-align: center; box-shadow: var(--shadow); }
.confirm-check { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.confirm-card h1 { font-size: 1.7rem; letter-spacing: -.02em; }
.confirm-ref { margin: 20px 0; background: #f0f2f8; border-radius: 12px; padding: 12px; font-size: .95rem; }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-align: left; margin: 8px 0 18px; }
.confirm-grid > div { background: #fff; padding: 13px 16px; }
.confirm-grid span { display: block; font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.confirm-grid strong { font-size: .98rem; }
.confirm-total { grid-column: 1 / -1; background: #fff8f0 !important; }
.confirm-notes { text-align: left; background: #f0f2f8; border-radius: 12px; padding: 12px 16px; font-size: .9rem; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }

/* Responsive for new pages */
@media (max-width: 900px) {
  .search-layout, .detail-layout, .booking-layout { grid-template-columns: 1fr; }
  .filters, .book-box { position: static; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-side { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .form-row, .incl-grid, .confirm-grid { grid-template-columns: 1fr; }
}

/* Pagination */
.pager { display: flex; gap: 6px; justify-content: center; align-items: center; margin: 38px 0 10px; flex-wrap: wrap; }
.pager-btn { min-width: 40px; text-align: center; padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font-weight: 600; font-size: .9rem; color: var(--ink); }
.pager-btn:hover { border-color: var(--ink); }
.pager-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager-gap { color: var(--muted); padding: 0 2px; }

/* ============ Search: 3-up grid + list view ============ */

/* Force three smaller cards per row on search */
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .card-grid.cols-3 { grid-template-columns: 1fr; } }

/* Results control bar (view toggle + sort) */
.results-controls { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.view-toggle { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.vt-btn { display: inline-flex; align-items: center; gap: 6px; border: none; background: transparent; cursor: pointer; font-family: inherit; font-weight: 600; font-size: .88rem; color: var(--muted); padding: 9px 14px; }
.vt-btn span { font-size: 1rem; line-height: 1; }
.vt-btn + .vt-btn { border-left: 1px solid var(--line); }
.vt-btn.active { background: var(--ink); color: #fff; }

/* List view — same cards, horizontal layout */
.card-grid.list-view { grid-template-columns: 1fr; gap: 14px; }
.card-grid.list-view .card { flex-direction: row; align-items: stretch; }
.card-grid.list-view .card-media { width: 300px; flex: 0 0 300px; aspect-ratio: auto; }
.card-grid.list-view .card-body { padding: 18px 22px; }
.card-grid.list-view .card-title { font-size: 1.3rem; }
.card-grid.list-view .card-foot { padding-top: 14px; }
@media (max-width: 620px) {
  .card-grid.list-view .card { flex-direction: column; }
  .card-grid.list-view .card-media { width: 100%; flex: none; aspect-ratio: 16/11; }
}

/* List view: uniform fixed card height */
.card-grid.list-view .card { height: 210px; }
.card-grid.list-view .card-media { height: 100%; aspect-ratio: auto; }
.card-grid.list-view .card-media img { height: 100%; width: 100%; object-fit: cover; }
.card-grid.list-view .card-body { overflow: hidden; }
@media (max-width: 620px) {
  .card-grid.list-view .card { height: auto; }
  .card-grid.list-view .card-media { height: 200px; }
}

/* ============ Cabs & transfers page ============ */
.transfers-hero { background: linear-gradient(135deg, #14182b, #232a4d); color: #fff; padding: 56px 0 44px; }
.transfers-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -.03em; }
.transfers-hero h1 em { color: #ffd5d6; font-style: italic; }
.transfers-hero .muted { color: rgba(255,255,255,.85); max-width: 640px; margin-top: 12px; }
.transfers-hero .muted strong { color: #fff; }

.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-bottom: 20px; }
@media (max-width: 1024px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .vehicle-grid { grid-template-columns: 1fr; } }

.vehicle-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vehicle-banner { position: relative; height: 120px; display: flex; align-items: center; justify-content: center; }
.vehicle-emoji { font-size: 3.4rem; line-height: 1; filter: drop-shadow(0 6px 10px rgba(0,0,0,.12)); }
.vehicle-banner.dark .vehicle-emoji { filter: drop-shadow(0 6px 10px rgba(0,0,0,.4)); }
.vehicle-class { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.9); color: var(--ink); font-weight: 700; font-size: .72rem; padding: 5px 10px; border-radius: 999px; }
.vehicle-banner.dark .vehicle-class { background: rgba(255,255,255,.18); color: #fff; }
.vehicle-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.vehicle-body h3 { font-size: 1.2rem; letter-spacing: -.01em; }
.vehicle-models { color: var(--muted); font-size: .85rem; font-weight: 600; margin-top: -2px; }
.vehicle-specs { display: flex; gap: 14px; font-size: .88rem; color: #333a52; font-weight: 600; }
.vehicle-feats { display: flex; gap: 6px; flex-wrap: wrap; }
.vehicle-chip { background: #f0f2f8; color: #333a52; font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.vehicle-ideal { font-size: .85rem; color: var(--muted); }
.vehicle-foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.vehicle-foot .price-now { font-size: 1.3rem; }
.vehicle-btn { padding: 9px 18px; }

.transfer-enquiry { padding: 30px 0 70px; }
.enquiry-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; max-width: 760px; margin: 0 auto; box-shadow: var(--shadow); }
.enquiry-card h2 { letter-spacing: -.02em; }
.enquiry-form { margin-top: 18px; }

/* Cabs: real vehicle photos */
.vehicle-banner { height: 170px; overflow: hidden; background: #eef0f6; }
.vehicle-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.vehicle-card:hover .vehicle-photo { transform: scale(1.06); }
.vehicle-class { z-index: 2; }

/* ===== Gallery — every image is a clean 16:9; columns sized so the right stack matches the left ===== */
.gallery { grid-template-columns: 3.15fr 1fr; align-items: start; height: auto; }
.gallery-main { aspect-ratio: 16/9; height: auto; border-radius: var(--radius); overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-side { grid-template-rows: repeat(3, auto); height: auto; }
.gallery-side img { aspect-ratio: 16/9; width: 100%; height: auto; object-fit: cover; border-radius: 12px; }
.gallery-side .vehicle-fact { aspect-ratio: 16/9; min-height: 0; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery-main { aspect-ratio: 16/9; }
  .gallery-side { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); }
  .gallery-side img, .gallery-side .vehicle-fact { aspect-ratio: 16/9; }
}

/* ===== Vehicle detail page ===== */
a.vehicle-card { color: inherit; }
.vehicle-fact { background: #fff; border: 1px solid var(--line); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; }
.vf-num { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.vf-lbl { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.policy-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 6px; }
.policy-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.policy-item strong { display: block; margin-bottom: 4px; font-size: .98rem; }
.policy-item p { color: var(--muted); font-size: .9rem; }
@media (max-width: 560px) { .policy-list { grid-template-columns: 1fr; } }

.gallery-side .vehicle-fact { min-height: 0; }

/* ===== Cabs fare model ===== */
.fare-policy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0 8px; }
.fp-item { display: flex; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.fp-ic { font-size: 1.5rem; line-height: 1; }
.fp-item strong { display: block; font-size: .98rem; margin-bottom: 3px; }
.fp-item p { color: var(--muted); font-size: .85rem; }
@media (max-width: 860px) { .fare-policy { grid-template-columns: 1fr; } }

.fare-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: 6px; }
.fare-table td { padding: 11px 16px; border-top: 1px solid var(--line); font-size: .92rem; }
.fare-table tr:first-child td { border-top: none; }
.fare-table td:first-child { color: var(--muted); }
.fare-table td:last-child { text-align: right; font-weight: 600; }
.fare-table tr.fare-sep td { background: #f7f8fc; font-weight: 700; color: var(--ink); }
.fare-table tr.fare-sep td:last-child { color: var(--muted); font-weight: 600; }

/* ===== Website autocomplete dropdown ===== */
.ac-list { position: fixed; z-index: 200; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; max-height: 300px; overflow-y: auto; }
.ac-list[hidden] { display: none; }
.ac-item { padding: 11px 14px; font-size: .92rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; gap: 7px; align-items: center; }
.ac-item span { opacity: .6; }
.ac-item:hover, .ac-item.active { background: #f0f2f8; }

/* ===== Place page: good-to-know facts + attractions ===== */
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 8px 0 6px; }
.facts-grid > div { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.facts-grid span { display: block; font-size: .78rem; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.facts-grid strong { font-size: 1rem; letter-spacing: -.01em; }
.attractions { display: flex; flex-wrap: wrap; gap: 9px; }
.attraction { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: .9rem; font-weight: 600; }
@media (max-width: 620px) { .facts-grid { grid-template-columns: 1fr; } }

/* ===== Visa & Flights pages ===== */
.svc-hero { background: linear-gradient(135deg, #14182b, #232a4d); color: #fff; padding: 56px 0 44px; }
.svc-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -.03em; }
.svc-hero h1 em { color: #ffd5d6; font-style: italic; }
.svc-hero .muted { color: rgba(255,255,255,.85); max-width: 640px; margin-top: 12px; }

.visa-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.visa-table th, .visa-table td { padding: 13px 16px; text-align: left; font-size: .92rem; border-top: 1px solid var(--line); }
.visa-table th { background: #f7f8fc; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); border-top: none; }
.visa-table td:first-child { font-weight: 700; }
.visa-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .76rem; font-weight: 700; }
.visa-evisa { background: #e6f7f4; color: #0c7c6e; }
.visa-voa { background: #fef3c7; color: #92600a; }
.visa-sticker { background: #eef0ff; color: #3d44b8; }
.visa-table-wrap { overflow-x: auto; }

.route-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.route-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.route-card .r-path { font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.route-card .r-path span { color: var(--brand); }
.route-card .r-fare { margin-top: 8px; }
.route-card .r-fare b { font-size: 1.25rem; }

.svc-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; max-width: 820px; box-shadow: var(--shadow); }
.svc-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
.svc-trust .t-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.svc-trust .t-ic { font-size: 1.5rem; }
.svc-trust h4 { margin: 8px 0 4px; font-size: 1rem; }
.svc-trust p { color: var(--muted); font-size: .85rem; }
@media (max-width: 860px) { .svc-trust { grid-template-columns: 1fr 1fr; } }

/* ===== Attraction tabs + detail ===== */
.see-all-link { font-size: .8rem; font-weight: 700; color: var(--brand); margin-left: 8px; }
.tabs { margin-top: 18px; }
.tab-menu { display: flex; gap: 4px; overflow-x: auto; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.tab-btn { padding: 12px 16px; border: none; background: none; font-family: inherit; font-weight: 700; font-size: .95rem; color: var(--muted); cursor: pointer; white-space: nowrap; border-bottom: 2px solid transparent; transition: color .15s; }
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--ink); border-bottom-color: var(--brand); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.attr-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: start; }
.attr-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/11; }
.attr-media img { width: 100%; height: 100%; object-fit: cover; }
.attr-body h2 { font-size: 1.6rem; letter-spacing: -.02em; margin-bottom: 10px; }
.attr-body .lead { color: #333a52; }
.attr-body .facts-grid { margin: 18px 0 0; }
.attr-tip { margin-top: 16px; background: #fff8f0; border: 1px solid #f6e0c5; border-radius: 12px; padding: 14px 16px; font-size: .92rem; }
@media (max-width: 860px) { .attr-layout { grid-template-columns: 1fr; } }

/* ===== Day-by-day itinerary (day selector + per-day segments) ===== */
.itin { display: grid; grid-template-columns: 210px 1fr; gap: 22px; align-items: start; margin-top: 8px; }
.itin-days { display: flex; flex-direction: column; gap: 8px; }
.itin-day { text-align: left; border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 12px 14px; cursor: pointer; font-family: inherit; display: flex; flex-direction: column; gap: 2px; transition: all .15s ease; }
.itin-day:hover { border-color: var(--ink); }
.itin-daynum { font-weight: 800; font-size: .95rem; }
.itin-daytitle { font-size: .76rem; color: var(--muted); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 178px; }
.itin-day.active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 10px 24px -12px var(--brand); }
.itin-day.active .itin-daytitle { color: rgba(255,255,255,.85); }
.itin-h { font-size: 1.2rem; margin-bottom: 14px; letter-spacing: -.01em; }
.itin-row { display: grid; grid-template-columns: 132px 96px 1fr; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; }
.itin-cat { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.itin-ic { width: 36px; height: 36px; border-radius: 50%; background: #f0f2f8; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.itin-thumb { width: 96px; height: 68px; object-fit: cover; border-radius: 8px; }
.itin-text { font-size: .92rem; color: #333a52; }
@media (max-width: 860px) {
  .itin { grid-template-columns: 1fr; }
  .itin-days { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .itin-day { min-width: 130px; }
}
@media (max-width: 560px) {
  .itin-row { grid-template-columns: 1fr; }
  .itin-thumb { width: 100%; height: 150px; }
}

/* ===== WhatsApp: floating button + buttons/links ===== */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); z-index: 300; transition: transform .15s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; position: relative; z-index: 2; }
.wa-float-pulse { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: waPulse 2.2s ease-out infinite; z-index: 1; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .6; } 70%, 100% { transform: scale(1.8); opacity: 0; } }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; color: #fff; }
.wa-link { font-size: .88rem; padding: 9px 14px; }
@media (max-width: 480px) { .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; } }

/* ===== Visa detail: step-by-step process timeline ===== */
.vd-steps { list-style: none; counter-reset: vd; display: grid; gap: 0; border-left: 2px solid var(--line); margin: 8px 0 4px 8px; }
.vd-steps li { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 0 0 20px 18px; align-items: start; }
.vd-no { width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center; position: absolute; left: -16px; top: 0; border: 3px solid #f7f8fc; }
.vd-steps p { color: #333a52; font-size: .95rem; padding-left: 18px; }
.visa-table td a { color: inherit; font-weight: 700; }
.visa-table td a:hover { color: var(--brand); }

/* ===== Visa detail — redesigned (hero, stat cards, timeline, ribbon) ===== */
.vd-hero { background: linear-gradient(120deg, #14182b 35%, var(--vd)); color: #fff; padding: 40px 0; }
.vd-bc, .vd-bc a { color: rgba(255,255,255,.8); }
.vd-hero-row { display: flex; align-items: center; gap: 20px; margin-top: 14px; }
.vd-flag { font-size: 2.8rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.28); width: 84px; height: 84px; border-radius: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vd-hero h1 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: -.02em; line-height: 1.15; }
.vd-hero h1 span { font-weight: 600; color: rgba(255,255,255,.82); font-size: .62em; display: block; }
.vd-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.vd-pill { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.28); padding: 6px 12px; border-radius: 999px; font-size: .85rem; font-weight: 600; }
.vd-pill-type { background: #fff; color: var(--vd); border-color: #fff; }

.vd-body { padding: 36px 0 70px; }
.vd-layout { display: grid; grid-template-columns: 1fr 320px; gap: 34px; align-items: start; }
.vd-h { font-size: 1.4rem; letter-spacing: -.02em; margin: 28px 0 14px; padding-left: 12px; border-left: 4px solid var(--vd); }
.vd-main > .vd-h:first-child { margin-top: 0; }

.vd-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.vd-stat { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 15px; display: flex; gap: 12px; align-items: center; }
.vd-ic { width: 42px; height: 42px; border-radius: 12px; background: #eef0f6; background: color-mix(in srgb, var(--vd) 14%, #fff); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.vd-stat small { display: block; color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.vd-stat strong { font-size: .98rem; }

.vd-doc-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.vd-doc-head { background: #f3f5fb; padding: 14px 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); }
.vd-docs { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; padding: 16px 18px; }
.vd-docs li { position: relative; padding-left: 27px; font-size: .92rem; color: #333a52; }
.vd-docs li::before { content: '✓'; position: absolute; left: 0; top: 1px; color: #fff; background: var(--vd); width: 18px; height: 18px; border-radius: 50%; font-size: .68rem; display: flex; align-items: center; justify-content: center; font-weight: 800; }
@media (max-width: 560px) { .vd-docs { grid-template-columns: 1fr; } }

.vd-timeline { position: relative; }
.vd-timeline::before { content: ''; position: absolute; left: 22px; top: 22px; bottom: 22px; width: 2px; background: #e0e3ee; }
.vd-tl-item { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; padding-bottom: 14px; position: relative; }
.vd-tl-node { width: 46px; height: 46px; border-radius: 50%; background: var(--vd); color: #fff; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px -6px var(--vd); border: 3px solid #fff; position: relative; z-index: 2; }
.vd-tl-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 13px 18px; }
.vd-tl-card h4 { font-size: 1.04rem; margin-bottom: 2px; letter-spacing: -.01em; }
.vd-tl-card p { color: var(--muted); font-size: .92rem; }

.vd-note { margin-top: 22px; background: #f7f8fc; border: 1px solid var(--line); border-left: 4px solid var(--vd); border-radius: 12px; padding: 16px 18px; }
.vd-note strong { display: block; margin-bottom: 4px; }
.vd-note p { color: #333a52; font-size: .92rem; }

.vd-side { position: sticky; top: 88px; }
.vd-price { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.vd-ribbon { position: absolute; top: 18px; right: -36px; transform: rotate(45deg); background: var(--vd); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .05em; padding: 6px 42px; box-shadow: 0 4px 10px -3px rgba(0,0,0,.3); }
.vd-price-label { color: var(--muted); font-size: .82rem; font-weight: 600; }
.vd-price-amt { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; margin: 2px 0 14px; }
.vd-feats { list-style: none; display: grid; gap: 9px; padding-top: 14px; border-top: 1px solid var(--line); margin-bottom: 16px; }
.vd-feats li { position: relative; padding-left: 24px; font-size: .9rem; color: #333a52; }
.vd-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--vd); font-weight: 800; }
.vd-btn { width: 100%; margin-bottom: 8px; }
.vd-help { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 6px; }
@media (max-width: 900px) { .vd-layout { grid-template-columns: 1fr; } .vd-side { position: static; } .vd-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vd-cards { grid-template-columns: 1fr; } }

/* ===== Visa card on international package pages ===== */
.pkg-visa { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 4px; }
.pkg-visa-head { display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: linear-gradient(120deg, #14182b, var(--vd)); color: #fff; }
.pkg-visa-head .pv-flag { font-size: 1.7rem; }
.pkg-visa-head .pv-badge { margin-left: auto; background: #fff; color: var(--vd); padding: 4px 12px; border-radius: 999px; font-size: .76rem; font-weight: 800; white-space: nowrap; }
.pkg-visa-body { padding: 18px; }
.pv-facts { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.pv-fact { background: #f3f5fb; border: 1px solid var(--line); border-radius: 10px; padding: 8px 13px; font-size: .9rem; font-weight: 600; }
.pv-fact b { display: block; font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; margin-bottom: 1px; }
.pv-actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 560px) { .pkg-visa-head .pv-badge { display: none; } .pv-actions .btn { width: 100%; } }

/* ===== Trip highlights — elegant cards ===== */
.pkg-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 6px; }
.hl-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; position: relative; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.hl-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--brand), var(--gold)); }
.hl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.hl-ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: linear-gradient(135deg, #fff0f0, #ffe7cf); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: inset 0 0 0 1px rgba(255,90,95,.12); }
.hl-text { font-weight: 700; font-size: 1rem; letter-spacing: -.01em; color: var(--ink); }
@media (max-width: 560px) { .pkg-highlights { grid-template-columns: 1fr; } }

/* ===== Hotels ===== */
.hotel-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; color: inherit; }
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hotel-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.hotel-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hotel-card:hover .hotel-media img { transform: scale(1.07); }
.hotel-star { position: absolute; top: 12px; left: 12px; background: rgba(20,24,43,.85); color: #ffd86b; font-weight: 800; font-size: .74rem; padding: 5px 11px; border-radius: 999px; letter-spacing: .02em; }
.hotel-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.hotel-loc { font-size: .8rem; color: var(--muted); font-weight: 600; }
.hotel-name { font-size: 1.12rem; font-weight: 700; letter-spacing: -.01em; }
.hotel-rating { font-size: .85rem; font-weight: 700; }
.hotel-rating .star { color: var(--gold); }
.hotel-amen { display: flex; flex-wrap: wrap; gap: 6px; }
.hotel-chip { background: #f0f2f8; border-radius: 999px; padding: 3px 9px; font-size: .73rem; font-weight: 600; color: #333a52; }
.hotel-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; padding-top: 8px; }

.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.amen-item { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; font-size: .9rem; font-weight: 600; }
.amen-ic { font-size: 1.1rem; }
@media (max-width: 560px) { .amen-grid { grid-template-columns: 1fr 1fr; } }

.room-list { display: grid; gap: 10px; }
.room-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; flex-wrap: wrap; }
.room-row strong { display: block; }
.room-row .muted { font-size: .8rem; }
.room-price { font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; gap: 12px; }
.room-btn { padding: 8px 14px; font-size: .85rem; }

/* ===== Hero background images (related per page) ===== */
.transfers-hero {
  background-image: linear-gradient(120deg, rgba(20,24,43,.86) 35%, rgba(20,24,43,.55)),
    url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1600&q=70");
  background-size: cover; background-position: center;
}
.svc-flights {
  background-image: linear-gradient(120deg, rgba(20,24,43,.82) 35%, rgba(20,24,43,.45)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=70");
  background-size: cover; background-position: center;
}
.svc-visa {
  background-image: linear-gradient(120deg, rgba(20,24,43,.85) 35%, rgba(20,24,43,.5)),
    url("https://images.unsplash.com/photo-1452421822248-d4c2b47f0c81?auto=format&fit=crop&w=1600&q=70");
  background-size: cover; background-position: center;
}
.svc-hotels {
  background-image: linear-gradient(120deg, rgba(20,24,43,.8) 35%, rgba(20,24,43,.45)),
    url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1600&q=70");
  background-size: cover; background-position: center;
}

/* ===== Flight search (MMT/Goibibo style) ===== */
.flt-search-wrap { margin-top: -34px; position: relative; z-index: 5; }
.flt-search { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; }
.flt-trip { display: flex; gap: 8px; margin-bottom: 12px; }
.flt-radio { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--muted); padding: 6px 14px; border-radius: 999px; cursor: pointer; border: 1px solid var(--line); }
.flt-radio.active { color: var(--brand); border-color: var(--brand); background: #fff0f0; }
.flt-radio input { accent-color: var(--brand); }
.flt-fields { display: grid; grid-template-columns: 1.3fr 1.3fr 1fr 1fr .9fr 1.1fr auto; gap: 8px; align-items: end; }
.flt-field { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 12px; padding: 8px 12px; }
.flt-field label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 2px; }
.flt-field input, .flt-field select { border: none; outline: none; font-family: inherit; font-size: .98rem; font-weight: 600; color: var(--ink); background: transparent; padding: 2px 0; width: 100%; }
.flt-search-btn { height: 100%; min-height: 52px; padding: 0 26px; font-size: 1rem; }
@media (max-width: 900px) { .flt-fields { grid-template-columns: 1fr 1fr; } .flt-search-btn { grid-column: 1 / -1; min-height: 46px; } }

/* Flight result rows */
.flt-results { display: grid; gap: 12px; margin-top: 6px; }
.flt-row { display: grid; grid-template-columns: 1.4fr 2fr auto; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; transition: box-shadow .15s ease, border-color .15s ease; }
.flt-row:hover { box-shadow: var(--shadow); border-color: transparent; }
.flt-air { display: flex; align-items: center; gap: 12px; }
.flt-logo { width: 42px; height: 42px; border-radius: 10px; color: #fff; font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flt-air strong { display: block; font-size: .98rem; }
.flt-air small { color: var(--muted); font-size: .8rem; }
.flt-seg { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; }
.flt-time { text-align: center; }
.flt-time strong { font-size: 1.25rem; letter-spacing: -.01em; }
.flt-plus { color: var(--brand); font-size: .65rem; }
.flt-time small { display: block; color: var(--muted); font-size: .8rem; font-weight: 600; }
.flt-mid { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.flt-mid small { color: var(--muted); font-size: .78rem; }
.flt-line { width: 100%; height: 2px; background: linear-gradient(90deg, var(--line), #c7ccdb, var(--line)); position: relative; }
.flt-line::after { content: '✈'; position: absolute; right: -2px; top: -9px; font-size: .8rem; color: var(--brand); }
.flt-stop.has-stop { color: var(--gold); font-weight: 700; }
.flt-book { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.flt-price { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }
.flt-btn { padding: 8px 24px; }
@media (max-width: 760px) {
  .flt-row { grid-template-columns: 1fr; gap: 12px; }
  .flt-book { flex-direction: row; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 12px; }
}

/* ===== Elegant horizontal scroller (arrow buttons, no scrollbar) ===== */
.chip-scroller { position: relative; }
.chip-scroller .chip-row { overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; padding: 6px 2px 8px; }
.chip-scroller .chip-row::-webkit-scrollbar { display: none; }
.scroll-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 12; width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 22px -8px rgba(20,24,43,.4); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; line-height: 1; color: var(--ink); transition: transform .15s ease, background .15s ease; padding-bottom: 3px; }
.scroll-arrow:hover { transform: translateY(-50%) scale(1.1); background: var(--ink); color: #fff; }
.scroll-arrow[hidden] { display: none; }
.scroll-left { left: -8px; }
.scroll-right { right: -8px; }
/* soft fade hints at the edges */
.chip-scroller::before, .chip-scroller::after { content: ""; position: absolute; top: 0; bottom: 8px; width: 46px; pointer-events: none; z-index: 6; }
.chip-scroller::before { left: 0; background: linear-gradient(90deg, #f7f8fc, transparent); }
.chip-scroller::after { right: 0; background: linear-gradient(270deg, #f7f8fc, transparent); }
@media (max-width: 600px) { .scroll-arrow { display: none; } .chip-scroller::before, .chip-scroller::after { display: none; } }

/* ===== Flight results: left filter sidebar ===== */
.flt-layout { display: grid; grid-template-columns: 250px 1fr; gap: 24px; align-items: start; }
.flt-filters { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; position: sticky; top: 88px; }
.ff-head { display: flex; align-items: center; justify-content: space-between; font-weight: 800; font-size: 1.05rem; margin-bottom: 6px; }
.ff-reset { background: none; border: none; color: var(--brand); font-weight: 700; font-size: .82rem; cursor: pointer; font-family: inherit; }
.ff-group { padding: 14px 0; border-top: 1px solid var(--line); }
.ff-group h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 10px; }
.ff-check { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 600; padding: 5px 0; cursor: pointer; color: #333a52; }
.ff-check input { accent-color: var(--brand); width: 16px; height: 16px; }
.ff-count { margin-left: auto; color: var(--muted); font-size: .8rem; font-weight: 700; }
.ff-range { width: 100%; accent-color: var(--brand); }
.ff-range-lbl { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); font-weight: 600; margin-top: 4px; }
@media (max-width: 860px) {
  .flt-layout { grid-template-columns: 1fr; }
  .flt-filters { position: static; }
}

/* ===== Home: Booking-style sections ===== */
.home-sec .section-head { margin: 44px 0 18px; }

/* Trending destinations */
.trend-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.trend-card { position: relative; border-radius: 16px; overflow: hidden; display: block; }
.trend-card.large { grid-column: span 3; aspect-ratio: 16/9; }
.trend-card.small { grid-column: span 2; aspect-ratio: 4/3; }
.trend-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.trend-card:hover img { transform: scale(1.06); }
.trend-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,16,32,.78)); }
.trend-meta { position: absolute; left: 18px; bottom: 15px; z-index: 2; color: #fff; }
.trend-meta strong { font-size: 1.35rem; display: block; letter-spacing: -.01em; }
.trend-meta span { font-size: .85rem; opacity: .92; }
@media (max-width: 760px) { .trend-card.large, .trend-card.small { grid-column: span 6; aspect-ratio: 16/9; } }

/* Browse by style */
.style-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.style-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; display: block; }
.style-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.style-card:hover img { transform: scale(1.06); }
.style-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(11,16,32,.7)); }
.style-label { position: absolute; left: 0; right: 0; bottom: 12px; text-align: center; color: #fff; font-weight: 700; font-size: 1.02rem; z-index: 2; }
@media (max-width: 900px) { .style-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }

/* Explore India */
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.explore-card { display: block; }
.explore-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; transition: transform .3s ease; }
.explore-card:hover img { transform: scale(1.04); }
.explore-meta strong { display: block; margin-top: 8px; font-size: .98rem; }
.explore-meta span { font-size: .82rem; color: var(--muted); }
@media (max-width: 760px) { .explore-grid { grid-template-columns: repeat(2, 1fr); } }

/* Popular link grid */
.pop-links { columns: 4 200px; column-gap: 26px; }
.pop-links a { display: block; padding: 7px 0; font-size: .92rem; color: #333a52; font-weight: 600; break-inside: avoid; }
.pop-links a:hover { color: var(--brand); }

/* ===== Transfers page: grouped sections ===== */
.vgroup-title { font-size: 1.3rem; letter-spacing: -.02em; margin: 36px 0 16px; padding-bottom: 9px; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 10px; }
.vgroup-title .muted { font-size: .9rem; font-weight: 600; }

/* ===== Responsive header / mobile menu drawer ===== */
.header-collapse { display: flex; flex: 1; align-items: center; justify-content: space-between; margin-left: 30px; gap: 18px; }
.nav { gap: 16px; }
.wa-full { display: none; }
.wa-short { display: inline; }

@media (max-width: 1024px) {
  .nav-toggle { display: block; z-index: 70; position: relative; }
  .header-collapse {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; margin: 0; padding: 8px 22px 20px;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 34px -22px rgba(20,24,43,.45);
    max-height: calc(100vh - 68px); overflow-y: auto;
    display: none; z-index: 60;
  }
  .site-header.menu-open .header-collapse { display: flex; }
  .nav { flex-direction: column; gap: 0; width: 100%; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.02rem; color: var(--ink); width: 100%; }
  .nav a:last-child { border-bottom: none; }
  .header-actions { flex-direction: column; gap: 10px; margin-top: 16px; width: 100%; }
  .header-actions .btn { width: 100%; justify-content: center; padding: 13px; font-size: .98rem; }
  .wa-full { display: inline; }
  .wa-short { display: none; }
}
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Blog ===== */
.blog-body p { margin-bottom: 16px; font-size: 1.06rem; line-height: 1.75; color: #2b3047; }
.blog-body p:first-child { font-size: 1.15rem; }

/* ===== Brand logo image ===== */
.brand-logo { height: 46px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 38px; } }

/* ===== Light footer (so the dark logo is visible) ===== */
.site-footer { background: #f4f6fb; color: #4a5169; border-top: 1px solid var(--line); }
.footer-grid h4 { color: var(--ink); }
.footer-grid a { color: #5b6480; }
.footer-grid a:hover { color: var(--brand); }
.footer-grid .muted { color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--line); color: var(--muted); }
.site-footer .brand-logo { height: 46px; margin-bottom: 6px; }
