/* ================================================================
   Royal Tour & Travels � Main Stylesheet
   Design: Premium Travel Industry | Professional | Conversion-Focused
   ================================================================ */

/* -- Google Fonts Import ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* -- CSS Custom Properties -------------------------------------- */
:root {
  --primary:       #12362a;
  --primary-dark:  #0b2219;
  --primary-light: #1a4a38;
  --secondary:     #c9a84c;
  --secondary-dark:#a8892e;
  --accent:        #e07b39;
  --accent-dark:   #c0632a;
  --text-dark:     #1c1c1c;
  --text-body:     #444444;
  --text-muted:    #777777;
  --text-light:    #aaaaaa;
  --bg-white:      #ffffff;
  --bg-light:      #f7f8fa;
  --bg-section:    #f3f4f6;
  --border:        #e2e4e9;
  --border-light:  #f0f1f3;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:     0 16px 48px rgba(0,0,0,.16);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --transition:    all .25s ease;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h:      84px;
}

/* -- Reset & Base ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent horizontal scroll */
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* prevent horizontal scroll */
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--secondary); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -- Typography ------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #12362a;
  line-height: 1.25;
  font-weight: 700;
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }

p { margin-top: 0; margin-bottom: 1rem; }

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

/* Section eyebrow labels */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--secondary);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--secondary);
  vertical-align: middle;
  margin-right: 8px;
}

/* -- Section Layout --------------------------------------------- */
.section {
  padding: 88px 0;
}
.section-sm {
  padding: 56px 0;
}
.section-lg {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 52px;
}
.section-heading.text-center { text-align: center; }
.section-heading h2 {
  margin-bottom: 12px;
}
.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}
.section-heading.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* Decorative underline for headings */
.heading-underline::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--secondary);
  margin-top: 14px;
}
.heading-underline.text-center::after {
  margin: 14px auto 0;
}

/* -- Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-primary {
  background: #12362a;
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,46,90,.3);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.4);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: #fff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: .84rem;
}
.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: #fff;
}

/* -- HEADER ----------------------------------------------------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background .35s cubic-bezier(.4,0,.2,1),
              box-shadow .35s ease,
              height .35s cubic-bezier(.4,0,.2,1);
}

/* Transparent on hero, solid after scroll */
#site-header.header-transparent {
  background: #12362a;
}
/* Inner pages at top � full height, solid background */
#site-header.header-solid {
  background: #12362a;
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}
/* After scrolling (all pages) � compact height */
#site-header.header-scrolled {
  background: #12362a;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  height: 66px;
}
/* Logo size in scrolled/solid state */
#site-header.header-scrolled .site-logo img {
  height: 86px;   /* sticky desktop */
}
#site-header.header-solid .site-logo img {
  height: 110px;  /* inner pages at top, desktop */
}
#site-header.header-scrolled .logo-name,
#site-header.header-solid .logo-name {
  font-size: 1.15rem;
}
#site-header.header-scrolled .logo-tagline,
#site-header.header-solid .logo-tagline {
  font-size: .64rem;
  opacity: .85;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 110px;  /* all pages, all states at top � desktop */
  width: auto;
  filter: brightness(1) drop-shadow(0 1px 4px rgba(0,0,0,.3));
  transition: height .35s cubic-bezier(.4,0,.2,1);
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  transition: font-size .35s cubic-bezier(.4,0,.2,1);
}
.logo-tagline {
  font-size: .72rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: font-size .35s cubic-bezier(.4,0,.2,1),
              opacity .35s ease;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav > li > a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.site-nav > li > a:hover,
.site-nav > li > a.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.site-nav > li > a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.header-cta {
  margin-left: 12px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-dark);
  z-index: 999;
  padding: 90px 32px 40px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav ul li {
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav ul li a {
  display: block;
  padding: 16px 0;
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: var(--secondary);
  padding-left: 8px;
}
.mobile-nav-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* -- HERO SLIDER ------------------------------------------------ */
.hero-slider {
  position: relative;
  overflow: hidden;
  /* Desktop: fixed viewport height */
  height: 85vh;
  min-height: 560px;
  max-height: 800px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  transform: scale(1.04);
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(10 20 45 / 2%) 0%, rgb(10 20 45 / 0%) 50%, rgb(10 20 45 / 0%) 100%)
  ;
}
.hero-overlay-light {
  background: linear-gradient(
    to right,
    rgba(255,255,255,.22) 0%,
    rgba(255,255,255,.08) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Equal top/bottom padding = half form height (form ~120px + 24px bottom gap = 144px)
     so the text block sits exactly centred in the visible image area above the search form */
  padding-top: 144px;
  padding-bottom: 144px;
}

.hero-text {
  max-width: 880px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease .35s, transform .7s ease .35s;
}
.hero-slide.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #ffffff;
  margin-bottom: 16px;
  background: #c9a84c;
  padding: 5px 10px 5px 10px;
  border-radius: 15px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  color: #12362a !important;
  line-height: 1.15;
  margin-bottom: 20px;
  /* text-shadow: 0 2px 12px rgb(0, 0, 0); */
}

.hero-desc {
  font-size: 1.05rem;
  color: rgb(26 46 90);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;  /* centre buttons */
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 168px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
.slider-arrow-prev { left: 24px; }
.slider-arrow-next { right: 24px; }

/* -- QUICK SEARCH BAR ------------------------------------------- */
.quick-search {
  background: var(--primary);
  padding: 0 0 32px;
  position: relative;
  z-index: 5;
}

.quick-search-inner {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 22px 28px 24px;
  margin-top: -44px;        /* pulls card up over slider � stays in flow */
  position: relative;
  z-index: 5;
}

.search-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.search-tabs::-webkit-scrollbar { display: none; }

.search-tab {
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* --- Form layout: horizontal row on all screens by default --- */
.search-form {
  display: none;
}
.search-form.active {
  display: flex;
  flex-wrap: nowrap;       /* single row on desktop */
  gap: 12px;
  align-items: flex-end;
}

.search-field {
  flex: 1 1 0;
  min-width: 0;
}

.search-submit {
  flex: 0 0 auto;
}

.search-field label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,46,90,.07);
}

/* --- Responsive: wrap to 2-col grid on tablet ---------------- */
@media (max-width: 991px) {
  .search-form.active:not(.taxi-booking-form) {
    flex-wrap: wrap;
    gap: 10px;
  }
  .search-form.active:not(.taxi-booking-form) .search-field {
    flex: 1 1 calc(50% - 6px);
    min-width: calc(50% - 6px);
  }
  .search-form.active:not(.taxi-booking-form) .search-submit {
    flex: 1 1 100%;
  }
  .search-form.active:not(.taxi-booking-form) .search-submit .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Responsive: single column on mobile --------------------- */
@media (max-width: 575px) {
  .search-field {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

/* Label spacer � aligns button baseline with input fields */
.search-field-label-spacer {
  display: block;
  font-size: .72rem;
  margin-bottom: 6px;
  visibility: hidden;
  user-select: none;
  line-height: 1;
}

/* Search button � consistent height matching inputs */
.search-btn {
  height: 41px;
  white-space: nowrap;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 991px) {
  .search-field-label-spacer { display: none; }
  .search-btn { height: auto; width: 100%; justify-content: center; }
}

/* -- DESTINATION AUTOCOMPLETE ----------------------------------- */
.search-field--autocomplete {
  position: relative;
}

.autocomplete-wrap {
  position: relative;
}

.autocomplete-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(26,46,90,.14);
  z-index: 200;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.autocomplete-dropdown::-webkit-scrollbar {
  width: 4px;
}
.autocomplete-dropdown::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.autocomplete-dropdown.open {
  display: block;
  animation: acDropIn .18s ease;
}
@keyframes acDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-light);
  transition: background .15s ease;
}
.autocomplete-item:last-child {
  border-bottom: none;
}
.autocomplete-item:hover,
.autocomplete-item.active {
  background: rgba(26,46,90,.05);
}

.autocomplete-icon {
  width: 32px;
  height: 32px;
  background: rgba(26,46,90,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: .85rem;
}

.autocomplete-info {
  flex: 1;
  min-width: 0;
}
.autocomplete-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.autocomplete-name mark {
  background: none;
  color: var(--primary);
  font-weight: 700;
  padding: 0;
}
.autocomplete-meta {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.autocomplete-badge {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(26,46,90,.08);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
}

.autocomplete-empty {
  padding: 14px 16px;
  font-size: .88rem;
  color: var(--text-muted);
  text-align: center;
}

.autocomplete-loading {
  padding: 12px 16px;
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.autocomplete-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: acSpin .6s linear infinite;
  flex-shrink: 0;
}
@keyframes acSpin {
  to { transform: rotate(360deg); }
}

/* -- TAXI BOOKING FORM (search bar) ----------------------------- */

.taxi-booking-form { display: none; }
.taxi-booking-form.active {
  display: block !important;
  padding: 0 !important;
}

/* Row 1 */
.taxi-form-top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.trip-type-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trip-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  user-select: none;
}
.trip-radio input[type="radio"] { display: none; }
.trip-radio-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s;
}
.trip-radio-dot::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  transition: opacity .2s;
}
.trip-radio input[type="radio"]:checked + .trip-radio-dot { border-color: var(--primary); }
.trip-radio input[type="radio"]:checked + .trip-radio-dot::after { opacity: 1; }

.taxi-time-display {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--text-muted); font-weight: 500;
  margin-left: 16px;
}
.taxi-time-display i { color: var(--primary); }

