@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #E8620A;
  --primary-hover: #CF5509;
  --primary-light: #F47C2A;
  --primary-pale: #FFF5EF;
  --primary-glow: rgba(232, 98, 10, 0.14);
  --primary-border: rgba(232, 98, 10, 0.28);

  --black: #111111;
  --dark: #1D1D1B;
  --text: #2B2B2B;
  --text-mid: #666666;
  --text-muted: #9E9E9E;

  --border: #E8E8E4;
  --border-light: #F2F2F0;

  --white: #FFFFFF;
  --bg: #FFFFFF;
  --page-bg: #F7F4EF;
  --bg-alt: #EDE9E3;
  --bg-warm: #FAE8D8;
  --bg-dark: #141414;

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 52px rgba(0,0,0,0.11);
  --shadow-primary: 0 8px 28px rgba(232, 98, 10, 0.32);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.transparent {
  background: transparent;
}

.navbar.light {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.navbar.transparent:not(.light) .nav-link { color: rgba(255,255,255,0.9); }
.navbar.transparent:not(.light) .nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar.transparent:not(.light) .nav-link.active { color: #fff; background: rgba(255,255,255,0.12); }
.navbar.transparent.light .nav-link { color: var(--text-mid); }
.navbar.transparent.light .nav-link:hover, .navbar.transparent.light .nav-link.active { color: var(--dark); background: var(--bg-alt); }
.navbar.transparent.light .brand-name { color: var(--dark); }
.navbar.transparent.light .brand-sub { color: var(--text-muted); }
.navbar.transparent:not(.light) .brand-name { color: #fff; }
.navbar.transparent:not(.light) .brand-sub { color: rgba(255,255,255,0.65); }

.nav-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.brand-text { line-height: 1.2; }

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--dark);
  background: var(--bg-alt);
}

.btn-nav-book {
  padding: 9px 22px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.86rem;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-nav-book:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.transparent .nav-toggle span { background: #fff; }

/* ======================== HERO ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 20, 20, 0.42) 0%,
    rgba(20, 20, 20, 0.28) 45%,
    rgba(20, 20, 20, 0.68) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2.5rem 220px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-text { max-width: 640px; text-align: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title-script {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  letter-spacing: 0.01em;
}

.hero-title-caps {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  line-height: 1.7;
  margin: 0 auto 2.25rem;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-hero-primary {
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232, 98, 10, 0.42);
}

.btn-hero-secondary {
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 200px;
  left: 2.5rem;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--primary-light);
  width: 20px;
  border-radius: 3px;
}

/* ======================== BOOKING WIDGET ======================== */
.booking-widget-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 0 2.5rem 2.5rem;
}

.booking-widget {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.widget-tabs {
  display: flex;
  padding: 0 1.75rem;
  border-bottom: 1px solid var(--border-light);
  gap: 0;
}

.widget-tab {
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.widget-tab.active, .widget-tab:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.widget-body {
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr auto;
  gap: 1px;
  background: var(--border-light);
}

.widget-field {
  background: var(--white);
  padding: 0.9rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  transition: var(--transition);
}

.widget-field:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }

.widget-field:hover { background: var(--bg-alt); }

.widget-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.widget-field select,
.widget-field input[type="date"] {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0;
  -webkit-appearance: none;
  cursor: pointer;
  width: 100%;
}

.widget-field select:focus,
.widget-field input:focus { outline: none; }

.widget-field select option { background: var(--white); color: var(--dark); }
.widget-field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.5; }

.widget-submit-wrap {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.btn-widget-search {
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-widget-search:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* ======================== SECTIONS ======================== */
section { padding: 5.5rem 2.5rem; background: var(--page-bg); }
section.bg-alt { background: var(--bg-alt); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  max-width: 500px;
  line-height: 1.75;
  font-weight: 300;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-header-text { flex: 1; }

.btn-view-all {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.btn-view-all:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ======================== DESTINATION CIRCLES ======================== */
.dest-circles-strip {
  padding: 2.5rem 2.5rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-alt);
}

.dest-circles-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.dest-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.dest-circle:hover { transform: translateY(-4px); }

.dest-circle-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--border-light);
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--white);
  transition: var(--transition);
}

.dest-circle:hover .dest-circle-img {
  box-shadow: 0 0 0 3px var(--primary), var(--shadow-md);
}

.dest-circle-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.dest-circle-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ======================== SERVICE CARDS ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.service-card:hover .service-link { gap: 10px; }

/* ZAMBASULTA special card */
.zambasulta-card {
  background: linear-gradient(135deg, var(--primary-pale), #FFF0E4);
  border: 1.5px solid var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.zambasulta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.zambasulta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.zambasulta-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.zambasulta-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zambasulta-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-text {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
  font-weight: 300;
}

.zambasulta-map {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.zambasulta-map-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.route-stops {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.route-stop {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.route-stop-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
  flex-shrink: 0;
}

.route-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 3px;
}

.route-dot.filled { background: var(--primary); }

.route-connector {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 2px 0;
  min-height: 20px;
}

.route-info { padding-bottom: 16px; }
.route-name { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.route-desc { font-size: 0.76rem; color: var(--text-muted); margin-top: 1px; }

/* ======================== DESTINATION CARDS ======================== */
.dest-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.dest-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.dest-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dest-card:hover .dest-card-img img { transform: scale(1.06); }

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.6), transparent 55%);
}

.dest-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  background: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.dest-card-body { padding: 1.25rem; }

.dest-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.dest-card-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.dest-card-count strong { color: var(--primary); font-weight: 600; }

/* ======================== STATS ======================== */
.stats-row {
  background: var(--dark);
  padding: 3.5rem 2.5rem;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span { color: var(--primary-light); }

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ======================== WHY CARDS ======================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}

.why-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-sm);
}

.why-icon { font-size: 1.75rem; margin-bottom: 1rem; }

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.why-text {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ======================== CTA BANNER ======================== */
.cta-band {
  background: var(--dark);
  padding: 5rem 2.5rem;
  text-align: center;
}

.cta-band .section-title { color: var(--white); margin-bottom: 1rem; }
.cta-band .section-desc { color: rgba(255,255,255,0.55); margin: 0 auto 2.5rem; }
.cta-band .section-label { color: var(--primary-light); justify-content: center; }

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-cta-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232,98,10,0.45);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  margin-left: 1rem;
}

