/* ==========================================================================
   All Route Cabs — recreated from Figma (desktop 1440 / mobile 375 frames)
   ========================================================================== */

:root {
  --color-primary: #fbd30d;
  --color-text: #000000;
  --color-text-soft: rgba(0, 0, 0, 0.72);
  --color-white: #ffffff;
  --color-cream: #fffcee;
  --color-dark: #222222;
  --color-border: rgba(0, 0, 0, 0.16);
  --color-border-soft: rgba(255, 255, 255, 0.3);
  --shadow-card: 0px 2px 10px 0px rgba(0, 0, 0, 0.14);
  --shadow-card-soft: 0px 0px 10px 2px rgba(0, 0, 0, 0.14);
  --shadow-row-card: 0px 0px 5px rgba(0, 0, 0, 0.14);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-btn: 7px;

  --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1440px;
  --pad-desktop: 64px;
  --pad-mobile: 20px;

  /* Desktop type scale */
  --h1: 700 56px/1.2 var(--font);
  --h2: 700 48px/1.2 var(--font);
  --h3: 700 40px/1.2 var(--font);
  --h4: 700 32px/1.3 var(--font);
  --h5: 700 24px/1.4 var(--font);
  --h6: 700 20px/1.4 var(--font);
  --tagline: 600 16px/1.5 var(--font);
  --body-lg: 400 18px/1.5 var(--font);
  --body: 400 16px/1.5 var(--font);
  --small: 400 14px/1.5 var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: var(--body);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
button { font: inherit; border: none; background: none; cursor: pointer; padding: 0; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-desktop);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font: 600 16px/1.5 var(--font);
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn--primary {
  background: var(--color-primary);
  color: #000;
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(251,211,13,.45); }
.btn__wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

.eyebrow {
  display: block;
  font: var(--tagline);
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-title h2 { font: var(--h2); margin-bottom: 16px; }
.section-title p { font: var(--body-lg); color: var(--color-text-soft); max-width: 768px; }
.section-title--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.section-title--row > div:first-child { max-width: 768px; }
.section-title--center { text-align: center; margin: 0 auto 57px; max-width: 768px; }
.section-title--center .btn { margin: 40px auto 0; display: table; }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo img { height: 41px; width: auto; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar__links a {
  font: 500 16px/1.5 var(--font);
  color: rgba(0,0,0,0.88);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
.navbar__links a.active,
.navbar__links a:hover { color: var(--color-primary); }
.navbar__links .has-dropdown a i { font-size: 12px; }
.navbar__actions { display: flex; align-items: center; gap: 16px; }
.navbar__toggle { display: none; }
.icon-burger { width: 24px; height: 24px; display: block; color: var(--color-text); }
.navbar__phone-mobile { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px 0;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__content { position: relative; z-index: 1; max-width: 760px; }
/* .hero is a flex container, so the shared .container class's `margin: 0 auto`
   triggers flexbox auto-margin centering here. Override it back to left-aligned. */
.hero .container { margin: 0; }
.hero__content h1 { font: var(--h1); color: #fff; margin-bottom: 24px; }
.hero__content p { font: var(--body-lg); color: #fff; margin-bottom: 32px; }

/* ============ STEPS ============ */
.steps { background: var(--color-cream); padding: 96px 0; }
.steps__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.steps__content h2 { font: var(--h3); margin-bottom: 24px; }
.steps__lead { font: var(--body-lg); color: var(--color-text-soft); margin-bottom: 40px; }
.steps__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.steps__item h3 { font: var(--h6); margin-bottom: 12px; }
.steps__item p { font: var(--body); color: var(--color-text-soft); }
.steps__image img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 616 / 478;
  object-fit: cover;
}

/* ============ CARD ROW (vehicles / routes carousels) ============ */
.vehicles, .routes { padding: 96px 0; }
.card-row {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.card-row::-webkit-scrollbar { display: none; }

.v-card {
  flex: 0 0 390px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.v-card--bordered { border: 1px solid var(--color-border); box-shadow: none; }
.v-card__img { height: 300px; overflow: hidden; }
.v-card__img img { width: 100%; height: 100%; object-fit: cover; }
.v-card__body { padding: 24px; }
.v-card__body h3 { font: var(--h5); margin-bottom: 8px; }
.v-card__body > p { font: var(--body); color: var(--color-text-soft); }
.tag { display: inline-block; font: 600 14px/1.5 var(--font); margin-bottom: 8px; }

.avatar-row { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.avatar-row__name { font: 600 14px/1.5 var(--font); }
.avatar-row__meta { font: 400 14px/1.5 var(--font); color: var(--color-text-soft); }

.r-card { flex: 0 0 304px; scroll-snap-align: start; display: block; color: inherit; text-decoration: none; }
.r-card__img { height: 280px; border-radius: var(--radius-sm) var(--radius-sm) 0 0; overflow: hidden; }
.r-card__img img { width: 100%; height: 100%; object-fit: cover; }
.r-card h3 { font: 600 18px/1.5 var(--font); padding-top: 16px; }
.r-card__meta { padding-top: 16px; }
.r-card__meta h3 { padding-top: 0; font: 600 18px/1.5 var(--font); }
.r-card__meta p { font: 400 14px/1.5 var(--font); color: var(--color-text-soft); margin: 2px 0 8px; }
.r-card__meta strong { font: 600 20px/1.5 var(--font); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.slider-dots { display: flex; gap: 8px; }
.slider-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.15);
}
.slider-dots span.is-active { background: var(--color-primary); }
.slider-arrows { display: flex; gap: 16px; }
.arrow-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: opacity .15s ease;
}
.arrow-btn--primary { background: var(--color-primary); border: none; }
.arrow-btn:disabled { opacity: 0.35; cursor: default; }
.icon-arrow { width: 20px; height: 20px; display: block; color: var(--color-text); }

/* ============ RIDE / SERVICES ============ */
.ride { background: var(--color-cream); padding: 96px 0; }
.ride__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}
.ride__col { display: flex; flex-direction: column; gap: 64px; }
.ride__feature { text-align: center; }
.ride__icon { width: 48px; height: 48px; margin: 0 auto 24px; object-fit: contain; }
.ride__feature h3 { font: var(--h5); margin-bottom: 16px; }
.ride__feature p { font: var(--body); color: var(--color-text-soft); }
.ride__image img {
  width: 540px; height: 540px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* ============ TOURS ============ */
.tours { padding: 96px 0; }
.tours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 55px;
}
.tour-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
}
.tour-card--feature { box-shadow: var(--shadow-card-soft); overflow: hidden; display: flex; flex-direction: column; }
.tour-card__img { position: relative; height: 390px; }
.tour-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tour-card__date {
  position: absolute; top: 16px; right: 16px;
  background: var(--color-white);
  border-radius: var(--radius-btn);
  padding: 12px 4px;
  text-align: center;
  width: 96px;
  line-height: 1.3;
}
.tour-card__date span { display: block; font: var(--small); }
.tour-card__date strong { display: block; font: 700 32px/1.3 var(--font); }
.tour-card__body { padding: 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.tour-card__body h3 { font: var(--h5); }
.tour-card__body p { font: var(--body); color: var(--color-text-soft); }

.tour-card__list { display: flex; flex-direction: column; gap: 32px; }
.tour-card--row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px;
  box-shadow: var(--shadow-row-card);
}
.tour-card__date--inline { position: static; flex: 0 0 96px; }
.tour-card__divider { width: 1px; align-self: stretch; background: var(--color-border); }
.tour-card--row .tour-card__body { padding: 0; gap: 8px; }
.tour-card--row .tour-card__body h3 { font: var(--h6); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 16px/1.5 var(--font);
  padding-top: 8px;
}

/* ============ FAQ ============ */
.faq { position: relative; padding: 96px 0; overflow: hidden; background: #1a1a1a; }
.faq__inner { position: relative; z-index: 1; }
.faq .section-title { max-width: 768px; margin-bottom: 60px; }
.faq .section-title h2, .faq .section-title p { color: #fff; }
.faq .section-title h2 { font: var(--h2); }
.faq .section-title p { font: var(--body-lg); }

.accordion { border-bottom: 1px solid var(--color-border-soft); }
.accordion__item { border-top: 1px solid var(--color-border-soft); }
.accordion__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  color: var(--color-text);
  font: 700 18px/1.5 var(--font);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.accordion__item.is-open .accordion__question { color: var(--color-primary-dark, #b8890a); }
.accordion__question i { font-size: 18px; flex-shrink: 0; }
.accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.accordion__answer p {
  font: var(--body);
  color: var(--color-text-soft);
  padding-bottom: 24px;
  max-width: 768px;
}
.accordion__item.is-open .accordion__answer { max-height: 240px; }

/* Dark FAQ section (Home page) needs white/yellow accordion text instead of the default dark theme */
.faq .accordion__question { color: #fff; }
.faq .accordion__item.is-open .accordion__question { color: var(--color-primary); }
.faq .accordion__answer p { color: #fff; }
.faq .accordion__item { border-top-color: rgba(255, 255, 255, 0.2); }
.faq .accordion { border-bottom-color: rgba(255, 255, 255, 0.2); }

.faq__cta { margin-top: 60px; max-width: 560px; }
.faq__cta h3 { font: 700 32px/1.3 var(--font); color: var(--color-primary); margin-bottom: 16px; }
.faq__cta p { font: var(--body-lg); color: #fff; margin-bottom: 24px; }

/* ============ FOOTER ============ */
.footer { background: var(--color-dark); padding: 57px 0 32px; }
.footer__top {
  display: flex;
  gap: 64px;
  padding-bottom: 40px;
}
.footer__brand { flex: 1; max-width: 560px; }
.footer__logo { height: 36px; width: auto; margin-bottom: 39px; }
.footer__brand p { font: var(--body); color: #fff; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.footer__links { display: flex; gap: 64px; }
.footer__col { display: flex; flex-direction: column; gap: 16px; min-width: 180px; }
.footer__col h4 { font: 600 18px/1.5 var(--font); color: var(--color-primary); margin-bottom: 4px; }
.footer__col a, .footer__col p { font: var(--small); color: #fff; display: flex; gap: 8px; align-items: flex-start; }
.footer__col i { width: 16px; margin-top: 3px; }

.footer__credits {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  padding-bottom: 8px;
  padding-left: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: var(--small);
  color: #fff;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { text-decoration: underline; }

/* ============ INNER PAGE HERO (Vehicles / Contact / etc.) ============ */
.page-hero {
  position: relative;
  min-height: 369px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px 0;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.page-hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__content { position: relative; z-index: 1; max-width: 768px; }
.page-hero .container { margin: 0; }
.page-hero__content h1, .page-hero__content h2 { font: var(--h1); color: #fff; margin-bottom: 24px; }
.page-hero__content p { font: var(--body-lg); color: #fff; }

/* ============ INTRO SPLIT (text + image row) ============ */
.intro-split { padding: 96px 0; }
.intro-split--cream { background: var(--color-cream); }
.intro-split .row {
  display: flex;
  gap: 80px;
  align-items: center;
}
.intro-split__content { flex: 1; display: flex; flex-direction: column; gap: 32px; min-width: 0; }
.intro-split__content .eyebrow { margin-bottom: -8px; }
.intro-split__content h2 { font: var(--h3); margin-bottom: 24px; }
.intro-split__content > p.lead { font: var(--body-lg); color: var(--color-text-soft); }
.intro-split__features { display: flex; gap: 24px; }
.intro-split__features > div { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.intro-split__features h3 { font: var(--h6); }
.intro-split__features p { font: var(--body); color: var(--color-text-soft); }
.intro-split__image { flex: 1; min-width: 0; }
.intro-split__image img { width: 100%; height: 452px; object-fit: cover; border-radius: var(--radius-md); }

/* ============ VEHICLE LISTING CARDS ============ */
.listing { padding: 96px 0; background: var(--color-cream); }
.listing-list { display: flex; flex-direction: column; gap: 61px; margin-top: 61px; }
.listing-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 48px;
  display: flex;
  gap: 80px;
  align-items: stretch;
}
.listing-card:nth-child(even) { flex-direction: row-reverse; }
.listing-card__content { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; min-width: 0; }
.listing-card__top { display: flex; flex-direction: column; gap: 16px; }
.listing-card__top h3 { font: var(--h4); }
.listing-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.listing-card__tags span { background: #eee; padding: 4px 8px; font: 600 14px/1.5 var(--font); }
.listing-card__bottom { display: flex; flex-direction: column; gap: 32px; }
.listing-card__bottom p { font: var(--body-lg); color: var(--color-text-soft); }
.listing-card__image { flex: 0 0 630px; border-radius: var(--radius-md); overflow: hidden; }
.listing-card__image img { width: 100%; height: 420px; object-fit: cover; }

/* ============ CONTACT INFO ROW ============ */
.contact-info { padding: 96px 0; }
.contact-info__row { display: flex; gap: 48px; }
.contact-info__item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.contact-info__item svg { width: 48px; height: 48px; color: var(--color-primary); }
.contact-info__item h3 { font: 700 32px/1.3 var(--font); }
.contact-info__item p { font: var(--body); color: var(--color-text-soft); }

/* ============ CONTACT FORM ============ */
.contact-form-section { background: var(--color-cream); padding: 96px 0; }
.contact-form-section .row { display: flex; gap: 80px; align-items: flex-start; }
.contact-form-section__content { flex: 1; display: flex; flex-direction: column; gap: 41px; min-width: 0; }
.contact-form-section h2 { font: var(--h2); margin-bottom: 14px; }
.contact-form-section > .row > .contact-form-section__content > .section-title p { font: var(--body-lg); color: var(--color-text-soft); }
.form-group { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.form-group label { font: var(--body); color: var(--color-text); }
.form-group input, .form-group textarea {
  border: 1px solid rgba(251, 211, 13, 0.62);
  background: #fff;
  border-radius: 5px;
  padding: 12px;
  font: var(--body);
  font-family: var(--font);
  width: 100%;
  box-sizing: border-box;
}
.form-group textarea { height: 180px; resize: vertical; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-checkbox { display: flex; align-items: center; gap: 8px; padding-bottom: 16px; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--color-primary); }
.form-checkbox label { font: 400 14px/1.5 var(--font); }
.contact-form-section__image { flex: 1; min-width: 0; }
.contact-form-section__image img { width: 100%; height: 693px; object-fit: cover; border-radius: var(--radius-md); }

/* ============ TOUR PORTFOLIO CARDS (Explore Our City Tours) ============ */
.tour-portfolio-grid { display: flex; gap: 48px; }
.tour-portfolio-card { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.tour-portfolio-card__img { height: 356px; border-radius: var(--radius-sm) var(--radius-sm) 0 0; overflow: hidden; }
.tour-portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tour-portfolio-card__body { display: flex; flex-direction: column; gap: 16px; }
.tour-portfolio-card__body h3 { font: var(--h5); margin-bottom: 8px; }
.tour-portfolio-card__body > p { font: var(--body); color: var(--color-text-soft); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-dark { background: black; color: white; padding: 4px 8px; font: 600 14px/1.5 var(--font); }
.tag-light { background: #eee; color: black; padding: 4px 8px; font: 600 14px/1.5 var(--font); }
.link-view-more { display: inline-flex; align-items: center; gap: 8px; font: 600 16px/1.5 var(--font); }
.link-view-more svg { width: 20px; height: 20px; }

/* ============ TOUR PACKAGE CARDS (Portfolio grid with shadow) ============ */
.tour-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tour-package-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tour-package-card__img { height: 234px; }
.tour-package-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tour-package-card__body { padding: 24px; display: flex; flex-direction: column; gap: 24px; flex: 1; }
.tour-package-card__body h3 { font: var(--h5); margin-bottom: 8px; }
.tour-package-card__body > p { font: var(--body); color: var(--color-text-soft); }

/* ============ TOUR BOOKING STEPS CTA ROW ============ */
.cta-row { display: flex; gap: 32px; align-items: stretch; }
.cta-card-wide {
  flex: 0 0 640px;
  display: flex;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.cta-card-wide__content { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 24px; padding: 24px; }
.cta-card-wide__image { flex: 1; }
.cta-card-wide__image img { width: 100%; height: 100%; object-fit: cover; }
.cta-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.cta-card__content { display: flex; flex-direction: column; gap: 24px; padding: 24px; }
.cta-card__image { height: 171px; margin-top: auto; }
.cta-card__image img { width: 100%; height: 100%; object-fit: cover; }
.cta-card h3, .cta-card-wide h3 { font: var(--h5); margin-bottom: 8px; }
.cta-card p, .cta-card-wide p { font: var(--body); color: var(--color-text-soft); }

/* ============ DARK TIMELINE CTA (Discover Exciting Tours) ============ */
.explore-dark {
  position: relative;
  padding: 64px;
  background: #111 center / cover no-repeat;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.explore-dark::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.45); }
.explore-dark__grid { position: relative; display: flex; gap: 80px; }
.explore-dark__content { flex: 1; display: flex; flex-direction: column; gap: 32px; color: #fff; }
.explore-dark__content h2 { font: var(--h2); }
.explore-dark__timeline { flex: 1; position: relative; }
.timeline-item { display: flex; gap: 40px; position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item__marker { width: 33px; height: 33px; border-radius: 7px; background: var(--color-primary); flex-shrink: 0; position: relative; z-index: 1; }
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 16.5px;
  top: 33px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.timeline-item__content { color: #fff; display: flex; flex-direction: column; gap: 12px; }
.timeline-item__content h3 { font: 700 20px/1.4 var(--font); }
.timeline-item__content p { font: var(--body); }

/* ============ BLOG FEATURED POST ============ */
.blog-featured { padding: 96px 0; background: var(--color-cream); }
.blog-featured__card { display: flex; align-items: center; gap: 0; }
.blog-featured__img { flex: 1; height: 450px; border-radius: var(--radius-md); overflow: hidden; }
.blog-featured__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__content { flex: 1; padding-left: 48px; display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.blog-featured__content h2 { font: 700 32px/1.3 var(--font); }
.blog-featured__content > p { font: var(--body); color: var(--color-text-soft); }
.blog-avatar__name { font: 600 14px/1.5 var(--font); }
.blog-avatar__meta { font: 400 14px/1.5 var(--font); color: var(--color-text-soft); display: flex; gap: 8px; align-items: center; }

/* ============ BLOG FILTERS + GRID ============ */
.blog-filters { display: flex; gap: 4px; flex-wrap: wrap; margin: 39px 0; }
.filter-btn {
  padding: 8px 16px;
  border-radius: 7px;
  font: 600 16px/1.5 var(--font);
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  color: var(--color-text);
}
.filter-btn.is-active { border-color: rgba(0, 0, 0, 0.7); background: var(--color-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 32px; row-gap: 52px; }
.blog-card { display: flex; flex-direction: column; gap: 24px; }
.blog-card__img { height: 300px; border-radius: var(--radius-md); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__category { font: 600 14px/1.5 var(--font); }
.blog-card__title { font: var(--h5); margin: 4px 0; }
.blog-card__excerpt { font: var(--body); color: var(--color-text-soft); }
.blog-card__excerpt a { font-weight: 700; text-decoration: underline; color: var(--color-text); }

/* ============ BLOG POST ARTICLE ============ */
.post-section { padding: 96px 0; }
.post-layout { display: flex; gap: 80px; }
.post-sidebar { flex: 0 0 420px; order: -1; display: flex; flex-direction: column; gap: 48px; min-width: 0; }
.post-sidebar h4 { font: 700 18px/1.5 var(--font); margin-bottom: 24px; }
.post-authors { display: flex; flex-direction: column; gap: 24px; }
.post-author-name { font: 600 16px/1.5 var(--font); }
.post-author-role { font: 400 16px/1.5 var(--font); color: var(--color-text-soft); }
.post-divider { height: 1px; background: rgba(0, 0, 0, 0.15); width: 100%; }
.post-newsletter input[type="email"] {
  border: 1px solid black;
  padding: 10px 12px;
  width: 100%;
  font: 400 16px/1.5 var(--font);
  box-sizing: border-box;
  margin-bottom: 16px;
}
.post-newsletter button {
  background: black;
  color: white;
  border: 1px solid black;
  padding: 8px 20px;
  width: 100%;
  font: 400 16px/1.5 var(--font);
  cursor: pointer;
}
.post-newsletter small { font: 400 12px/1.5 var(--font); color: var(--color-text); display: block; margin-top: 8px; }
.post-newsletter small a { color: black; text-decoration: underline; }
.post-share { display: flex; gap: 8px; }
.share-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.share-btn svg { width: 16px; height: 16px; }

.post-article { flex: 1; min-width: 0; }
.post-article h1 { font: var(--h3); margin-bottom: 24px; }
.post-article p { font: var(--body); color: var(--color-text); margin: 0 0 16px; }
.post-article__lead { font: 700 20px/1.4 var(--font); margin: 20px 0 16px; }
.post-article img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius-md); margin: 20px 0 48px; display: block; }
.post-article blockquote {
  display: flex;
  gap: 20px;
  padding: 36px 0;
  margin: 0;
  border: none;
}
.post-article blockquote .bar { width: 2px; background: black; flex-shrink: 0; align-self: stretch; }
.post-article blockquote p {
  font: italic 400 20px/1.4 'Inter', var(--font);
  margin: 0;
}
.post-article h2 { font: 700 32px/1.3 var(--font); margin: 24px 0 20px; }
.post-article ul { margin: 0 0 16px; padding-left: 20px; }
.post-article li { font: var(--body); color: var(--color-text-soft); margin-bottom: 8px; }

/* ============ RELATED POSTS ============ */
.related-posts { padding: 96px 0; background: var(--color-cream); }
.related-grid { display: flex; gap: 32px; }
.related-card { flex: 1; min-width: 0; background: white; border-radius: var(--radius-md); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); overflow: hidden; display: flex; flex-direction: column; }
.related-card__img { height: 277px; position: relative; }
.related-card__img img { width: 100%; height: 100%; object-fit: cover; }
.related-card__date {
  position: absolute; top: 16px; right: 16px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 12px 4px;
  text-align: center;
  width: 112px;
}
.related-card__date span { display: block; font: 400 14px/1.5 var(--font); }
.related-card__date strong { display: block; font: 700 32px/1.3 var(--font); }
.related-card__body { padding: 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.related-card__body h3 { font: var(--h5); }
.related-card__body p { font: var(--body); color: var(--color-text-soft); }

/* ============ BREADCRUMB ============ */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font: 400 14px/1.5 var(--font); color: var(--color-text-soft); padding: 24px 0 0; }
.breadcrumb a { color: var(--color-text-soft); text-decoration: underline; }
.breadcrumb a:hover { color: var(--color-text); }
.breadcrumb__current { color: var(--color-text); font-weight: 600; }

/* ============ TOUR QUICK FACTS (sidebar) ============ */
.tour-facts { display: flex; flex-direction: column; gap: 16px; }

/* ============ TOUR DISCLAIMER ============ */
.tour-disclaimer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-cream);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 32px 0;
}
.tour-disclaimer svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }
.tour-disclaimer p { font: var(--body); color: var(--color-text); margin: 0; }
.tour-disclaimer strong { font-weight: 700; }

/* ============ SERVICES HUB GRID ============ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.service-card {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  text-decoration: none;
  color: inherit;
}
.service-card img { width: 48px; height: 48px; margin-bottom: 20px; }
.service-card h3 { font: var(--h5); margin-bottom: 8px; }
.service-card p { font: var(--body); color: var(--color-text-soft); margin-bottom: 16px; }
.service-card .link-view-more { font-size: 15px; }

/* ============ RELATED CARD (no date badge variant, for Related Services) ============ */
.related-card--plain .related-card__img { height: 200px; }
.tour-facts__item { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.tour-facts__item:last-child { border-bottom: none; padding-bottom: 0; }
.tour-facts__label { font: 400 14px/1.5 var(--font); color: var(--color-text-soft); flex-shrink: 0; }
.tour-facts__value { font: 600 14px/1.5 var(--font); text-align: right; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font: 600 16px/1.5 var(--font); }
.back-link svg { width: 18px; height: 18px; }

/* ============ ITINERARY ============ */
.itinerary-day { border-left: 3px solid var(--color-primary); padding: 4px 0 4px 20px; margin-bottom: 24px; }
.itinerary-day__label { font: 600 14px/1.5 var(--font); color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 4px; }
.itinerary-day h3 { font: 700 20px/1.4 var(--font); margin-bottom: 8px; }
.itinerary-day p { font: var(--body); color: var(--color-text-soft); margin: 0; }

/* ============ INCLUDED / EXCLUDED CHECKLIST ============ */
.checklist-grid { display: flex; gap: 48px; margin: 24px 0 40px; }
.checklist { flex: 1; min-width: 0; }
.checklist h3 { font: var(--h6); margin-bottom: 16px; }
.checklist ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { position: relative; padding-left: 28px; font: var(--body); color: var(--color-text-soft); }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--color-primary); font-weight: 700; }
.checklist--exclude li::before { content: '✕'; color: #aaa; }

/* ============ TOUR CTA BOX ============ */
.tour-cta-box { background: var(--color-cream); border-radius: var(--radius-md); padding: 40px; text-align: center; margin: 48px 0; }
.tour-cta-box h3 { font: var(--h4); margin-bottom: 12px; }
.tour-cta-box p { color: var(--color-text-soft); margin-bottom: 24px; }

/* ============ FEATURE ROW (icon + title + text, N columns) ============ */
.feature-row { padding: 96px 0; }
.feature-row--cream { background: var(--color-cream); }
.feature-row__heading { text-align: center; max-width: 768px; margin: 0 auto 45px; font: var(--h3); }
.feature-row__grid { display: flex; gap: 48px; }
.feature-row__item { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.feature-row__item img { width: 60px; height: 60px; object-fit: contain; }
.feature-row__item h3 { font: var(--h5); }
.feature-row__item p { font: var(--body); color: var(--color-text-soft); }

/* ============ STORY SECTION (About: tabs + big image) ============ */
.story-section { padding: 96px 0; background: var(--color-cream); }
.story-section__heading { text-align: center; max-width: 768px; margin: 0 auto 45px; }
.story-section__heading h2 { font: var(--h2); margin-bottom: 24px; }
.story-section__heading p { font: var(--body-lg); color: var(--color-text-soft); }
.story-tabs { display: flex; background: #ffd506; border-radius: 10px; margin-bottom: 45px; overflow: hidden; }
.story-tabs__item {
  flex: 1;
  text-align: center;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
.story-tabs__item:first-child { border-left: none; }
.story-tabs__item h3 { font: 700 20px/1.4 var(--font); }
.story-tabs__item p { font: 400 16px/1.5 var(--font); }
.story-section__image { width: 100%; height: 738px; border-radius: var(--radius-md); overflow: hidden; }
.story-section__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============ STATS ROW (big number + label) ============ */
.stats-row { display: flex; gap: 24px; }
.stat-item { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.stat-item strong { font: 700 48px/1.2 var(--font); }
.stat-item p { font: var(--body); color: var(--color-text-soft); }

/* ============ TESTIMONIAL SLIDER ============ */
.testimonial { padding: 96px 0; background: var(--color-cream); position: relative; }
.testimonial__track { position: relative; min-height: 260px; }
.testimonial__slide {
  display: none;
  max-width: 768px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.testimonial__slide.is-active { display: flex; }
.testimonial__stars { display: flex; gap: 4px; color: var(--color-primary); }
.testimonial__stars svg { width: 20px; height: 20px; }
.testimonial__quote { font: 700 24px/1.4 var(--font); }
.testimonial__avatar { display: flex; align-items: center; gap: 20px; justify-content: center; }
.testimonial__avatar img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial__avatar-name { font: 600 16px/1.5 var(--font); }
.testimonial__avatar-role { font: 400 16px/1.5 var(--font); color: var(--color-text-soft); }
.testimonial .slider-dots { justify-content: center; margin-top: 40px; }
.testimonial .arrow-btn { position: absolute; top: 50%; transform: translateY(-50%); }
.testimonial .arrow-btn[data-testimonial-dir="-1"] { left: 24px; }
.testimonial .arrow-btn[data-testimonial-dir="1"] { right: 24px; }

/* ==========================================================================
   MOBILE — matches the 375px Figma mobile frame
   ========================================================================== */
@media (max-width: 900px) {
  .ride__grid { grid-template-columns: 1fr; }
  .ride__image { order: -1; }
  .ride__image img { width: 100%; height: auto; aspect-ratio: 1/1; }
  .ride__col { flex-direction: row; gap: 32px; }
  .tours__grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  :root {
    --pad-desktop: var(--pad-mobile);
    --h1: 700 40px/1.2 var(--font);
    --h2: 700 36px/1.2 var(--font);
    --h3: 700 32px/1.2 var(--font);
    --h4: 700 24px/1.4 var(--font);
    --h5: 700 24px/1.4 var(--font);
    --h6: 700 18px/1.4 var(--font);
  }

  /* Navbar → hamburger */
  .navbar__inner { height: 64px; }
  .navbar__logo img { height: 32px; }
  .navbar__toggle { display: block; }
  .navbar__actions { gap: 12px; }
  .navbar__phone { display: none; }
  .navbar__phone-mobile { display: inline-flex; margin-top: 24px; width: 100%; }

  .navbar__nav {
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 24px var(--pad-mobile) 40px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .navbar__nav.is-open { transform: translateX(0); }
  .navbar__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .navbar__links li { width: 100%; }
  .navbar__links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    justify-content: space-between;
  }

  .hero { min-height: 100vh; padding: 64px 0; }
  .hero__content { max-width: 100%; }

  .steps { padding: 48px 0; }
  .steps__inner { grid-template-columns: 1fr; gap: 48px; }
  .steps__list { grid-template-columns: 1fr; gap: 24px; }
  .steps__image img { aspect-ratio: auto; height: 348px; }

  .section-title--row { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 32px; }
  .section-title__cta { align-self: flex-start; }

  .vehicles, .routes, .tours { padding: 48px 0; }
  .v-card { flex-basis: 300px; }
  .v-card__img { height: 198px; }
  .r-card { flex-basis: 260px; }
  .r-card__img { height: 260px; }

  .ride { padding: 48px 0; }
  .ride__col { flex-direction: column; gap: 48px; }
  .ride__image img { aspect-ratio: 1/1; }

  .faq { padding: 48px 0; }
  .faq__cta h3 { font-size: 24px; }

  .tour-card--row { flex-direction: column; align-items: stretch; }
  .tour-card__date--inline { flex-direction: row; justify-content: center; gap: 6px; flex: none; }
  .tour-card__date--inline span, .tour-card__date--inline strong { display: inline; }
  .tour-card__divider { display: none; }

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__links { flex-direction: column; gap: 24px; }
  .footer__credits { flex-direction: column-reverse; align-items: flex-start; }

  /* Inner page hero */
  .page-hero { min-height: 364px; }
  .page-hero__content { max-width: 100%; }

  /* Intro split */
  .intro-split { padding: 48px 0; }
  .intro-split .row { flex-direction: column; gap: 48px; }
  .intro-split__image img { height: 348px; }
  .intro-split__features { flex-direction: column; gap: 24px; }

  /* Vehicle listing cards */
  .listing { padding: 48px 0; }
  .listing-list { gap: 32px; margin-top: 32px; }
  .listing-card, .listing-card:nth-child(even) {
    flex-direction: column;
    padding: 32px;
    gap: 24px;
  }
  .listing-card__top h3 { font-size: 32px; }
  .listing-card__image { flex-basis: auto; width: 100%; }
  .listing-card__image img { height: 180px; }

  /* Contact info row */
  .contact-info { padding: 48px 0; }
  .contact-info__row { flex-direction: column; gap: 48px; }
  .contact-info__item h3 { font-size: 24px; }

  /* Contact form */
  .contact-form-section { padding: 48px 0; }
  .contact-form-section .row { flex-direction: column; gap: 48px; }
  .contact-form-section__image img { height: 335px; }

  /* Feature row */
  .feature-row { padding: 48px 0; }
  .feature-row__heading { margin-bottom: 34px; }
  .feature-row__grid { flex-direction: column; gap: 34px; }

  /* Story section */
  .story-section { padding: 48px 0; }
  .story-section__heading { margin-bottom: 34px; }
  .story-tabs { flex-direction: column; margin-bottom: 34px; }
  .story-tabs__item { border-left: none; border-top: 1px solid rgba(0, 0, 0, 0.15); }
  .story-tabs__item:first-child { border-top: none; }
  .story-section__image { height: 188px; }

  /* Stats row */
  .stats-row { flex-direction: column; gap: 24px; }
  .stat-item strong { font-size: 36px; }

  /* Testimonial */
  .testimonial { padding: 48px 0; }
  .testimonial__quote { font-size: 20px; }
  .testimonial .arrow-btn { display: none; }

  /* Tour portfolio / package cards */
  .tour-portfolio-grid { flex-direction: column; gap: 37px; }
  .tour-portfolio-card__img { height: 188px; }
  .tour-package-grid { grid-template-columns: 1fr; gap: 48px; }
  .tour-package-card__img { height: 188px; }

  /* CTA row */
  .cta-row { flex-direction: column; gap: 32px; }
  .cta-card-wide { flex-basis: auto; flex-direction: column; }
  .cta-card-wide__image { height: 326px; }
  .cta-card__image { height: 188px; }

  /* Dark timeline CTA */
  .explore-dark { padding: 48px 20px; }
  .explore-dark__grid { flex-direction: column; gap: 32px; }
  .explore-dark__content h2 { font-size: 36px; }

  /* Blog */
  .blog-featured { padding: 48px 0; }
  .blog-featured__card { flex-direction: column; align-items: stretch; gap: 24px; }
  .blog-featured__img { height: 221px; }
  .blog-featured__content { padding-left: 0; }
  .blog-featured__content h2 { font-size: 24px; }
  .blog-filters { overflow-x: auto; flex-wrap: nowrap; -ms-overflow-style: none; scrollbar-width: none; }
  .blog-filters::-webkit-scrollbar { display: none; }
  .blog-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-card__img { height: 221px; }
  .blog-card__title { font-size: 20px; }

  /* Blog post article */
  .post-section { padding: 48px 0; }
  .post-layout { flex-direction: column; gap: 0; }
  .post-sidebar { order: 0; flex-basis: auto; margin-top: 48px; }
  .post-article h1 { font-size: 32px; }
  .post-article img { height: 185px; margin: 20px 0 28px; }
  .post-article__lead { font-size: 18px; }
  .post-article blockquote p { font-size: 18px; line-height: 26px; }
  .post-article h2 { font-size: 24px; }

  /* Related posts */
  .related-posts { padding: 48px 0; }
  .related-grid { flex-direction: column; gap: 48px; }
  .related-card__img { height: 225px; }

  /* Tour detail page */
  .checklist-grid { flex-direction: column; gap: 24px; }
  .tour-cta-box { padding: 32px 24px; }

  /* Services hub grid */
  .services-grid { grid-template-columns: 1fr; gap: 24px; }

  /* WhatsApp floating button */
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; left: 16px; }
  .whatsapp-float img { width: 28px; height: 28px; }
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float img { width: 34px; height: 34px; display: block; }

/* ============ FOOTER ATTRIBUTION ============ */
.footer__attribution {
  font: 400 12px/1.5 var(--font);
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
}
.footer__attribution a { color: rgba(255, 255, 255, 0.55); }