/* Rows 2 & 3 */
.taxi-form-row {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: visible;
  position: relative;
  z-index: 2;          /* row 1 sits above row 2 so dropdown shows over it */
}
.taxi-contact-row {
  margin-top: 8px;
  z-index: 1;          /* contact row sits below source/dest row */
  position: relative;
}

.taxi-form-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  flex: 1;
  min-width: 0;
  position: relative;
  border-right: 1.5px solid var(--border);
  min-height: 42px;
}
.taxi-form-field:last-of-type { border-right: none; }

.taxi-field-icon {
  color: var(--primary);
  font-size: .9rem;
  flex-shrink: 0;
}

.taxi-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  padding: 11px 0;
  min-width: 0;
  line-height: 1.2;
}
.taxi-input::placeholder { color: var(--text-muted); }
.taxi-input[type="date"] {
  cursor: pointer;
  min-width: 0;
  padding: 11px 0;
  height: 42px;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
}

/* Fix date field cell height on mobile */
.hero-taxi-form .taxi-form-field,
.taxi-form-field {
  min-height: 0;
}

.taxi-swap-btn {
  flex: 0 0 34px;
  background: #f4f5f8;
  border: none;
  border-right: 1.5px solid var(--border);
  cursor: pointer;
  color: var(--text-muted);
  font-size: .82rem;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: background .2s, color .2s;
}
.taxi-swap-btn:hover { background: var(--primary); color: #fff; }

.taxi-search-btn {
  flex: 0 0 auto;
  padding: 0 22px;
  background: #c0392b;
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  white-space: nowrap;
}
.taxi-search-btn:hover    { background: #a93226; }
.taxi-search-btn:disabled { opacity: .6; cursor: not-allowed; }

.taxi-suggestions {
  display: none; /* kept for reference � actual dropdown uses portal via JS */
}
.taxi-suggestions.open { display: none; }
.taxi-suggestion-item {
  padding: 9px 14px;
  font-size: .88rem;
  color: var(--text-dark);
  cursor: pointer;
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 10px;
  transition: background .15s;
}
.taxi-suggestion-item:last-child  { border-bottom: none; }
.taxi-suggestion-item:hover,
.taxi-suggestion-item.active      { background: rgba(26,46,90,.05); }
.taxi-suggestion-item i { color: var(--text-muted); font-size: .8rem; }

@media (max-width: 767px) {
  .taxi-form-row, .taxi-contact-row { flex-direction: column; }
  .taxi-form-field {
    border-right: none;
    border-bottom: 1.5px solid var(--border);
  }
  .taxi-form-field:last-of-type { border-bottom: none; }
  .taxi-swap-btn  { display: none; }
  .taxi-search-btn {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 13px 20px;
    justify-content: center;
    width: 100%;
  }
  .taxi-time-display { margin-left: 0; margin-top: 6px; }
}
/* -----------------------------------------------
   HERO FORM � RESPONSIVE SYSTEM
   Desktop: form absolute at bottom of slider
   Mobile:  slider is flex column, form at end
   ----------------------------------------------- */

/* Default (desktop = 768px): absolute positioning */
.hero-form-overlay {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 10;
}
.hero-search-form { width: 100%; }

.hero-taxi-form .taxi-form-row,
.hero-taxi-form .taxi-contact-row {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(4px);
}
.hero-taxi-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.hero-taxi-top .trip-radio            { color: #fff; font-size: .84rem; }
.hero-taxi-top .trip-radio-dot        { border-color: rgba(255,255,255,.5); }
.hero-taxi-top .trip-radio input:checked + .trip-radio-dot { border-color: var(--secondary); }
.hero-taxi-top .trip-radio-dot::after { background: var(--secondary); }
.hero-taxi-top .taxi-time-display     { color: rgba(255,255,255,.75); margin-left: auto; font-size: .8rem; }
.hero-taxi-top .taxi-time-display i   { color: var(--secondary); }

/* -- MOBILE (< 768px) -- */
@media (max-width: 767.98px) {
  /* Convert slider from fixed-height to flex column */
  .hero-slider {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: flex;
    flex-direction: column;
  }

  /* Slide images fill a fixed portion */
  .hero-slide {
    position: relative !important;
    flex-shrink: 0;
    height: 260px !important;
    opacity: 1 !important;
    display: none;
    z-index: auto !important;
  }
  .hero-slide.active { display: flex; }

  .hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }

  .hero-overlay { position: absolute; inset: 0; }

  .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
  justify-content: center;
}

  .hero-title       { font-size: 1.4rem !important; margin-bottom: 0; }
  .hero-subtitle    { font-size: .72rem; margin-bottom: 6px; }

  /* Form: below image, normal flow, NOT absolute */
  .hero-form-overlay {
    position: relative !important;
    bottom: auto !important;
    padding: 10px 12px 14px;
    background: var(--primary);
    z-index: 5;
  }
  .hero-taxi-form .taxi-form-row,
  .hero-taxi-form .taxi-contact-row { flex-direction: column; }
  .hero-taxi-form .taxi-form-field  {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-width: 100%;
  }
  .hero-taxi-form .taxi-form-field:last-of-type { border-bottom: none; }
  .hero-taxi-form .taxi-swap-btn    { display: none; }
  .hero-taxi-form .taxi-search-btn  {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  .hero-taxi-form .taxi-contact-row { margin-top: 5px; }
  .hero-taxi-top .taxi-time-display { margin-left: 0; }

  /* Slider controls inside image area */
  .slider-controls { bottom: 8px; }
  .slider-arrow    { display: none; }
}

/* -- TABLET (768px � 991px) -- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-slider       { height: 88vh; min-height: 580px; max-height: 860px; }
  .hero-content      { padding-top: 144px; padding-bottom: 144px; }
  .hero-form-overlay { bottom: 20px; }
  .slider-controls   { bottom: 160px; }
}

/* -- ABOUT SECTION ---------------------------------------------- */
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.about-image-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--secondary);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-image-badge strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-heading);
  line-height: 1;
}
.about-image-badge span {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.stat-box {
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--secondary);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* -- PACKAGE CARDS ---------------------------------------------- */
.package-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow .28s ease, transform .28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  background: #f4f6fb;
  border-color: var(--primary);
}

.pkg-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.pkg-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.package-card:hover .pkg-image-wrap img {
  transform: scale(1.06);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--secondary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 2px;
}
.pkg-badge-popular {
  background: var(--accent);
}
.pkg-badge-featured {
  background: var(--primary);
}

.pkg-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.pkg-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-destination {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-destination i {
  color: var(--secondary);
  font-size: .85rem;
}

.pkg-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  line-height: 1.3;
}
.pkg-title a {
  color: inherit;
}
.pkg-title a:hover { color: var(--primary); }

.pkg-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
  flex: 1;
}

.pkg-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.pkg-highlight-tag {
  font-size: .72rem;
  color: var(--primary);
  background: rgba(26,46,90,.07);
  padding: 3px 9px;
  border-radius: 2px;
  font-weight: 500;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.pkg-price {
  display: flex;
  flex-direction: column;
}
.pkg-price-from {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pkg-price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1.1;
}
.pkg-price-per {
  font-size: .72rem;
  color: var(--text-muted);
}

.pkg-actions {
  display: flex;
  gap: 8px;
}

/* -- TAXI CARD (redesigned) ------------------------------------- */

/* -- Section wrapper -- */
.txc-section {
  padding: 88px 0;
  background: linear-gradient(160deg, #f0f4ff 0%, #f8f9fb 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.txc-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Section heading row */
.txc-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.txc-head-left .eyebrow { margin-bottom: 6px; }
.txc-head-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin: 0 0 8px;
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 14px;
}
.txc-head-left h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.txc-head-left p {
  color: var(--text-muted);
  font-size: .95rem;
  margin: 0;
  max-width: 520px;
}
.txc-view-all {
  flex-shrink: 0;
  white-space: nowrap;
}
.txc-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}
.txc-empty i { font-size: 3rem; opacity: .2; margin-bottom: 12px; display: block; }

/* -- Card -- */
.txc {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(26,46,90,.06);
  transition: transform .3s cubic-bezier(.34,1.3,.64,1),
              box-shadow .3s ease,
              border-color .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.txc:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(26,46,90,.14);
  border-color: var(--primary);
  background: #f4f6fb;
}

/* Image */
.txc-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-section);
}
.txc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.txc:hover .txc-img-wrap img { transform: scale(1.07); }