.btn-cta-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ======================== PAGE HERO ======================== */
.page-hero {
  padding-top: 72px;
  height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.35), rgba(20,20,20,0.72));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

/* ======================== BOOKING PAGE ======================== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.booking-sidebar { position: sticky; top: 96px; }

.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sidebar-card-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-alt);
}

.sidebar-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.sidebar-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.sidebar-card-body { padding: 1.5rem 1.75rem; }

.cal-status {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  min-height: 20px;
}

.custom-datepicker {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-alt);
}

.datepicker-month-year {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.datepicker-nav {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  background: var(--white);
}

.datepicker-nav:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.datepicker-grid { padding: 10px; }

.datepicker-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.datepicker-day-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 5px 0;
  text-transform: uppercase;
}

.datepicker-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.datepicker-date {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
  position: relative;
}

.datepicker-date:hover:not(.disabled):not(.empty):not(.past) {
  background: var(--primary-pale);
  color: var(--primary);
}

.datepicker-date.today {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.datepicker-date.selected {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.datepicker-date.booked {
  background: #FEF0EE;
  color: #E05A4E;
  cursor: not-allowed;
  font-weight: 600;
}

.datepicker-date.booked::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #E05A4E;
}

.datepicker-date.past,
.datepicker-date.empty {
  color: var(--border);
  cursor: default;
}

.datepicker-date.in-range {
  background: rgba(232, 98, 10, 0.13);
  border-radius: 2px;
  color: var(--dark);
  font-weight: 500;
}
.datepicker-date.in-range:hover {
  background: rgba(232, 98, 10, 0.22);
  color: var(--dark);
}
.datepicker-date.range-start,
.datepicker-date.range-end {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
}
.datepicker-date.range-start:hover,
.datepicker-date.range-end:hover {
  background: var(--primary);
  color: #fff;
}

.datepicker-selected-display {
  padding: 10px 14px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-alt);
}

.datepicker-selected-display strong { color: var(--primary); }

/* Calendar embed */
.calendar-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.calendar-embed-wrap iframe { display: block; width: 100%; }