/* Availability badge */
.txc-avail-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 11px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
.txc-avail-yes { background: rgba(34,197,94,.9);  color: #fff; }
.txc-avail-no  { background: rgba(239,68,68,.9);  color: #fff; }

/* Category pill on image */
.txc-cat-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(14,28,56,.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 11px;
  border-radius: 20px;
}

/* Body */
.txc-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

/* Name */
.txc-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.3;
}
.txc-name a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.txc-name a:hover { color: var(--primary); }

/* Specs row � icon pills */
.txc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.txc-spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.txc-spec i {
  color: var(--primary);
  font-size: .72rem;
  flex-shrink: 0;
}

/* Feature tags */
.txc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.txc-tag {
  font-size: .68rem;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 2px 9px;
  border-radius: 3px;
  font-weight: 500;
}
.txc-tag-more { color: var(--primary); border-color: rgba(26,46,90,.2); }

/* Footer */
.txc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.txc-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.txc-price-lbl {
  font-size: .65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.txc-price-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.01em;
}
.txc-price-val small {
  font-size: .65rem;
  font-weight: 600;
  color: var(--text-muted);
}
.txc-price-note {
  font-size: .65rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 2px;
}

/* Action buttons */
.txc-actions {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.txc-btn-outline,
.txc-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all .22s ease;
  border: none;
  line-height: 1;
}
.txc-btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-body);
}
.txc-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26,46,90,.04);
}
.txc-btn-book {
  background: var(--secondary);
  color: #fff;
}
.txc-btn-book:hover {
  background: var(--secondary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
}
.txc-btn-book:disabled,
.txc-btn-book.disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

/* -- Responsive -- */
@media (max-width: 991.98px) {
  .txc-section { padding: 64px 0; }
  .txc-section-head { align-items: flex-start; }
  .txc-view-all { align-self: flex-start; }
}
@media (max-width: 767.98px) {
  .txc-section { padding: 48px 0; }
  .txc-section-head { flex-direction: column; gap: 16px; margin-bottom: 32px; }
  .txc-head-left h2 { font-size: 1.5rem; }
  .txc-img-wrap { height: 180px; }
  .txc-footer { flex-wrap: wrap; gap: 10px; }
  .txc-actions { width: 100%; }
  .txc-btn-outline,
  .txc-btn-book { flex: 1; justify-content: center; }
}
@media (max-width: 479.98px) {
  .txc-img-wrap { height: 160px; }
  .txc-body { padding: 14px 14px 16px; }
}

/* -- Keep old class names working on taxi.php / taxi-details.php -- */
.taxi-card { background: #fff; border-radius: 16px; overflow: hidden;
  border: 1.5px solid var(--border-light); box-shadow: 0 2px 12px rgba(26,46,90,.06);
  display: flex; flex-direction: column; height: 100%;
  transition: transform .3s ease, box-shadow .3s ease; }
.taxi-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(26,46,90,.14); }
.taxi-image-wrap { position: relative; height: 200px; overflow: hidden; }
.taxi-image-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .55s; }
.taxi-card:hover .taxi-image-wrap img { transform: scale(1.07); }
.taxi-availability { position:absolute; top:12px; right:12px; font-size:.7rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.06em; padding:4px 11px; border-radius:20px; }
.taxi-availability.available   { background:rgba(34,197,94,.9);  color:#fff; }
.taxi-availability.unavailable { background:rgba(239,68,68,.9);  color:#fff; }
.taxi-body { padding:18px 20px 20px; display:flex; flex-direction:column; flex:1; gap:12px; }
.taxi-category { font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--secondary); }
.taxi-name { font-size:1.08rem; font-weight:700; color:var(--text-dark); margin:0; }
.taxi-specs { display:grid; grid-template-columns:repeat(2,1fr); gap:8px; }
.taxi-spec { display:flex; align-items:center; gap:7px; font-size:.82rem; color:var(--text-body); }
.taxi-spec i { color:var(--primary); font-size:.8rem; }
.taxi-features { display:flex; flex-wrap:wrap; gap:5px; }
.taxi-feature-tag { font-size:.68rem; color:var(--text-muted); background:var(--bg-light);
  border:1px solid var(--border-light); padding:2px 9px; border-radius:3px; }
.taxi-footer { display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding-top:14px; border-top:1px solid var(--border-light); margin-top:auto; }
.taxi-price { display:flex; flex-direction:column; }
.taxi-price-label { font-size:.65rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.06em; }
.taxi-price-amount { font-size:1.25rem; font-weight:800; color:var(--primary); }
.taxi-price-note { font-size:.65rem; color:var(--text-light); }
.taxi-actions { display:flex; gap:7px; flex-shrink:0; }

/* -- TESTIMONIALS ----------------------------------------------- */
.testimonials-section {
  background: var(--bg-section);
}

.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--secondary);
  opacity: .15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-stars i {
  color: var(--secondary);
  font-size: .9rem;
}

.review-text {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-author-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.review-author-img-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: .92rem;
}
.review-author-trip {
  font-size: .78rem;
  color: var(--secondary);
  font-weight: 500;
  margin-top: 2px;
}

/* -- BLOG CARDS ------------------------------------------------- */
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .28s ease, transform .28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 2px;
}

.blog-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  font-size: .78rem;
  color: var(--text-muted);
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-meta i { color: var(--secondary); font-size: .8rem; }

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--primary); }

.blog-excerpt {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.blog-read-more:hover {
  color: var(--secondary);
  gap: 10px;
}

/* -- GALLERY CAROUSEL ------------------------------------------- */
.gallery-section {
  background: var(--primary-dark);
  padding: 64px 0;
}
.gallery-section .section-heading h2,
.gallery-section .eyebrow {
  color: #fff;
}
.gallery-section .section-heading p { color: rgba(255,255,255,.65); }

.gallery-track-wrap {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.gallery-item {
  flex: 0 0 calc(100% / 6);
  padding: 4px;
  cursor: pointer;
}

.gallery-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
}

.gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover .gallery-item-inner img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,46,90,.6);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.gallery-nav-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-nav-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,.7);
  font-size: 1.6rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color .2s;
  line-height: 1;
}
.lightbox-close:hover { color: #fff; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,.08);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  text-align: center;
  max-width: 500px;
}

/* -- CTA BAND --------------------------------------------------- */
.cta-band {
  background: #12362a;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,.08);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); }

/* -- FOOTER ----------------------------------------------------- */
#site-footer {
  background: #12362a;
  color: rgba(255,255,255,.7);
}

.footer-top {
  padding: 64px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
  height: 150px;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-brand-tagline {
  font-size: .78rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-about-text {
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-contact-item i {
  color: var(--secondary);
  width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a {
  color: rgba(255,255,255,.7);
}
.footer-contact-item a:hover { color: var(--secondary); }

.footer-heading {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '⇒';
  color: var(--secondary);
  font-size: 1rem;
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .88rem;
  font-family: var(--font-body);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input:focus {
  outline: none;
  border-color: var(--secondary);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  font-size: .83rem;
}
.footer-bottom a:hover { color: var(--secondary); }

/* ── WHATSAPP CHAT WIDGET ──────────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.wa-panel,
.wa-trigger {
  pointer-events: auto;
}

/* Panel */
.wa-panel {
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  overflow: hidden;
  transform: translateY(20px) scale(.95);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform .3s cubic-bezier(.34,1.3,.64,1), opacity .25s ease, visibility .25s;
  transform-origin: bottom right;
}
.wa-panel--open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

/* Panel header */
.wa-panel-header {
  background: #25D366;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-panel-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.wa-panel-info {
  flex: 1;
  min-width: 0;
}
.wa-panel-info strong {
  display: block;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-panel-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.85);
  font-size: .72rem;
}
.wa-online-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: wa-pulse 1.8s infinite;
}
@keyframes wa-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
.wa-panel-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  cursor: pointer;
  padding: 4px;
  transition: color .15s;
  flex-shrink: 0;
}
.wa-panel-close:hover { color: #fff; }

/* Chat body */
.wa-panel-body {
  padding: 16px 14px 10px;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3C/svg%3E");
}
.wa-bubble-msg {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 10px 12px 22px;
  position: relative;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,.13);
}
.wa-bubble-emoji {
  font-size: 1rem;
  margin-right: 4px;
}
.wa-bubble-msg p {
  margin: 0;
  font-size: .88rem;
  color: #111;
  line-height: 1.45;
  display: inline;
}
.wa-bubble-time {
  position: absolute;
  bottom: 5px;
  right: 9px;
  font-size: .65rem;
  color: #aaa;
}

/* Options */
.wa-panel-options {
  padding: 10px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #e5ddd5;
}
.wa-option-btn {
  display: block;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  transition: background .2s, transform .15s;
  align-self: flex-end;
  max-width: 85%;
  box-shadow: 0 2px 8px rgba(37,211,102,.35);
}
.wa-option-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

/* Trigger button */
.wa-trigger {
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .3s cubic-bezier(.34,1.3,.64,1), box-shadow .25s;
  position: relative;
  flex-shrink: 0;
  animation: wa-bounce 2.5s ease 2s 3;
}
.wa-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
}
@keyframes wa-bounce {
  0%, 100% { transform: scale(1); }
  40%       { transform: scale(1.18); }
  60%       { transform: scale(.95); }
}

/* Icon toggle */
.wa-trigger-icon { position: absolute; transition: opacity .2s, transform .2s; }
.wa-trigger-icon--wa    { opacity: 1;  transform: scale(1) rotate(0deg); }
.wa-trigger-icon--close { opacity: 0;  transform: scale(.5) rotate(-90deg); font-size: 1.2rem; }

.wa-trigger--open .wa-trigger-icon--wa    { opacity: 0; transform: scale(.5) rotate(90deg); }
.wa-trigger--open .wa-trigger-icon--close { opacity: 1; transform: scale(1) rotate(0deg); }

/* Badge */
.wa-trigger-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: wa-badge-pop .4s cubic-bezier(.34,1.3,.64,1) 1s both;
}
@keyframes wa-badge-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-panel  { width: calc(100vw - 32px); }
  .wa-trigger { width: 52px; height: 52px; font-size: 1.4rem; }
}

/* -- BACK TO TOP ------------------------------------------------ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 28px;
  z-index: 998;
  background: #12362a;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.back-to-top.visible {
  display: flex;
}
.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* -- BOOKING MODAL ---------------------------------------------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.modal-header h4 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--primary);
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--text-dark); }

.modal-body {
  padding: 24px 28px;
}

/* -- FORMS ------------------------------------------------------ */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 7px;
}
.form-label .required { color: #ef4444; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,46,90,.1);
}
.form-control.is-invalid { border-color: #ef4444; }
.form-control.is-valid   { border-color: #22c55e; }

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23444'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.invalid-feedback {
  font-size: .8rem;
  color: #ef4444;
  margin-top: 5px;
  display: none;
}
.form-control.is-invalid ~ .invalid-feedback { display: block; }

/* -- BREADCRUMB ------------------------------------------------- */
.page-hero {
  background: var(--primary);
  padding: 52px 0 44px;
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/general/pattern.png') repeat;
  opacity: .04;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}
.page-hero .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  --bs-breadcrumb-divider: '�';
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: .88rem; }
.page-hero .breadcrumb-item.active { color: var(--secondary); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* -- DETAIL PAGES ----------------------------------------------- */
.detail-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.detail-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.detail-summary-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.detail-price-box {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.detail-price-from { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; }
.detail-price-amount { font-size: 2rem; font-weight: 700; color: var(--primary); font-family: var(--font-heading); }
.detail-price-per { font-size: .82rem; color: var(--text-muted); }

.detail-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.detail-meta li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem;
}
.detail-meta li:last-child { border-bottom: none; }
.detail-meta li span:first-child { color: var(--text-muted); }
.detail-meta li span:last-child  { font-weight: 600; color: var(--text-dark); }

.detail-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Itinerary */
.itinerary-day {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.itinerary-day:last-child { border-bottom: none; }
.itinerary-day-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .7rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.itinerary-day-num span { font-size: 1.1rem; }
.itinerary-day-content { flex: 1; }
.itinerary-day-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 6px;
}
.itinerary-day-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.itinerary-day-meta {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.itinerary-tag {
  font-size: .75rem;
  color: var(--primary);
  background: rgba(26,46,90,.07);
  padding: 3px 9px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Inclusions / Exclusions */
.inclusion-list,
.exclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inclusion-list li,
.exclusion-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .92rem;
  line-height: 1.6;
}
.inclusion-list li i { color: #22c55e; margin-top: 3px; }
.exclusion-list li i { color: #ef4444; margin-top: 3px; }

/* -- BLOG DETAIL ------------------------------------------------ */
.blog-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
}
.blog-content h2 {
  font-size: 1.45rem;
  margin: 32px 0 14px;
  color: var(--primary);
}
.blog-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
}
.blog-content p { margin-bottom: 1.2rem; }
.blog-content img {
  border-radius: var(--radius-sm);
  margin: 20px 0;
  max-width: 100%;
}
.blog-content ul, .blog-content ol {
  padding-left: 24px;
  margin-bottom: 1.2rem;
}
.blog-content li { margin-bottom: 8px; }
.blog-content blockquote {
  border-left: 4px solid var(--secondary);
  padding: 16px 20px;
  background: var(--bg-light);
  margin: 24px 0;
  font-style: italic;
  color: var(--text-muted);
}

/* -- GALLERY PAGE ----------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* -- ALERTS ----------------------------------------------------- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: .92rem;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert i { margin-top: 2px; flex-shrink: 0; }
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.alert-success i { color: #22c55e; }
.alert-danger, .alert-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert-danger i, .alert-error i { color: #ef4444; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.alert-warning i { color: #f59e0b; }
.alert-info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.alert-info i { color: #3b82f6; }

/* -- PAGINATION ------------------------------------------------- */
.pagination .page-link {
  color: var(--primary);
  border-color: var(--border);
  font-size: .88rem;
  padding: 8px 14px;
}
.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}
.pagination .page-link:hover {
  background: var(--bg-section);
  color: var(--primary);
}

/* -- ANIMATIONS ------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="fade-left"] {
  transform: translateX(-28px);
}
[data-animate="fade-left"].animated {
  transform: translateX(0);
}
[data-animate="fade-right"] {
  transform: translateX(28px);
}
[data-animate="fade-right"].animated {
  transform: translateX(0);
}
[data-animate="zoom"] {
  transform: scale(.95);
}
[data-animate="zoom"].animated {
  transform: scale(1);
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-stagger].animated > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
[data-stagger].animated > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s; }
[data-stagger].animated > *:nth-child(3) { opacity:1; transform:none; transition-delay:.19s; }
[data-stagger].animated > *:nth-child(4) { opacity:1; transform:none; transition-delay:.26s; }
[data-stagger].animated > *:nth-child(5) { opacity:1; transform:none; transition-delay:.33s; }
[data-stagger].animated > *:nth-child(6) { opacity:1; transform:none; transition-delay:.40s; }
[data-stagger].animated > *:nth-child(n+7) { opacity:1; transform:none; }

/* Counter animation */
.counter-number { font-variant-numeric: tabular-nums; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-animate], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero-slide-bg { transform: none !important; }
  .gallery-track { transition: none !important; }
}

/* -- UTILITIES -------------------------------------------------- */
.text-primary  { color: var(--primary)   !important; }
.text-secondary{ color: var(--secondary) !important; }
.text-accent   { color: var(--accent)    !important; }
.text-muted    { color: var(--text-muted)!important; }
.bg-primary-soft { background: rgba(26,46,90,.06); }
.bg-secondary-soft { background: rgba(201,168,76,.1); }
.border-primary { border-color: var(--primary) !important; }
.mt-section { margin-top: var(--header-h); }