.cal-legend {
  display: flex;
  gap: 14px;
  padding: 10px 14px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-alt);
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 400;
}

.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.legend-dot.booked { background: #E05A4E; }
.legend-dot.available { background: var(--primary); }

/* Booking Form */
.booking-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.booking-form-header {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-alt);
}

.booking-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.booking-form-subtitle { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; }

.booking-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}

.date-field-wrap { position: relative; }

.datepicker-trigger {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: left;
  width: 100%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}

.datepicker-trigger.has-value { color: var(--dark); }

.datepicker-trigger:hover {
  border-color: var(--primary);
}

.datepicker-popup {
  position: absolute;
  z-index: 100;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
}

.datepicker-popup.open { display: block; }

.terms-box {
  background: var(--bg-warm);
  border: 1.5px solid #F5D5C5;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.terms-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terms-list { display: flex; flex-direction: column; gap: 7px; }

.terms-item {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
  font-weight: 300;
}

.terms-item::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* Custom checkbox */
.form-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.form-checkbox:hover { border-color: var(--primary); }
.form-checkbox:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-checkbox:focus-visible {
  outline: 2px solid var(--primary-pale);
  outline-offset: 2px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Contact card */
.contact-info-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.contact-info-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-info-links { display: flex; flex-direction: column; gap: 10px; }

.contact-info-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.contact-info-link:hover { color: var(--primary); }
.contact-info-link-num { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.contact-info-link-label { font-size: 0.72rem; color: var(--text-muted); }

/* ======================== GALLERY ======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.gallery-item:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  transform: scale(1.015);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-placeholder-icon { font-size: 2rem; opacity: 0.25; }
.gallery-placeholder-text { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }

/* ======================== ABOUT PAGE ======================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.about-img-wrap { position: sticky; top: 96px; }

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 3/4;
  border: 1.5px solid var(--border);
}

.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--bg-alt), var(--bg-warm));
}

.placeholder-icon { font-size: 4rem; opacity: 0.2; }
.placeholder-text { font-size: 0.78rem; color: var(--text-muted); }

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pale);
  border: 1.5px solid var(--primary-border);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-highlight {
  padding: 1.1rem;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
}

.about-highlight-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.about-highlight-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.clients-section { margin-top: 1.75rem; }

.clients-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.clients-list { display: flex; flex-wrap: wrap; gap: 8px; }

.client-tag {
  padding: 5px 14px;
  background: var(--primary-pale);
  border: 1.5px solid var(--primary-border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary);
}

.vehicle-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}

.vehicle-img {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-warm), var(--primary-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--border);
}

.vehicle-info { padding: 1.25rem; }

.vehicle-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.vehicle-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.vehicle-spec { display: flex; flex-direction: column; gap: 2px; }
.spec-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); }
.spec-value { font-size: 0.86rem; font-weight: 500; color: var(--text); }

/* ======================== DESTINATIONS PAGE ======================== */
.dest-region-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.dest-tab {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  background: var(--bg);
}

.dest-tab.active, .dest-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.dest-region-section { display: none; }
.dest-region-section.active { display: block; }

.dest-region-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.dest-region-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 2rem;
}

.dest-spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.dest-spot-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.dest-spot-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
}

.dest-spot-img {
  height: 140px;
  overflow: hidden;
  background: var(--bg-alt);
}

.dest-spot-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-spot-card:hover .dest-spot-img img { transform: scale(1.08); }

.dest-spot-info { padding: 0.85rem 1rem; }

.dest-spot-name {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--dark);
}