/* -- RESPONSIVE ------------------------------------------------- */
@media (max-width: 1199.98px) {
  .gallery-item { flex: 0 0 calc(100% / 4); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
  :root { --header-h: 70px; }
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  /* Tablet: logo 86px on all pages at top, 86px when scrolled */
  .site-logo img { height: 86px; }
  #site-header.header-scrolled .site-logo img    { height: 86px; }
  #site-header.header-solid .site-logo img       { height: 86px; }
  #site-header.header-transparent .site-logo img { height: 86px; }
  .hero-title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .slider-arrow { display: none; }
  .quick-search-inner { margin-top: -24px; padding: 18px 20px; }
  .about-image-badge { right: 0; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { flex: 0 0 calc(100% / 3); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-sidebar { position: static; }
  .section { padding: 64px 0; }
}

@media (max-width: 767.98px) {
  /* mobile hero-slider handled in hero form section */
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-desc    { display: none; }
  .hero-actions { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .quick-search-inner { margin-bottom: 0; transform: none; border-radius: 0; padding: 16px 14px; }
  .search-tabs { margin-bottom: 12px; }
  .search-tab { padding: 9px 12px; font-size: .82rem; }
  .about-image-wrap { margin-bottom: 40px; }
  .about-image-main { height: 300px; }
  .about-image-badge { right: 12px; bottom: 12px; }
  .gallery-item { flex: 0 0 calc(100% / 2); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { padding: 40px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 80px; left: 20px; }
  .section { padding: 48px 0; }
  .modal-box { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .modal-overlay { align-items: flex-end; }
  .detail-hero-img { height: 250px; }
  .detail-cta-btns { flex-direction: row; }
}

@media (max-width: 479.98px) {
  .gallery-item { flex: 0 0 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .pkg-actions { flex-direction: column; }
  .pkg-actions .btn { width: 100%; justify-content: center; }
  .taxi-actions { flex-direction: column; }
  .taxi-actions .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat-box { padding: 14px; }
  h2 { font-size: 1.5rem; }
  /* Small mobile: logo 86px normal, 84px sticky */
  .site-logo img { height: 86px; }
  #site-header.header-scrolled .site-logo img    { height: 84px; }
  #site-header.header-solid .site-logo img       { height: 86px; }
  #site-header.header-transparent .site-logo img { height: 86px; }
}

/* -- LOADING SKELETON ------------------------------------------- */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* -- CONTACT PAGE ----------------------------------------------- */
.contact-info-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.contact-info-text strong { display: block; color: #fff; font-size: .9rem; margin-bottom: 2px; }
.contact-info-text a { color: rgba(255,255,255,.75); font-size: .9rem; }
.contact-info-text a:hover { color: var(--secondary); }
.contact-info-text span { color: rgba(255,255,255,.65); font-size: .88rem; }

/* -- PAGE CONTENT ----------------------------------------------- */
.page-content {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--text-body);
}
.page-content h2 { color: var(--primary); margin: 32px 0 14px; font-size: 1.4rem; }
.page-content h3 { font-size: 1.15rem; margin: 22px 0 10px; }
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .9rem;
}
.page-content table th,
.page-content table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.page-content table th {
  background: var(--bg-section);
  font-weight: 700;
  color: var(--text-dark);
}

/* -- SEARCH RESULTS --------------------------------------------- */
.search-result-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-type {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--secondary);
  margin-bottom: 4px;
}
.search-result-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.search-result-title a { color: inherit; }
.search-result-title a:hover { color: var(--secondary); }
.search-result-desc { font-size: .88rem; color: var(--text-muted); }

/* -- TABS ------------------------------------------------------- */
.detail-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.detail-tab-btn {
  padding: 11px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.detail-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.detail-tab-panel { display: none; }
.detail-tab-panel.active { display: block; }

/* -- BADGE STATUSES --------------------------------------------- */
.status-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 2px;
}
.status-featured { background: rgba(201,168,76,.15); color: #a8892e; }
.status-new { background: rgba(59,130,246,.12); color: #1d4ed8; }
.status-popular { background: rgba(224,123,57,.12); color: #c0632a; }

/* ================================================================
   CAB RESULTS POPUP
   ================================================================ */

.cab-results-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 56, .72);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.cab-results-box {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: cabPopupIn .25s cubic-bezier(.34,1.4,.64,1);
}

@keyframes cabPopupIn {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.cab-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
}

.cab-results-route {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .9rem;
  font-weight: 600;
}

.cab-results-route i.fa-long-arrow-alt-right {
  color: var(--secondary);
  font-size: 1.1rem;
}

.cab-route-date {
  background: rgba(255,255,255,.12);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 500;
}

.cab-route-type {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.cab-route-one-way   { background: rgba(201,168,76,.25); color: #f0d278; }
.cab-route-round-trip{ background: rgba(34,197,94,.2);  color: #86efac; }

.cab-results-close {
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.cab-results-close:hover { background: rgba(255,255,255,.25); }

/* Body (scrollable) */
.cab-results-body {
  overflow-y: auto;
  flex: 1;
  padding: 20px 24px;
}

/* Spinner */
.cab-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Individual cab card inside popup */
.cr-cab-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background: #fff;
  transition: box-shadow .2s, border-color .2s;
}
.cr-cab-card:last-child { margin-bottom: 0; }
.cr-cab-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: #f4f6fb;
}
.cr-cab-card.cr-cab-unavailable {
  opacity: .55;
  filter: grayscale(.4);
  pointer-events: none;
}

/* Cab image inside popup */
.cr-cab-img {
  flex-shrink: 0;
  width: 150px;
}
.cr-cab-img img {
  width: 150px;
  height: 95px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}
.cr-no-img {
  width: 150px;
  height: 95px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 2rem;
}

/* Cab info */
.cr-cab-info {
  flex: 1;
  min-width: 0;
}
.cr-cab-category {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--secondary);
  margin-bottom: 4px;
}
.cr-cab-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
  font-family: var(--font-body);
}
.cr-cab-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cr-cab-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cr-cab-specs i { color: var(--primary); font-size: .75rem; }

.cr-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cr-feature-tag {
  background: var(--bg-section);
  color: var(--text-muted);
  font-size: .72rem;
  padding: 2px 9px;
  border-radius: 20px;
  font-weight: 500;
}

/* Price + book column */
.cr-cab-price-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 130px;
  text-align: right;
}
.cr-price-label {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.cr-price-note {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 130px;
}
.cr-book-btn {
  white-space: nowrap;
  width: 100%;
  justify-content: center;
  padding: 9px 18px;
  font-size: .88rem;
}
.cr-unavail-badge {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-section);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Footer note */
.cab-results-footer {
  padding: 12px 24px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  flex-shrink: 0;
}
.cab-results-footer i  { color: var(--primary); margin-right: 4px; }
.cab-results-footer a  { color: var(--primary); font-weight: 600; }

/* Responsive */
@media (max-width: 575.98px) {
  .cab-results-box    { max-height: 100vh; border-radius: var(--radius-md) var(--radius-md) 0 0; align-self: flex-end; }
  .cab-results-overlay{ align-items: flex-end; padding: 0; }
  .cr-cab-card        { flex-wrap: wrap; }
  .cr-cab-img         { width: 100%; }
  .cr-cab-img img     { width: 100%; height: 160px; }
  .cr-cab-price-col   { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; text-align: left; min-width: 0; }
  .cr-book-btn        { width: auto; }
}

/* ================================================================
   PACKAGES COMPACT STRIP
   ================================================================ */

.pkg-strip-section {
  padding: 64px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.pkg-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pkg-strip-header .eyebrow { margin-bottom: 4px; }
.pkg-strip-header h3 {
  font-size: 1.45rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin: 0 0 4px;
}
.pkg-strip-header p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

.pkg-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pkg-strip-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.pkg-strip-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
  color: inherit;
  background: #f4f6fb;
}

.pkg-strip-img {
  position: relative;
  overflow: hidden;
}
.pkg-strip-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.pkg-strip-card:hover .pkg-strip-img img { transform: scale(1.05); }

.pkg-strip-dur {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(14,28,56,.75);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .04em;
}

.pkg-strip-body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pkg-strip-dest {
  font-size: .72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.pkg-strip-dest i { color: var(--secondary); font-size: .65rem; }

.pkg-strip-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0;
  font-family: var(--font-body);
}

.pkg-strip-price {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 6px;
}
.pkg-strip-price strong {
  color: var(--primary);
  font-size: .97rem;
  font-weight: 800;
}
.pkg-strip-price span {
  font-size: .72rem;
  color: var(--text-light);
}

@media (max-width: 991.98px) {
  .pkg-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479.98px) {
  .pkg-strip-grid { grid-template-columns: 1fr; }
  .pkg-strip-header { align-items: flex-start; flex-direction: column; gap: 12px; }
}

/* ================================================================
   CAB BOOKING PAGE � page-hero-mini + form card + vehicle card
   ================================================================ */

/* Mini page hero (used on cab-booking.php) */
.page-hero-mini {
  background: #0c3427;
  padding: 100px 0 36px;
  color: #fff;
}
.page-hero-mini h1 {
  color: #fff;
  font-size: 1.8rem;
  margin: 10px 0 6px;
}
.page-hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.page-hero-subtitle i { color: var(--secondary); }

/* Breadcrumb */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.breadcrumb-nav a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.breadcrumb-nav a:hover { color: var(--secondary); }
.breadcrumb-nav span { color: rgba(255,255,255,.85); }
.breadcrumb-nav i { font-size: .6rem; color: rgba(255,255,255,.35); }

/* Selected vehicle summary card */
.booking-vehicle-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.bvc-image {
  flex-shrink: 0;
  width: 180px;
}
.bvc-image img {
  width: 180px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.bvc-info { flex: 1; min-width: 0; }
.bvc-category {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--secondary);
  margin-bottom: 4px;
}
.bvc-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px;
  font-family: var(--font-body);
}
.bvc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.bvc-specs span { display: flex; align-items: center; gap: 5px; }
.bvc-specs i { color: var(--primary); font-size: .8rem; }
.bvc-features { display: flex; flex-wrap: wrap; gap: 5px; }

.bvc-price {
  flex-shrink: 0;
  text-align: right;
  min-width: 110px;
}
.bvc-price-from {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.bvc-price-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.bvc-price-amount small { font-size: .65rem; font-weight: 600; color: var(--text-muted); }
.bvc-price-note { font-size: .72rem; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }

/* Form card */
.booking-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.booking-form-header {
  background: #12362a;
  padding: 20px 28px;
  color: #fff;
}
.booking-form-header h2 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-weight: 700;
}
.booking-form-header p {
  font-size: .83rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.booking-form-card form {
  padding: 24px 28px 28px;
}

/* Input icon wrapper */
.input-icon-wrap {
  position: relative;
}
.input-icon-wrap .input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .82rem;
  pointer-events: none;
  z-index: 1;
}
.input-icon-wrap .form-control,
.input-icon-wrap select.form-control,
.input-icon-wrap textarea.form-control {
  padding-left: 36px;
}
.input-icon-wrap textarea.form-control {
  padding-top: 10px;
}

/* Disclaimer below submit */
.form-disclaimer {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-disclaimer i { color: var(--primary); }

/* Trust row */
.booking-trust-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-dark);
}
.trust-item i { color: var(--secondary); font-size: .85rem; }

@media (max-width: 767.98px) {
  .booking-vehicle-card { flex-wrap: wrap; }
  .bvc-image            { width: 100%; }
  .bvc-image img        { width: 100%; height: 180px; }
  .bvc-price            { text-align: left; }
  .booking-form-card form { padding: 18px 16px 20px; }
  .booking-form-header  { padding: 16px 18px; }
}

/* specs/features hidden by new card design on homepage � rule no longer needed */


/* ================================================================
   POPULAR ROUTES SECTION
   ================================================================ */

/* -- Section � warm charcoal gradient, professional & premium -- */
.routes-section {
  padding: 88px 0;
  background: #e9f3ea;
  position: relative;
  overflow: hidden;
}

/* Gold mesh top border */
.routes-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--secondary) 30%, #e8c96a 50%, var(--secondary) 70%, transparent 100%);
  opacity: .9;
}

/* Diagonal light sweep � premium feel */
.routes-section::after {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 55%;
  height: 200%;
  background: linear-gradient(105deg, rgba(201,168,76,.04) 0%, rgba(201,168,76,.01) 60%, transparent 100%);
  pointer-events: none;
  transform: skewX(-12deg);
}

/* Section heading row */
.routes-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.routes-section__head .eyebrow {
  color: var(--secondary);
  opacity: 1;
  font-weight: 700;
  letter-spacing: .12em;
}
.routes-section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #12362a;
  margin: 6px 0 8px;
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.routes-section__head h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--secondary), #e8c96a);
  border-radius: 2px;
}
.routes-section__head p {
  color: #000000;
  font-size: .92rem;
  max-width: 540px;
  margin: 0;
  line-height: 1.75;
}
.routes-section__cta-link {
  flex-shrink: 0;
  border-color: rgba(201,168,76,.5);
  color: var(--secondary);
  white-space: nowrap;
  font-weight: 600;
}
.routes-section__cta-link:hover {
  border-color: var(--secondary);
  color: #fff;
  background: rgba(201,168,76,.12);
}

/* -- Grid -- */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* -- Route Card -- */
.route-card {
  background: #ffffff;
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform .3s cubic-bezier(.34,1.3,.64,1),
              box-shadow .3s ease,
              border-color .3s ease,
              background .3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.route-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201,168,76,.6);
  box-shadow: 0 24px 52px rgba(0,0,0,.35),
              0 0 0 1px rgba(201,168,76,.22);
}

/* Featured card — same as normal card, no dark background */
.route-card--featured {
  border-color: rgba(18,54,42,.3);
  box-shadow: 0 4px 28px rgba(0,0,0,.12);
}
.route-card--featured:hover {
  border-color: rgba(201,168,76,.65);
}

/* Tag badge */
.route-card__tag {
  position: absolute;
  top: -1px; right: 18px;
  background: linear-gradient(135deg, var(--secondary), #e8c96a);
  color: #1a1208;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 4px 13px;
  border-radius: 0 0 8px 8px;
  line-height: 1.45;
  box-shadow: 0 2px 8px rgba(201,168,76,.4);
}

/* Route header */
.route-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.route-card__city {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  flex: 1;
}
.route-card__city--to {
  align-items: flex-end;
  text-align: right;
}
.route-card__city span {
  font-size: .95rem;
  font-weight: 800;
  color: #12362a;
  line-height: 1.2;
  letter-spacing: .01em;
}
.route-card__icon-from { color: #12362a; font-size: .72rem; }
.route-card__icon-to   { color: #12362a; font-size: .72rem; }

/* Arrow */
.route-card__arrow {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  padding: 0 3px;
}
.route-card__arrow-line {
  display: block;
  width: 14px; height: 1px;
  background: #12362a;
}
.route-card__taxi-icon {
  color: #12362a;
  font-size: .82rem;
}
.route-card__chevron {
  color: #12362a;
  font-size: .58rem;
}

/* Meta row */
.route-card__meta {
  display: flex;
  gap: 14px;
  font-size: .74rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.route-card__meta span { display: flex; align-items: center; gap: 5px; }
.route-card__meta i { font-size: .68rem; color: #12362a; }

/* Divider */
.route-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.2), transparent);
  margin-bottom: 14px;
}

/* Price list */
.route-card__prices {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.route-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 10px;
  background: #ecf3e4;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.07);
}
.route-card__price-row:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.18);
}
.route-card__price-type {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: #12362a;
  font-weight: 500;
}
.route-card__price-type i {
  color: #12362a;
  font-size: .7rem;
  flex-shrink: 0;
}
.route-card__price-value {
  font-size: .9rem;
  font-weight: 800;
  color: #12362a;
  letter-spacing: -.01em;
  white-space: nowrap;
}

/* Notes */
.route-card__notes {
  margin-bottom: 16px;
}
.route-card__notes p {
  font-size: .68rem;
  color: #12362a;
  margin: 0 0 2px;
  line-height: 1.55;
}

/* CTA button */
.route-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  background: #12362a;
  color: #e9f3ea;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .02em;
  transition: all .25s ease;
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(201,168,76,.25);
}
.route-card__cta:hover {
  background: linear-gradient(135deg, #e0c060 0%, var(--secondary) 100%);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.45);
}

/* -- Responsive -- */
@media (max-width: 1199.98px) {
  .routes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .routes-section { padding: 64px 0; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .routes-section__head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
}
@media (max-width: 575.98px) {
  .routes-section { padding: 48px 0; }
  .routes-grid { grid-template-columns: 1fr; gap: 14px; }
  .route-card__city span { font-size: .88rem; }
}

/* ================================================================
   HOW IT WORKS � PROCESS STRIP
   ================================================================ */

.hiw-section {
  background: #f9f8f5;           /* off-white warm tone */
  padding: 56px 0 52px;
  border-bottom: 1px solid #ede9e0;
  position: relative;
  overflow: hidden;
}

/* faint watermark pattern */
.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Heading */
.hiw-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.hiw-header .eyebrow {
  margin-bottom: 6px;
}
.hiw-header h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: #12362a;
  margin: 0 0 8px;
  font-family: var(--font-heading);
}
.hiw-header p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Steps row */
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Individual step */
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
  gap: 16px;
}

/* Icon wrapper � number badge + icon circle */
.hiw-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.hiw-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #12362a;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .05em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px solid #f9f8f5;
}

.hiw-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #12362a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
  transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s ease;
}
.hiw-step:hover .hiw-icon {
  transform: translateY(-5px) scale(1.07);
  box-shadow: 0 14px 32px rgba(201,168,76,.4);
}

/* Text */
.hiw-step-body h3 {
  font-size: .92rem;
  font-weight: 700;
  color: #12362a;
  margin: 0 0 6px;
  font-family: var(--font-body);
}
.hiw-step-body p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Connector between steps */
.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 40px;      /* align with icon centre */
  flex-shrink: 0;
  width: 60px;
}
.hiw-connector-line {
  display: block;
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgba(201,168,76,.4), rgba(201,168,76,.15));
  border-radius: 2px;
}
.hiw-connector-arrow {
  color: var(--secondary);
  font-size: .65rem;
  opacity: .7;
  margin-left: 2px;
}

/* -- Responsive -- */

/* Tablet: tighter, still horizontal */
@media (max-width: 991.98px) {
  .hiw-section { padding: 44px 0 40px; }
  .hiw-step { max-width: 160px; }
  .hiw-icon { width: 68px; height: 68px; font-size: 1.35rem; }
  .hiw-icon-wrap { width: 68px; height: 68px; }
  .hiw-connector { width: 32px; padding-top: 34px; }
  .hiw-step-body h3 { font-size: .85rem; }
  .hiw-step-body p  { font-size: .73rem; }
}