/* ======================== FOOTER ======================== */
.footer {
  background: var(--dark);
  padding: 4rem 2.5rem 2rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.footer-brand-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
  margin: 0.75rem 0 1.25rem;
}

.footer-contacts { display: flex; flex-direction: column; gap: 8px; }

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact strong { color: rgba(255,255,255,0.85); }

.footer-heading {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  font-weight: 300;
}

.footer-links a:hover { color: var(--primary-light); }

.footer-coverage { display: flex; flex-direction: column; gap: 8px; }

.coverage-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.coverage-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-weight: 300; }

/* ======================== FORM SUCCESS ======================== */
.form-success {
  display: none;
  background: var(--primary-pale);
  border: 1.5px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 1rem;
}

.form-success.show { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-success-text { font-size: 0.88rem; color: var(--text-mid); font-weight: 300; line-height: 1.65; }

/* ======================== LOADING ======================== */
.loading-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.loading-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  animation: blink 1.2s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

/* ======================== TRUSTED BY STRIP ======================== */
.trusted-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}

.trusted-strip::before,
.trusted-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trusted-strip::before { left: 0; background: linear-gradient(to right, var(--bg-alt) 20%, transparent); }
.trusted-strip::after  { right: 0; background: linear-gradient(to left,  var(--bg-alt) 20%, transparent); }

.trusted-label {
  text-align: center;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.trusted-track { overflow: hidden; }

.trusted-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: trustedScroll 24s linear infinite;
  width: max-content;
}
.trusted-inner:hover { animation-play-state: paused; }

.trusted-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  opacity: 0.38;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
  padding: 0 2.5rem;
}
.trusted-item:hover { opacity: 0.85; filter: grayscale(0); }

.trusted-item-icon { font-size: 1.15rem; }

.trusted-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.trusted-sep {
  color: var(--border);
  font-weight: 300;
  font-size: 1rem;
  flex-shrink: 0;
}

@keyframes trustedScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================== STORY LAYOUT ======================== */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ======================== UTILITIES ======================== */
.bg-alt { background: var(--bg-alt); }
.text-primary { color: var(--primary); }
.btn-flex { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ======================== ANIMATIONS ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.07s; }
.fade-up:nth-child(3) { transition-delay: 0.14s; }
.fade-up:nth-child(4) { transition-delay: 0.21s; }
.fade-up:nth-child(5) { transition-delay: 0.28s; }
.fade-up:nth-child(6) { transition-delay: 0.35s; }
.fade-up:nth-child(7) { transition-delay: 0.42s; }
.fade-up:nth-child(8) { transition-delay: 0.49s; }