/* Mobile: 2�2 grid, no connectors */
@media (max-width: 575.98px) {
  .hiw-section { padding: 36px 0 32px; }
  .hiw-header   { margin-bottom: 32px; }
  .hiw-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    justify-items: center;
  }
  .hiw-connector { display: none; }
  .hiw-step { max-width: 140px; gap: 12px; }
  .hiw-icon { width: 64px; height: 64px; font-size: 1.25rem; }
  .hiw-icon-wrap { width: 64px; height: 64px; }
  .hiw-step-body p { display: none; }  /* keep it minimal on small screens */
}

/* ================================================================
   FAQ SECTION
   ================================================================ */

.faq-section {
  padding: 88px 0;
  background: #f5f6f8;
  position: relative;
  overflow: hidden;
}

/* Subtle background shape */
.faq-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(201,168,76,.06);
  pointer-events: none;
}

/* -- Two-column layout -- */
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

/* -- LEFT COLUMN -- */
.faq-left .eyebrow { margin-bottom: 10px; }

.faq-left h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--primary);
  margin: 0 0 14px;
  font-family: var(--font-heading);
  line-height: 1.25;
}

.faq-intro {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Contact card */
.faq-contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.faq-contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(26,46,90,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary);
}
.faq-contact-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px;
  font-family: var(--font-body);
}
.faq-contact-card p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.6;
}

/* WhatsApp link */
.faq-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
  padding: 8px 14px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.faq-whatsapp-link:hover {
  background: #dcfce7;
  border-color: #86efac;
  color: #15803d;
}
.faq-whatsapp-link i { font-size: 1rem; }

/* -- RIGHT COLUMN � Accordion -- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item--open,
.faq-item:focus-within {
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(26,46,90,.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.45;
  transition: color .2s;
}
.faq-item--open .faq-question,
.faq-question:hover { color: var(--primary); }

/* +/- icon toggle */
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  color: var(--primary);
  transition: background .2s, border-color .2s, transform .3s ease;
}
.faq-icon .fa-minus { display: none; }
.faq-item--open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(180deg);
}
.faq-item--open .faq-icon .fa-plus  { display: none; }
.faq-item--open .faq-icon .fa-minus { display: block; color: #fff; }

/* Answer panel */
.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid var(--border-light);
}
.faq-answer[hidden] { display: none; }
.faq-answer p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 14px 0 0;
}

/* -- Responsive -- */
@media (max-width: 991.98px) {
  .faq-section  { padding: 64px 0; }
  .faq-layout   { grid-template-columns: 1fr; gap: 40px; }
  .faq-left h2  { font-size: 1.6rem; }
}
@media (max-width: 575.98px) {
  .faq-section  { padding: 48px 0; }
  .faq-question { font-size: .85rem; padding: 15px 16px; }
  .faq-answer   { padding: 0 16px 14px; }
  .faq-answer p { font-size: .82rem; }
}

/* -- Route card � dual CTA row ------------------------------- */
.route-card__cta-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.route-card__cta {
  flex: 1;
}

.route-card__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.route-card__wa:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
}

/* ================================================================
   POPULAR ROUTES PAGE
   ================================================================ */

/* Filter bar */
.routes-page-filter {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.rpf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}
.rpf-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rpf-label i { color: var(--secondary); font-size: .7rem; }

.rpf-select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text-dark);
  background: var(--bg-light);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
  transition: border-color .2s;
}
.rpf-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,46,90,.08);
}

.rpf-swap {
  padding-bottom: 10px;
  color: var(--text-muted);
  font-size: .9rem;
  flex-shrink: 0;
}

.rpf-btn        { flex-shrink: 0; height: 44px; align-self: flex-end; }
.rpf-btn-clear  { flex-shrink: 0; height: 44px; align-self: flex-end; }

/* Result count */
.routes-page-count {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.routes-page-count strong { color: var(--text-dark); }
.routes-page-count a { color: var(--primary); font-weight: 600; }

/* Wider grid on the full page (3 col desktop, not 4) � cards have more room */
.routes-page-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Empty state */
.routes-page-empty {
  text-align: center;
  padding: 72px 24px;
  color: var(--text-muted);
}
.routes-page-empty i {
  font-size: 3.5rem;
  opacity: .15;
  margin-bottom: 20px;
  display: block;
  color: var(--primary);
}
.routes-page-empty h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.routes-page-empty p { font-size: .9rem; }
.routes-page-empty a { color: var(--primary); font-weight: 600; }

/* Responsive overrides for routes page grid */
@media (max-width: 991.98px) {
  .routes-page-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .routes-page-filter { padding: 16px; }
}
@media (max-width: 575.98px) {
  .routes-page-grid { grid-template-columns: 1fr !important; }
  .rpf-field { min-width: 100%; }
  .rpf-swap  { display: none; }
  .rpf-btn, .rpf-btn-clear { width: 100%; justify-content: center; }
}


/* ================================================================
   DESTINATIONS SECTION � "We Drive in These Cities" (Homepage)
   ================================================================ */

.dest-section {
  padding: 70px 0 60px;
  background: var(--bg-white);
}

.dest-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.dest-section__underline {
  width: 60px;
  height: 3px;
  background: var(--secondary);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Plain multi-column city grid � no grouping, no icons */
.dest-cities-grid {
  columns: 10 110px;
  column-gap: 20px;
  margin-bottom: 48px;
}

.dest-city-link {
  display: block;
  color: var(--text-body);
  font-size: .93rem;
  padding: 4px 0;
  text-decoration: none;
  transition: color .2s;
  break-inside: avoid;
}
.dest-city-link:hover {
  color: var(--secondary);
}

/* Footer CTA */
.dest-section__footer {
  text-align: center;
  padding: 28px 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.dest-section__footer p {
  margin-bottom: 12px;
  color: var(--text-muted);
}

/* -- Responsive -- */
@media (max-width: 991px) {
  .dest-cities-grid { columns: 4 140px; }
}

@media (max-width: 767px) {
  .dest-section { padding: 48px 0 36px; }
  .dest-cities-grid { columns: 3 120px; }
}

@media (max-width: 480px) {
  .dest-cities-grid { columns: 2 140px; }
}


/* ================================================================
   DESTINATION DETAIL PAGE
   ================================================================ */

/* -- Intro info box -- */
.dest-detail-info-box {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dest-detail-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.dest-detail-info-item > i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.dest-detail-info-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dest-detail-info-item strong {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.dest-detail-info-item span {
  font-size: .85rem;
  color: var(--text-muted);
}

/* -- Fare section -- */
.dest-fare-section {
  padding: 70px 0;
  background: var(--bg-section);
}

/* -- No fares placeholder -- */
.dest-no-fares {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
}
.dest-no-fares > i {
  font-size: 2.5rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 16px;
}
.dest-no-fares h3 { margin-bottom: 8px; }
.dest-no-fares p  { color: var(--text-muted); }

/* -- Per-city fare block -- */
.dest-fare-block {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  overflow: hidden;
}

.dest-fare-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}

.dest-fare-block__route {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dest-fare-block__city {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 1.05rem;
}
.dest-fare-block__city--from i { color: rgba(255,255,255,.7); }
.dest-fare-block__city--to  i { color: var(--secondary); }

.dest-fare-block__arrow {
  color: rgba(255,255,255,.5);
  font-size: 1.2rem;
}

.dest-fare-block__meta {
  display: flex;
  gap: 16px;
  font-size: .83rem;
  color: rgba(255,255,255,.8);
}
.dest-fare-block__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* -- Fare table -- */
.dest-fare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dest-fare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.dest-fare-table thead tr {
  background: #f8f9ff;
  border-bottom: 2px solid var(--border);
}

.dest-fare-table th {
  padding: 13px 16px;
  text-align: center;
  font-weight: 600;
  font-size: .82rem;
  color: var(--text-dark);
  white-space: normal;
  line-height: 1.3;
  background: #f0f3ff;
}
.dest-fare-table th:first-child {
  text-align: left;
}

.dest-fare-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background .15s;
}
.dest-fare-table tbody tr:last-child { border-bottom: none; }
.dest-fare-table tbody tr:hover { background: #fafbff; }

.dest-fare-table td {
  padding: 13px 16px;
  vertical-align: middle;
  color: var(--text-body);
  text-align: center;
}
.dest-fare-table td:first-child {
  text-align: left;
}

.dest-fare-cab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

.dest-fare-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

.dest-fare-callus {
  font-size: .88rem;
  color: var(--text-muted);
  font-style: italic;
}

.dest-fare-na {
  color: var(--text-light);
  font-size: .9rem;
}

.dest-fare-book-btn {
  display: inline-block;
  padding: 6px 18px;
  background: var(--secondary);
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  font-size: .82rem;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.dest-fare-book-btn:hover {
  background: var(--secondary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.dest-fare-disclaimer {
  padding: 10px 20px;
  font-size: .78rem;
  color: var(--text-muted);
  background: var(--bg-light);
  margin: 0;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dest-fare-disclaimer i { color: var(--secondary); }

/* Bottom CTA strip */
.dest-fare-section__cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 40px;
}
.dest-fare-section__cta h4 { color: #fff; margin-bottom: 6px; }
.dest-fare-section__cta p  { color: rgba(255,255,255,.75); margin: 0; font-size: .93rem; }

/* -- Mobile responsive fare table -- */
@media (max-width: 640px) {

  .dest-fare-table thead {
    display: none; /* hide header on mobile, use data-label instead */
  }

  .dest-fare-table tbody,
  .dest-fare-table tr,
  .dest-fare-table td {
    display: block;
    width: 100%;
  }

  .dest-fare-table tr {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin: 8px 12px;
    width: calc(100% - 24px);
    box-shadow: var(--shadow-sm);
  }

  .dest-fare-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light);
    font-size: .88rem;
  }
  .dest-fare-table td:last-child { border-bottom: none; }

  .dest-fare-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: .04em;
    flex-shrink: 0;
    margin-right: 12px;
  }

  .dest-fare-table td.dest-fare-table__book-col {
    justify-content: flex-end;
    padding-top: 10px;
    padding-bottom: 12px;
  }
  .dest-fare-table td.dest-fare-table__book-col::before { display: none; }

  .dest-fare-block__header {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .dest-fare-section__cta {
    padding: 24px 20px;
    text-align: center;
  }

  .dest-detail-info-box { padding: 16px; }
}

@media (max-width: 480px) {
  .dest-fare-block__route { gap: 8px; }
  .dest-fare-block__city  { font-size: .92rem; }
}


/* ================================================================
   CAB SEARCH RESULTS PAGE (search-cabs.php)
   ================================================================ */

/* -- Hero mini -- */
.scr-hero { background: var(--primary); padding: 28px 0 24px; }
.scr-hero .breadcrumb-nav { color: rgba(255,255,255,.6); margin-bottom: 10px; font-size: .83rem; }
.scr-hero .breadcrumb-nav a { color: rgba(255,255,255,.7); }
.scr-hero-title { color: #fff; font-size: clamp(1rem, 2.5vw, 1.7rem); margin: 0; line-height: 1.35; word-break: break-word; }
.scr-hero-title span { color: var(--secondary); }

/* -- Section -- */
.scr-section { background: var(--bg-section); padding: 28px 0 60px; }

/* -- Layout -- */
.scr-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

/* -- Sidebar -- */
.scr-sidebar { position: sticky; top: 90px; }

.scr-sidebar-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.scr-sidebar-card__head {
  background: var(--secondary);
  color: #fff;
  padding: 11px 16px;
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scr-modify-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.scr-modify-btn:hover { background: var(--primary-dark); }

.scr-detail-list { padding: 4px 0; }
.scr-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border-light);
  font-size: .83rem;
}
.scr-detail-row:last-child { border-bottom: none; }
.scr-detail-icon { width: 20px; text-align: center; font-size: .82rem; }
.scr-detail-icon--from i { color: var(--primary); }
.scr-detail-icon--to   i { color: var(--accent); }
.scr-detail-icon i { color: var(--text-muted); }
.scr-detail-label { color: var(--text-muted); flex-shrink: 0; min-width: 60px; }
.scr-detail-val   { color: var(--text-dark); font-weight: 500; text-align: right; margin-left: auto; }

/* Collapsible */
.scr-collapsible { cursor: pointer; user-select: none; }
.scr-chevron { transition: transform .25s; }

.scr-fare-list { padding: 4px 0; }
.scr-fare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 14px;
  border-bottom: 1px solid var(--border-light);
  font-size: .8rem;
  gap: 8px;
}
.scr-fare-row:last-child { border-bottom: none; }
.scr-fare-row span:first-child { color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.scr-fare-row span:last-child  { color: var(--text-dark); font-weight: 500; white-space: nowrap; }
.scr-fare-row i { color: var(--secondary); font-size: .72rem; width: 14px; }

/* Modify form */
.scr-modify-form {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 12px;
  box-shadow: var(--shadow-sm);
}
.scr-mf-group { margin-bottom: 12px; }
.scr-mf-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.scr-mf-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.scr-mf-input:focus { border-color: var(--primary); }
.scr-mf-submit {
  width: 100%;
  padding: 9px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
}
.scr-mf-submit:hover { background: var(--primary-dark); }

/* -- Results area -- */
.scr-results { display: flex; flex-direction: column; gap: 16px; }

.scr-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 4px 0;
}
.scr-route-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
}

/* -- Cab card -- */
.scr-cab-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.scr-cab-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}
.scr-cab-card--featured {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(201,168,76,.25), var(--shadow-sm);
}

.scr-cab-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--secondary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 6px 0;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Image */
.scr-cab-img {
  flex-shrink: 0;
  width: 220px;
  height: 150px;
  overflow: hidden;
  background: var(--bg-light);
}
.scr-cab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.scr-cab-card:hover .scr-cab-img img { transform: scale(1.04); }

/* Info */
.scr-cab-info {
  flex: 1;
  padding: 18px 20px;
  min-width: 0;
}

.scr-cab-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.scr-cab-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 3px;
}

.scr-cab-category {
  font-size: .78rem;
  color: var(--secondary);
  font-style: italic;
  font-weight: 500;
}

.scr-cab-stars { display: flex; gap: 2px; }
.scr-cab-stars i { color: var(--secondary); font-size: .75rem; }

.scr-cab-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.scr-cab-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  color: var(--text-muted);
}
.scr-cab-specs i { color: var(--primary); font-size: .78rem; }

.scr-cab-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.scr-price-icon { color: var(--secondary); font-size: .85rem; }
.scr-price-old  { font-size: .9rem; color: var(--text-light); text-decoration: line-through; }
.scr-price-final { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.scr-price-call  { font-size: .9rem; color: var(--text-muted); font-style: italic; }
.scr-price-note  { font-size: .75rem; color: var(--text-muted); }

/* Action column */
.scr-cab-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 18px 20px 18px 0;
}

.scr-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  min-width: 140px;
  text-align: center;
}
.scr-book-btn:hover { background: var(--secondary-dark); color: #fff; transform: translateY(-1px); }

.scr-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}
.scr-wa-btn:hover { background: #1ebe5d; transform: scale(1.1); color: #fff; }

/* Empty state */
.scr-empty-state {
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.scr-empty-state > i {
  font-size: 3rem;
  color: var(--border);
  display: block;
  margin-bottom: 16px;
}
.scr-empty-state h3 { margin-bottom: 8px; }
.scr-empty-state p  { color: var(--text-muted); font-size: .92rem; }

/* Bottom note */
.scr-bottom-note {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.scr-bottom-note i { color: var(--secondary); }

/* -- Mobile Responsive -- */
@media (max-width: 991px) {
  .scr-layout {
    grid-template-columns: 1fr;
  }
  .scr-sidebar { position: static; }
}

@media (max-width: 767px) {
  .scr-cab-card {
    flex-direction: column;
    align-items: stretch;
  }
  .scr-cab-img {
    width: 100%;
    height: 180px;
  }
  .scr-cab-action {
    flex-direction: row;
    padding: 0 16px 16px;
    justify-content: space-between;
  }
  .scr-book-btn { flex: 1; }
  .scr-cab-badge { font-size: .65rem; }
}

@media (max-width: 480px) {
  .scr-section { padding: 16px 0 40px; }
  .scr-cab-info { padding: 14px 14px 8px; }
  .scr-cab-name { font-size: .95rem; }
  .scr-hero { padding: 20px 0 18px; }
  .scr-hero-title { font-size: .95rem; }
  .scr-hero-title i { display: none; }
}


/* ================================================================
   PROMOTIONAL POPUP
   ================================================================ */

.promo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, var(--promo-overlay-opacity, 0.6));
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s ease;
}

.promo-overlay--visible {
  opacity: 1;
}

.promo-box {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
  transform: translateY(32px) scale(.95);
  transition: transform .35s cubic-bezier(.34, 1.3, .64, 1), opacity .3s ease;
  opacity: 0;
}

.promo-overlay--visible .promo-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button */
.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.promo-close:hover {
  background: rgba(0, 0, 0, .8);
  transform: scale(1.1);
}

/* Image */
.promo-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  line-height: 0;
}
.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Body */
.promo-body {
  padding: 24px 28px 28px;
}

.promo-subtitle {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--secondary);
  margin: 0 0 8px;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
  line-height: 1.25;
}

.promo-content {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.promo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.promo-btn-primary {
  background: var(--primary);
  color: #fff;
}
.promo-btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.promo-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.promo-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .promo-body { padding: 18px 18px 22px; }
  .promo-img-wrap { aspect-ratio: 1 / 1; }
  .promo-actions { flex-direction: column; }
  .promo-btn { width: 100%; text-align: center; }
  .promo-close { top: 8px; right: 8px; width: 30px; height: 30px; font-size: .85rem; }
}