/* ======================== RESPONSIVE ======================== */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { position: static; }
  .about-img { max-width: 440px; aspect-ratio: 4/3; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .zambasulta-card { grid-template-columns: 1fr; }
  .widget-body { grid-template-columns: 1fr 1fr; }
  .widget-submit-wrap { grid-column: 1/-1; justify-content: flex-end; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
  .story-layout { gap: 3rem; }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { display: block; padding: 12px 14px; font-size: 0.95rem; }
  .btn-nav-book { margin: 0.5rem 0 0; text-align: center; border-radius: var(--radius-sm); padding: 13px 22px; display: block; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-body { padding: 100px 1.25rem 330px; }
  .hero-dots { left: 1.25rem; bottom: 275px; }
  .hero-subtitle { font-size: 0.88rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; width: 100%; }

  /* Booking widget */
  .booking-widget-wrap { padding: 0 0.75rem 1.25rem; }
  .booking-widget { border-radius: var(--radius); }
  .widget-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 0 1rem; scrollbar-width: none; }
  .widget-tabs::-webkit-scrollbar { display: none; }
  .widget-tab { white-space: nowrap; padding: 12px 14px; font-size: 0.78rem; flex-shrink: 0; }
  .widget-body { grid-template-columns: 1fr; background: none; gap: 0; }
  .widget-field { border-bottom: 1px solid var(--border-light); border-radius: 0 !important; }
  .widget-submit-wrap { grid-column: 1; justify-content: stretch; border-radius: 0 0 var(--radius) var(--radius); padding: 1rem; }
  .btn-widget-search { width: 100%; justify-content: center; padding: 14px; }

  /* Sections */
  section, section.bg-alt { padding: 3rem 1.25rem; }
  .section-inner { width: 100%; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
  .section-title { font-size: clamp(1.75rem, 6.5vw, 2.6rem); }

  /* Story layout */
  .story-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Service cards */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .service-card { padding: 1.25rem; }
  .service-icon { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 0.9rem; }
  .service-name { font-size: 1rem; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .why-card { padding: 1.25rem; }

  /* Destination cards */
  .dest-cards-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .dest-card-img { height: 160px; }

  /* Dest circles */
  .dest-circles-strip { padding: 1.75rem 1.25rem; }
  .dest-circles-row { gap: 1.25rem; overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 0.5rem; scrollbar-width: none; }
  .dest-circles-row::-webkit-scrollbar { display: none; }
  .dest-circle-img { width: 70px; height: 70px; flex-shrink: 0; }
  .dest-circle { flex-shrink: 0; }

  /* Booking page */
  .booking-form-card { border-radius: var(--radius); }
  .booking-form-header { padding: 1.25rem 1.25rem; }
  .booking-form { padding: 1.25rem; gap: 1rem; }
  .sidebar-card { border-radius: var(--radius); }
  .sidebar-card-header { padding: 1.25rem; }
  .sidebar-card-body { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }

  /* Datepicker popup — fixed bottom sheet on mobile */
  .datepicker-popup {
    position: fixed;
    left: 0; right: 0; bottom: 0; top: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
    max-height: 85vh;
    overflow-y: auto;
    z-index: 9999;
  }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* About */
  .about-highlights { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .clients-list { gap: 6px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3rem 1.25rem 1.5rem; }

  /* Page hero */
  .page-hero { height: 220px; padding: 0 1.25rem 1.75rem; padding-top: 72px; }
  .page-hero-title { font-size: clamp(1.8rem, 7vw, 3rem); }

  /* CTA band */
  .cta-band { padding: 3.5rem 1.25rem; }
  .cta-band .btn-cta-ghost { margin-left: 0; margin-top: 0.75rem; display: inline-flex; }

  /* ZAMBASULTA */
  .zambasulta-card { padding: 1.5rem; gap: 2rem; }

  /* Destinations page */
  .dest-region-tabs { gap: 6px; }
  .dest-tab { font-size: 0.8rem; padding: 7px 16px; }
  .dest-spots-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .dest-spot-img { height: 120px; }
}

/* ---- Small phones (≤480px) ---- */
@media (max-width: 480px) {
  /* Hero */
  .hero-body { padding: 88px 1rem 380px; }
  .hero-dots { left: 1rem; bottom: 330px; }
  .hero-title-script { font-size: 1.85rem; }
  .hero-title-caps { font-size: 2.1rem; }
  .hero-actions { gap: 0.65rem; }

  /* Booking widget */
  .booking-widget-wrap { padding: 0 0.5rem 1rem; }

  /* Story stats — keep 2 cols, they're compact */
  .story-stats-grid > div { padding: 1.1rem 0.75rem !important; }

  /* Services — single column on tiny screens */
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* Destination cards — single col */
  .dest-cards-grid { grid-template-columns: 1fr; }
  .dest-spots-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }

  /* About */
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .vehicle-specs { grid-template-columns: 1fr; }

  /* Booking form */
  .booking-form { padding: 1rem; }
  .terms-box { padding: 1rem; }
  .terms-item { font-size: 0.78rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }

  /* Sections */
  section, section.bg-alt { padding: 2.5rem 1rem; }
  .cta-band { padding: 3rem 1rem; }

  /* CTA buttons full width on tiny phones */
  .cta-band .btn-cta-primary,
  .cta-band .btn-cta-ghost { display: flex; justify-content: center; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
  .cta-band .btn-cta-ghost { margin-top: 0.65rem; }
}

/* ================================================================
   FLOATING CHAT FAB
   ================================================================ */
.chat-fab {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.chat-fab-main {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 4px 18px rgba(232,98,10,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  order: 2;
}
.chat-fab-main:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(232,98,10,0.55); }

.chat-fab-icon-close { display: none; font-style: normal; }
.chat-fab.open .chat-fab-icon-open { display: none; }
.chat-fab.open .chat-fab-icon-close { display: block; }

.chat-fab-options {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.chat-fab.open .chat-fab-options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-fab-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-end;
  text-decoration: none;
}
.chat-fab-label {
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  letter-spacing: 0.02em;
}
.chat-fab-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  flex-shrink: 0;
  transition: transform 0.15s;
}
.chat-fab-btn:hover { transform: scale(1.1); }
.chat-fab-btn--messenger { background: #0084FF; }
.chat-fab-btn--facebook  { background: #1877F2; }
.chat-fab-btn--call      { background: var(--primary); }

/* ================================================================
   MOBILE STICKY CTA BAR
   ================================================================ */
.mobile-sticky-cta {
  display: none;
}

/* ================================================================
   PRICING SECTION
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: var(--transition);
}
.pricing-card:hover { border-color: var(--primary-border); box-shadow: var(--shadow); }
.pricing-card.featured { border-color: var(--primary-border); background: var(--bg-warm); }
.pricing-card-icon { font-size: 1.4rem; margin-bottom: 0.25rem; }
.pricing-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.pricing-card-rate { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.pricing-card-unit { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-card-note { font-size: 0.8rem; color: var(--text-mid); margin-top: 0.3rem; line-height: 1.5; font-weight: 300; }
.pricing-card-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  align-self: flex-start;
}
.pricing-footer-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 1.1rem 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  line-height: 1.65;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--primary-border); }
.testimonial-stars { color: var(--primary); font-size: 0.85rem; letter-spacing: 3px; }
.testimonial-quote {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.78;
  font-style: italic;
  font-weight: 300;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); line-height: 1.3; }
.testimonial-role { font-size: 0.74rem; color: var(--text-muted); margin-top: 1px; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.18s;
  line-height: 1.4;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-item.open .faq-question { background: var(--bg-warm); color: var(--primary); }
.faq-chevron {
  font-size: 0.78rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); border-color: var(--primary-border); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  background: var(--bg);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.78;
  font-weight: 300;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0.15rem 1.5rem 1.25rem; }

/* ================================================================
   RESPONSIVE — NEW FEATURES
   ================================================================ */
@media (max-width: 768px) {
  /* Floating FAB — sit above sticky bar */
  .chat-fab { bottom: 5.5rem; right: 1rem; }
  .chat-fab-main { width: 52px; height: 52px; font-size: 1.25rem; }
  .chat-fab-btn { width: 42px; height: 42px; font-size: 1rem; }

  /* Sticky mobile CTA */
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9980;
    background: var(--white);
    border-top: 1.5px solid var(--border);
    padding: 0.7rem 1rem;
    gap: 0.65rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.09);
  }
  .mobile-sticky-book {
    flex: 1;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.18s;
  }
  .mobile-sticky-book:hover { background: var(--primary-dark); }
  .mobile-sticky-messenger {
    flex: 1;
    background: #0084FF;
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.18s;
  }
  .mobile-sticky-messenger:hover { background: #006fd6; }

  /* Prevent content from hiding behind sticky bar */
  body { padding-bottom: 72px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .chat-fab { bottom: 5rem; right: 0.75rem; }
}
