/* ============================================================
   Wonder of Lanka - Main Stylesheet
   Color Scheme:
     Primary  : #1a56db (ocean blue)
     Secondary: #0ea5e9 (sky blue — CTAs)
     Dark     : #0F172A
     Light    : #F8FAFC
   ============================================================ */

/* ── Google Fonts imported via HTML <link> ── */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:       #1a56db;
  --primary-light: #2563eb;
  --primary-dark:  #1e3a8a;
  --secondary:     #0ea5e9;
  --secondary-dark:#0284c7;
  --accent:        #1a56db;
  --accent-light:  #2563eb;
  --dark:          #0F172A;
  --dark-2:        #1E293B;
  --dark-3:        #334155;
  --light:         #F8FAFC;
  --light-2:       #F1F5F9;
  --light-3:       #E2E8F0;
  --text:          #1E293B;
  --text-muted:    #64748B;
  --white:         #FFFFFF;
  --black:         #000000;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py:   5rem;
  --container-px: 1.25rem;

  /* Border Radius */
  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  2rem;
  --radius-full:9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.16);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.20);

  /* Transitions */
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s ease;

  /* Navbar height */
  --nav-height: 72px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

button { cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark);
}

p { color: var(--text-muted); }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-py    { padding: var(--section-py) 0; }
.section-py-sm { padding: 3rem 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-primary   { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent    { color: var(--accent); }
.text-muted     { color: var(--text-muted); }
.text-white     { color: var(--white); }

.bg-primary  { background: var(--primary); }
.bg-dark     { background: var(--dark); }
.bg-light    { background: var(--light); }
.bg-light-2  { background: var(--light-2); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.flex        { display: flex; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.flex-between{ display:flex; align-items:center; justify-content:space-between; }
.flex-col    { flex-direction: column; }
.gap-1  { gap: .5rem; }
.gap-2  { gap: 1rem; }
.gap-3  { gap: 1.5rem; }
.gap-4  { gap: 2rem; }

.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }

/* Section headings */
.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(26,86,219,.08);
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .75rem;
  line-height: 1.2;
}

.section-title span {
  color: inherit;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .9375rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,86,219,.35);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14,165,233,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.badge-primary  { background: var(--primary); color: var(--white); }
.badge-secondary{ background: var(--primary-light); color: var(--white); }
.badge-accent   { background: var(--primary-dark); color: var(--white); }
.badge-success  { background: #1a56db; color: var(--white); }

/* Stars */
.stars { color: var(--secondary); font-size: .875rem; }

/* ============================================================
   4. PAGE FADE-IN ANIMATION
   ============================================================ */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body { animation: pageFadeIn .4s ease forwards; }

/* ============================================================
   5. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============================================================
   6. NAVBAR
   ============================================================ */

/* --- Base state: transparent over hero --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}

/* --- Scrolled state: white --- */
.navbar.is-scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 #e2e8f0, 0 4px 24px rgba(0,0,0,.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand .logo-img {
  height: 48px;
  width: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  border-radius: 6px;
  transition: color .2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #ffffff; }

.nav-links a.active {
  color: #ffffff;
  font-weight: 600;
}

/* When scrolled — dark links */
.navbar.is-scrolled .nav-links a {
  color: #334155;
}

.navbar.is-scrolled .nav-links a:hover,
.navbar.is-scrolled .nav-links a.active {
  color: #1a56db;
}

/* CTA button */
.nav-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* Book Now button — always green */
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1.25rem;
  background: #1a56db;
  color: #fff !important;
  font-size: .875rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s ease;
  white-space: nowrap;
}

.nav-book-btn:hover { background: #1e3a8a; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border: none;
  background: none;
  border-radius: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: all .25s ease;
}

.navbar.is-scrolled .hamburger span { background: #334155; }

.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 drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: #ffffff;
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 9998;
  border-top: 1px solid #e2e8f0;
  flex-direction: column;
  gap: .25rem;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  padding: .75rem .5rem;
  font-size: .9375rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: #1a56db; }

.mobile-nav .nav-book-btn {
  margin-top: .75rem;
  justify-content: center;
  padding: .75rem;
}

/* ============================================================
   7. HERO (HOME)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Two-column wrapper */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.hero-bg.loaded { transform: scale(1); }

/* directional overlay: dark left → transparent right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.60) 45%,
    rgba(0,0,0,.20) 100%
  );
}

.hero-content {
  text-align: left;
}

/* eyebrow */
.hero-eyebrow {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  animation: fadeInDown .7s ease .2s both;
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
  animation: fadeInUp .7s ease .35s both;
}

.hero-title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,.75);
}

.hero-subtitle {
  font-size: clamp(.9375rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 400;
  animation: fadeInUp .7s ease .5s both;
}

.hero-buttons {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .65s both;
  margin-bottom: 3rem;
}

/* solid primary CTA */
.btn-hero-primary {
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--white);
  font-weight: 700;
  letter-spacing: .01em;
  transition: all .25s;
}
.btn-hero-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ghost secondary CTA */
.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
  font-weight: 500;
  transition: all .25s;
}
.btn-hero-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .8s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  font-weight: 400;
}

.hero-trust-item i {
  color: var(--secondary);
  font-size: .75rem;
}

.hero-trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp .7s ease 1s both;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: .65rem;
  animation: bounceDown 1.5s ease infinite;
}

/* hide old unused badge rule */
.hero-badge { display: none; }

/* Hero page variant */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
  padding-top: var(--nav-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,.6), rgba(15,23,42,.8));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: .75rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .9375rem;
}

.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ============================================================
   8. KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes bounceDown {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(6px); }
}
@keyframes countUp {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(14,165,233,.4); }
  50%      { box-shadow: 0 0 0 12px rgba(14,165,233,0); }
}
@keyframes float {
  0%,100% { transform:translateY(0px); }
  50%      { transform:translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position:-200% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   9. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  padding: 3rem 0;
  border-top: 1px solid var(--light-3);
  border-bottom: 1px solid var(--light-3);
}

.stats-bar::before { display: none; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--light-3);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: .8125rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.stat-icon { display: none; }

/* ============================================================
   10. PACKAGE CARDS
   ============================================================ */
.packages-section {
  background: linear-gradient(160deg, #f0f7f3 0%, #ffffff 50%, #f4f8ff 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.pkg-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: box-shadow .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  box-shadow: 0 18px 48px rgba(0,0,0,.11);
  transform: translateY(-6px);
}

.pkg-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.pkg-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
  display: block;
}

.pkg-card:hover .pkg-img-wrap img { transform: scale(1.07); }

/* Gradient overlay */
.pkg-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, transparent 45%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}

/* Label badges — color per type */
.pkg-label {
  position: absolute;
  top: .875rem; left: .875rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pkg-label--bestseller { background: rgba(26,86,219,.9);  color: #fff; }
.pkg-label--popular    { background: rgba(26,107,138,.9); color: #fff; }
.pkg-label--premium    { background: rgba(100,60,170,.9); color: #fff; }
.pkg-label--adventure  { background: rgba(200,90,20,.9);  color: #fff; }
.pkg-label--scenic     { background: rgba(10,130,180,.9); color: #fff; }
.pkg-label--exclusive  { background: rgba(180,30,90,.9);  color: #fff; }

/* Price tag — bottom-right of image */
.pkg-price-tag {
  position: absolute;
  bottom: .875rem; right: .875rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #ffffff;
  border-radius: 12px;
  padding: .35rem .8rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

.pkg-price-from {
  font-size: .6rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1;
  margin-bottom: .12rem;
}

.pkg-price-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pkg-body {
  padding: 1.3rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Feature chips */
.pkg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .875rem;
}

.pkg-chip {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(26,86,219,.07);
  border: 1px solid rgba(26,86,219,.15);
  padding: .22rem .65rem;
  border-radius: 999px;
}

.pkg-chip i { font-size: .62rem; }

.pkg-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.pkg-desc {
  font-size: .845rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* Explore button — full width, outlined */
.pkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 999px;
  padding: .6rem 1.2rem;
  transition: background .2s, color .2s, gap .2s, transform .2s;
  letter-spacing: .02em;
  text-decoration: none;
  margin-top: auto;
}

.pkg-btn:hover {
  background: var(--primary);
  color: #fff;
  gap: .7rem;
  transform: translateY(-1px);
}

.pkg-btn i { font-size: .7rem; }

/* Legacy — hide old link style if lingering */
.pkg-link { display: none; }
.pkg-meta  { display: none; }

.packages-more {
  text-align: center;
  margin-top: 3rem;
}

/* Modern compact CTA — overrides btn-lg inside section footers */
.packages-more .btn-lg {
  padding: .65rem 1.75rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: 999px;
  border-width: 1.5px;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.packages-more .btn-lg i { font-size: .8rem; }

/* ============================================================
   11. WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content .section-label,
.why-content .section-title,
.why-content .section-subtitle {
  text-align: left;
  margin-left: 0;
}

.why-content .section-subtitle { max-width: 100%; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid #E2E8F0;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid #E2E8F0;
  transition: none;
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26,86,219,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.why-feature-text h4 {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .2rem;
}

.why-feature-text p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-image-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.why-image-badge p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 100px;
}

/* ============================================================
   12. DESTINATIONS GALLERY
   ============================================================ */
.destinations-section { background: var(--light-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-name {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .375rem;
}

.gallery-location {
  color: rgba(255,255,255,.75);
  font-size: .8125rem;
  margin-top: .2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: var(--transition-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   13. HOW IT WORKS
   ============================================================ */
.how-section {
  background: linear-gradient(160deg, #f0f7f3 0%, #ffffff 55%, #f4f8ff 100%);
  padding: 5rem 0;
}

/* ── Grid ─────────────────────────────────────────────── */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

/* connector line between cards */
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, #1e3a8a 50%, var(--secondary) 100%);
  opacity: .25;
  z-index: 0;
}

/* ── Card ─────────────────────────────────────────────── */
.hiw-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(26,86,219,.1);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  padding: 2rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  transition: transform .28s, box-shadow .28s;
}

.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(26,86,219,.12);
}

/* ── Icon wrap (icon + step badge) ───────────────────── */
.hiw-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.hiw-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26,86,219,.3);
  position: relative;
  z-index: 1;
}

/* Step accent colours */
.hiw-icon--2 { background: linear-gradient(135deg, #1a6b8a 0%, #0e4d65 100%); box-shadow: 0 6px 20px rgba(26,107,138,.3); }
.hiw-icon--3 { background: linear-gradient(135deg, #c0392b 0%, #922b21 100%); box-shadow: 0 6px 20px rgba(192,57,43,.3); }
.hiw-icon--4 { background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%); box-shadow: 0 6px 20px rgba(212,160,23,.3); }

.hiw-step-num {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 2;
  font-family: var(--font-heading);
}

.hiw-step-num--2 { background: #1a6b8a; }
.hiw-step-num--3 { background: #c0392b; }
.hiw-step-num--4 { background: #d4a017; }

/* ── Body ─────────────────────────────────────────────── */
.hiw-body { flex: 1; display: flex; flex-direction: column; gap: .6rem; }

.hiw-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.hiw-desc {
  font-size: .845rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.hiw-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.hiw-link:hover { gap: .55rem; }

.hiw-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: #b8860b;
  background: #fef9e7;
  border: 1px solid #f9e08a;
  padding: .3rem .75rem;
  border-radius: 20px;
  width: fit-content;
  margin-top: auto;
}

/* legacy selectors — kept so nothing breaks */
.steps-grid { display: none; }
.step-num, .step-title, .step-desc, .step-number, .step-icon { display: none; }

/* ============================================================
   14. TESTIMONIALS (Reviews)
   ============================================================ */

/* ── Section ─────────────────────────────────────────── */
.rv-section {
  background: #F8FAFC;
  padding: 5rem 0;
}

/* ── Top rating bar ──────────────────────────────────── */
.rv-rating-bar {
  background: #fff;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 1.2rem 0;
  margin-bottom: 3.5rem;
}

.rv-rating-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Overall score block */
.rv-score-block {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.rv-big-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -.02em;
}

.rv-score-detail { display: flex; flex-direction: column; gap: .25rem; }

.rv-stars { color: #f59e0b; font-size: .9rem; gap: .1rem; display: flex; }

.rv-review-count {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.rv-rating-sep {
  width: 1px;
  height: 44px;
  background: #E2E8F0;
  flex-shrink: 0;
}

/* Platform pills */
.rv-platforms { display: flex; gap: .75rem; flex-wrap: wrap; }

.rv-platform {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .9rem;
  border-radius: 10px;
  border: 1.5px solid #E2E8F0;
  background: #fff;
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.rv-platform:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

/* Brand icon circles */
.rv-plat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.rv-platform--google .rv-plat-icon  { background: #fce8e6; color: #ea4335; }
.rv-platform--ta     .rv-plat-icon  { background: #e6f4f1; color: #00aa6c; }
.rv-platform--fb     .rv-plat-icon  { background: #e7f0fd; color: #1877f2; }

.rv-platform--google:hover { border-color: #ea433530; }
.rv-platform--ta:hover     { border-color: #00aa6c30; }
.rv-platform--fb:hover     { border-color: #1877f230; }

.rv-plat-info { display: flex; flex-direction: column; gap: .1rem; }

.rv-plat-name {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
}

.rv-plat-row {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.rv-plat-row i    { color: #f59e0b; font-size: .7rem; }
.rv-plat-row strong { font-size: .9rem; font-weight: 800; color: var(--dark); line-height: 1; }

/* ── Cards grid ──────────────────────────────────────── */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ── Card ─────────────────────────────────────────────── */
.rv-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform .28s, box-shadow .28s;
  position: relative;
}

.rv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.09);
}

/* Featured card — green accent */
.rv-card--featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(26,86,219,.2);
}
.rv-card--featured:hover {
  box-shadow: 0 20px 50px rgba(26,86,219,.28);
}

/* ── Card top row ─────────────────────────────────────── */
.rv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rv-card-quote {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(26,86,219,.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.rv-card--featured .rv-card-quote {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.rv-stars-sm { color: #f59e0b; font-size: .82rem; letter-spacing: .05em; }

/* ── Review text ─────────────────────────────────────── */
.rv-text {
  font-size: .895rem;
  color: #444;
  line-height: 1.75;
  flex: 1;
}
.rv-card--featured .rv-text { color: rgba(255,255,255,.9); }

/* ── Tour tag ────────────────────────────────────────── */
.rv-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(26,86,219,.07);
  border: 1px solid rgba(26,86,219,.15);
  padding: .25rem .75rem;
  border-radius: 20px;
  width: fit-content;
}

.rv-tag--light {
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.3);
}

/* ── Footer ──────────────────────────────────────────── */
.rv-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid #E2E8F0;
  margin-top: auto;
}
.rv-card--featured .rv-footer { border-top-color: rgba(255,255,255,.2); }

.rv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rv-avatar--green { background: var(--primary); color: #fff; }
.rv-avatar--teal  { background: #1e3a8a; color: #fff; }
.rv-avatar--white { background: rgba(255,255,255,.3); color: #fff; border: 2px solid rgba(255,255,255,.4); }

.rv-person { flex: 1; min-width: 0; }

.rv-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rv-card--featured .rv-name { color: #fff; }

.rv-location { font-size: .75rem; color: var(--text-muted); margin-top: .1rem; }
.rv-card--featured .rv-location { color: rgba(255,255,255,.65); }

.rv-verified {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  font-weight: 600;
  color: #1a56db;
  white-space: nowrap;
  flex-shrink: 0;
}
.rv-verified--light { color: rgba(255,255,255,.85); }

/* ── Dot indicators ──────────────────────────────────── */
.rv-dots {
  display: none;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.4rem;
}

.rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: background .25s, width .25s;
}

.rv-dot--active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ── Legacy selectors — hide old homepage testimonial markup only ─ */
.testi-grid, .testi-card, .testi-bottom, .testi-platforms { display: none !important; }

/* Re-enable inside the dedicated testimonials section on about.html */
.testimonials-section .testi-grid      { display: grid  !important; }
.testimonials-section .testi-card      { display: flex  !important; }
.testimonials-section .testi-bottom    { display: flex  !important; }
.testimonials-section .testi-platforms { display: flex  !important; }

/* ============================================================
   15. BOOKING FORM SECTION
   ============================================================ */
.booking-section {
  background: #E8F3EE;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #C8DDD4;
  border-bottom: 1px solid #C8DDD4;
}

.booking-section::before { display: none; }

.booking-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.booking-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: .75rem;
}

.booking-content p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.booking-form {
  display: flex;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--light-3);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}

.booking-form-group {
  flex: 1;
  min-width: 160px;
}

.booking-form-group label {
  display: block;
  color: var(--text-muted);
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.booking-form-group select,
.booking-form-group input {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--light-2);
  border: 1.5px solid var(--light-3);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: .9375rem;
  transition: var(--transition-fast);
}

.booking-form-group select option { color: var(--dark); background: var(--white); }
.booking-form-group select::-webkit-calendar-picker-indicator { filter: none; }

.booking-form-group select:focus,
.booking-form-group input:focus {
  border-color: var(--primary-light);
  background: var(--white);
  outline: none;
}

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

.booking-submit {
  display: flex;
  align-items: flex-end;
}

.booking-submit .btn {
  height: 48px;
  padding: 0 2rem;
}

/* ============================================================
   16. BLOG CARDS
   ============================================================ */
.blog-section {
  background: linear-gradient(160deg, #f0f7f3 0%, #ffffff 50%, #f4f8ff 100%);
}

/* Desktop: featured card on left (2 rows tall), two smaller on right */
.blog-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3rem;
}

.blog-card--featured { grid-row: span 2; }

.blog-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: box-shadow .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,.1);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card--featured .blog-card-img { height: 300px; }

/* Dark gradient overlay — makes category badge readable */
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

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

.blog-card:hover .blog-card-img img { transform: scale(1.07); }

/* Category badge — bottom-left of image, above gradient */
.blog-category {
  position: absolute;
  bottom: .75rem;
  left: .9rem;
  z-index: 1;
}

.blog-category .badge-primary,
.blog-category .badge-secondary,
.blog-category .badge-accent {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .8rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.blog-category .badge-primary   { background: rgba(26,86,219,.88);   color: #fff; }
.blog-category .badge-secondary { background: rgba(14,165,233,.88);  color: #fff; }
.blog-category .badge-accent    { background: rgba(185,128,9,.92);   color: #fff; }

.blog-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: .7rem;
}

.blog-meta i { font-size: .68rem; margin-right: .15rem; color: var(--primary); }

.blog-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #CBD5E1;
  flex-shrink: 0;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.45;
  transition: color .2s;
}

.blog-card--featured .blog-card-title { font-size: 1.3rem; line-height: 1.35; }

.blog-card:hover .blog-card-title { color: var(--primary); }

.blog-card-excerpt {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  background: var(--primary);
  font-weight: 600;
  font-size: .78rem;
  padding: .52rem 1.1rem;
  border-radius: 999px;
  transition: background .2s, gap .2s, transform .2s;
  margin-top: auto;
  align-self: flex-start;
  letter-spacing: .02em;
}

.blog-read-more:hover {
  background: #1e6644;
  gap: .65rem;
  transform: translateX(2px);
}

.blog-read-more i { font-size: .65rem; }

/* ============================================================
   17. NEWSLETTER
   ============================================================ */
/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: #0D1C11;
  color: rgba(255,255,255,.65);
}

/* Trust bar */
.footer-trust-bar {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 1rem 0;
}

.ftb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 0;
}

.ftb-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  padding: 0 2rem;
}

.ftb-item i { color: var(--secondary); font-size: .9rem; }

.ftb-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.12);
}

/* Main grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .nav-logo {
  margin-bottom: 1.25rem;
  display: inline-flex;
}

.footer-tagline {
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,.45);
}

.social-links {
  display: flex;
  gap: .5rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  transition: background .2s, color .2s, border-color .2s;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Column headings */
.footer-col h4 {
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Links */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .4rem; }

.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: color .2s;
}

.footer-links a:hover { color: #fff; }

/* Contact */
.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: .875rem;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: .875rem;
  margin-top: .2rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.footer-contact-item a { color: inherit; transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }

/* CTA button in footer */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: .6rem 1.25rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: background .2s, color .2s, border-color .2s;
}

.footer-cta-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  transition: color .2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   19. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
  z-index: 500;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   20. ABOUT PAGE
   ============================================================ */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image { position: relative; }

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.story-image-overlay {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--secondary);
  color: var(--dark);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.story-image-overlay .big-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.story-image-overlay p {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: .25rem;
}

.story-content .section-label,
.story-content .section-title {
  text-align: left;
  margin-left: 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mission-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--light-2);
  border: 1px solid var(--light-3);
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.mission-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.mission-card.primary .mission-icon { background: rgba(26,86,219,.12); color: var(--primary); }
.mission-card.accent  .mission-icon { background: rgba(26,86,219,.12); color: var(--accent); }

.mission-card h3 {
  font-size: 1.125rem;
  margin-bottom: .625rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-3);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(26,86,219,.3);
}

.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .25rem;
}

.team-role {
  color: var(--primary);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

/* Awards */
.awards-strip {
  background: var(--dark);
  padding: 3rem 0;
}

.awards-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.award-item {
  text-align: center;
  color: rgba(255,255,255,.7);
}

.award-item i { font-size: 2rem; color: var(--secondary); margin-bottom: .5rem; display:block; }
.award-item p { font-size: .875rem; font-weight: 600; }

/* ============================================================
   20b. ABOUT PAGE
   ============================================================ */

/* Hero */
.ab-hero { min-height: 92vh; align-items: flex-end; padding-bottom: 0; }

.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,40,.96) 0%, rgba(10,20,40,.5) 55%, rgba(10,20,40,.2) 100%);
}

.ab-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-hero-text {
  padding-bottom: 3rem;
}

.ab-hero-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.ab-hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ab-hero-text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
}

.ab-hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ab-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  color: rgba(255,255,255,.9);
  font-size: .9375rem;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}

.ab-hero-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

.ab-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
}

.ab-stat {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
}

.ab-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ab-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: .35rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ab-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* Story section */
.story-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,86,219,.4);
}

.story-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.story-badge-text {
  font-size: .75rem;
  opacity: .85;
  margin-top: .25rem;
  font-weight: 500;
}

.story-para {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.125rem;
}

.story-para.last { margin-bottom: 2rem; }

.story-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
}

.story-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.story-stat-label {
  font-size: .8125rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: .2rem;
}

/* Mission section */
.ab-mission-section { background: #F8FAFC; }

.mission-card {
  padding: 2.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #E2E8F0;
  transition: box-shadow .25s, transform .25s;
}

.mission-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}

.mission-card p {
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.75;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.value-item {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}

.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(26,86,219,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin: 0 auto 1rem;
}

.value-item h4 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .375rem;
}

.value-item p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team */
.team-bio {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: .5rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: .625rem;
  margin-top: 1rem;
}

.team-socials a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(26,86,219,.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  transition: background .2s, color .2s;
}

.team-socials a:hover {
  background: var(--primary);
  color: #fff;
}

/* Why Sri Lanka */
.ab-why-section {
  position: relative;
  overflow: hidden;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.ab-why-bg { display: none; }

.ab-why-inner { position: relative; z-index: 1; }

.ab-why-label { background: rgba(26,86,219,.08); color: var(--primary); }
.ab-why-title { color: var(--text-dark); }
.ab-why-sub { color: var(--text-body); }

.ab-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.ab-why-item {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.ab-why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}

.ab-why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(26,86,219,.10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.ab-why-item h4 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.ab-why-item p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Awards strip */
.awards-strip {
  background: #fff;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 2.5rem 0;
}

.award-item { color: var(--text-body); }
.award-item i { color: var(--primary); font-size: 2rem; margin-bottom: .5rem; display: block; }
.award-item p { font-size: .875rem; font-weight: 600; color: var(--text-dark); }
.award-item p span { color: var(--text-muted); font-size: .75rem; font-weight: 400; }

/* Testimonials */
.testimonials-section { background: #F8FAFC; }

.testimonials-section .testi-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.testimonials-section .testi-card {
  flex-direction: column !important;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}

.testimonials-section .testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
}

.testimonials-section .testi-card--featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(26,86,219,.3);
}

.testi-quote {
  font-size: 4rem;
  line-height: .8;
  color: rgba(26,86,219,.15);
  font-family: Georgia, serif;
  margin-bottom: .5rem;
}

.testi-card--featured .testi-quote { color: rgba(255,255,255,.25); }

.testi-stars { color: #FBBF24; font-size: .875rem; margin-bottom: 1rem; display: flex; gap: .15rem; }
.testi-card--featured .testi-stars { color: #FDE68A; }

.testi-text {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 1.5rem;
}

.testi-card--featured .testi-text { color: rgba(255,255,255,.88); }

.testi-footer {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E2E8F0;
}

.testi-card--featured .testi-footer { border-top-color: rgba(255,255,255,.2); }

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-card--featured .testi-avatar {
  background: rgba(255,255,255,.25);
}

.testi-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.testi-card--featured .testi-name { color: #fff; }

.testi-location {
  font-size: .8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: .15rem;
}

.testi-card--featured .testi-location { color: rgba(255,255,255,.65); }

.testimonials-section .testi-bottom {
  flex-direction: column !important;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: center;
  color: var(--text-body);
  font-size: .9375rem;
}

.testi-bottom strong { color: var(--primary); }

.testimonials-section .testi-platforms {
  gap: 1.5rem !important;
  flex-wrap: wrap;
  justify-content: center;
}

.testi-platforms span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: .375rem 1rem;
}

.testi-platforms span i { color: var(--primary); }

@media (max-width: 900px) {
  .testimonials-section .testi-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
  .testimonials-section .testi-grid { grid-template-columns: 1fr !important; }
}

/* CTA */
.ab-cta-section {
  background: #F8FAFB;
  border-top: 1px solid #E2E8F0;
  padding: 4rem 0;
}

.ab-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ab-cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: .5rem;
}

.ab-cta-text p {
  color: var(--text-body);
  font-size: 1rem;
}

.ab-cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.ab-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  color: var(--text-body);
  font-size: .9375rem;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}

.ab-cta-ghost:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-cta-inner { flex-direction: column; text-align: center; }
  .ab-cta-actions { flex-direction: column; width: 100%; }
  .ab-cta-actions .btn,
  .ab-cta-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .ab-why-grid { grid-template-columns: 1fr; }
  .ab-hero-stats { flex-wrap: wrap; }
  .ab-stat { min-width: 50%; }
  .ab-stat-sep { display: none; }
  .ab-hero-btns { flex-direction: column; align-items: flex-start; }
  .ab-hero-btns .btn { width: 100%; justify-content: center; }
  .ab-hero-ghost { width: 100%; justify-content: center; }
}

/* ============================================================
   20c. CUSTOMIZE TOUR PAGE
   ============================================================ */
.ct-hero { min-height: 80vh; }
.ct-builder-section { background: #F8FAFC; }
.ct-why-section { background: var(--white); }

.ct-info-tip {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: .75rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.ct-info-tip i { color: var(--primary); margin-top: .1rem; flex-shrink: 0; }

.ct-includes-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: #F8FAFC;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
}
.ct-includes-box h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .875rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ct-includes-box h4 i { color: var(--primary); }
.ct-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem .75rem;
}
.ct-include-item {
  font-size: .875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ct-include-item i { color: var(--primary); font-size: .75rem; }

.ct-free-notice {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(26,86,219,.06);
  border: 1px solid rgba(26,86,219,.18);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.ct-free-notice > i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: .1rem;
  flex-shrink: 0;
}
.ct-free-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .25rem;
}
.ct-free-desc {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.summary-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .625rem;
}
.summary-contact i { color: var(--primary); font-size: .875rem; }
.summary-contact a { font-weight: 600; color: var(--dark); font-size: .9rem; }
.summary-contact a:hover { color: var(--primary); }

/* ============================================================
   21. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-3);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  margin: 0 auto .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-card.green  .contact-card-icon { background: rgba(26,86,219,.1);  color: var(--primary); }
.contact-card.amber  .contact-card-icon { background: rgba(26,86,219,.1); color: var(--secondary); }
.contact-card.blue   .contact-card-icon { background: rgba(26,86,219,.1);  color: var(--accent); }
.contact-card.purple .contact-card-icon { background: rgba(124,58,237,.1); color: #7c3aed; }

.contact-card h4 { font-size: .9375rem; margin-bottom: .375rem; }
.contact-card p, .contact-card a {
  font-size: .875rem;
  color: var(--text-muted);
}

/* Contact form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-3);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .875rem 1.125rem;
  border: 1.5px solid var(--light-3);
  border-radius: var(--radius-md);
  background: var(--light-2);
  color: var(--dark);
  font-size: .9375rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #dc2626;
}

.form-error {
  display: none;
  color: #dc2626;
  font-size: .8125rem;
  margin-top: .375rem;
}

.form-group.has-error .form-error { display: block; }

/* Map */
.map-placeholder {
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--light-2);
  position: relative;
  border: 1px solid var(--light-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  opacity: .5;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active { border-color: var(--primary); }

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--dark);
  font-size: .9375rem;
  transition: var(--transition-fast);
}

.faq-question:hover { color: var(--primary); }

.faq-question i {
  font-size: .875rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}

/* ============================================================
   22. BLOG PAGE
   ============================================================ */
.blog-search-bar {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.blog-search-bar input {
  flex: 1;
  padding: .875rem 1.25rem;
  border: 1.5px solid var(--light-3);
  border-radius: var(--radius-full);
  font-size: .9375rem;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition-fast);
}

.blog-search-bar input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}

.category-tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cat-tab {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--light-3);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--white);
}

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

.blog-main-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.blog-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Sidebar */
.blog-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.recent-post {
  display: flex;
  gap: .875rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-3);
}

.recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.recent-post img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.recent-post h5 {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: .25rem;
  transition: var(--transition-fast);
}

.recent-post h5:hover { color: var(--primary); cursor: pointer; }
.recent-post span { font-size: .75rem; color: var(--text-muted); }

.tags-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }

.tag {
  padding: .3rem .875rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--light-3);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--light-2);
}

.tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Pagination */
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 3rem;
}

.page-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--light-3);
  background: var(--white);
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ============================================================
   23. TRANSPORT PAGE
   ============================================================ */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.vehicle-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border: 2px solid transparent;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover,
.vehicle-card.selected {
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  transform: translateY(-6px);
}

.vehicle-img {
  height: 200px;
  background: linear-gradient(135deg, var(--light-2), var(--light-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.vehicle-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 55%);
}
.vehicle-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.vehicle-card:hover .vehicle-img img { transform: scale(1.07); }

.vehicle-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

/* Capacity chip at bottom of image */
.vehicle-capacity {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  z-index: 2;
  display: flex;
  gap: .4rem;
}
.vehicle-cap-chip {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: .22rem .55rem;
  border-radius: 20px;
}
.vehicle-cap-chip i { font-size: .65rem; opacity: .85; }

.vehicle-body {
  padding: 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}

.vehicle-subtitle {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.vehicle-specs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.vehicle-specs span {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  background: #F0FDF4;
  border-radius: 20px;
  padding: .2rem .65rem;
}
.vehicle-specs i { font-size: .68rem; }

.vehicle-features {
  list-style: none;
  margin-bottom: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.vehicle-features li {
  font-size: .83rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: .55rem;
  line-height: 1.4;
}

.vehicle-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .68rem;
  color: var(--primary);
  flex-shrink: 0;
}

.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
  margin-top: auto;
}

.vehicle-price {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.vehicle-price span { font-size: .72rem; font-weight: 500; color: var(--text-muted); margin-top: .1rem; }

/* Transport features */
.transport-features { background: var(--light-2); }

.transport-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.transport-feat {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-3);
  transition: var(--transition);
}

.transport-feat:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.transport-feat-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(26,86,219,.25);
}

.transport-feat h4 { font-size: 1rem; margin-bottom: .5rem; }
.transport-feat p  { font-size: .875rem; }

/* Airport transfer */
.airport-section {
  background: #fff;
  padding: 5rem 0;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.airport-section::before { display: none; }

.airport-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.airport-content h2 { color: var(--text-dark); font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.airport-content p  { color: var(--text-body); margin-bottom: 1.5rem; }

.airport-features { display: flex; flex-direction: column; gap: .75rem; }

.airport-feat {
  display: flex;
  align-items: center;
  gap: .875rem;
  color: var(--text-body);
  font-size: .9375rem;
}

.airport-feat i { color: var(--primary); font-size: 1rem; }

.airport-form-card {
  background: #F8FAFB;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.airport-form-card h3 { color: var(--text-dark); font-size: 1.25rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .5rem; flex-wrap: nowrap; }
.airport-form-card h3 i { flex-shrink: 0; }

.airport-form-card .form-group label { color: var(--text-body); }

.airport-form-card .form-group input,
.airport-form-card .form-group select {
  background: #fff;
  border-color: #E2E8F0;
  color: var(--text-dark);
}

.airport-form-card .form-group input::placeholder { color: var(--text-muted); }
.airport-form-card .form-group select option { color: var(--dark); background: var(--white); }

.airport-form-card .form-group input:focus,
.airport-form-card .form-group select:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.18);
  box-shadow: none;
}

/* Price calculator */
.price-calc {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--light-3);
}

.price-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--light-2);
  border-radius: var(--radius-lg);
  display: none;
  text-align: center;
}

.price-result.show { display: block; }

.price-result .estimated {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: .375rem;
}

.price-result .price-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-heading);
}

/* ============================================================
   24. CUSTOMIZE TOUR PAGE
   ============================================================ */
.tour-builder-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

/* Progress bar */
.step-progress {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  border: 1px solid var(--light-3);
}

.progress-bar-track {
  height: 6px;
  background: var(--light-3);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
  border-radius: var(--radius-full);
  transition: width .5s ease;
  width: 16.66%;
}

.step-indicators {
  display: flex;
  justify-content: space-between;
}

.step-ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  flex: 1;
}

.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--light-3);
  background: var(--white);
  color: var(--text-muted);
  font-size: .8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.step-ind.active .step-dot   { border-color: var(--primary); background: var(--primary); color: var(--white); }
.step-ind.complete .step-dot { border-color: var(--primary); background: var(--primary); color: var(--white); }

.step-ind-label {
  font-size: .6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  display: none;
}

@media (min-width: 768px) { .step-ind-label { display: block; } }

.step-ind.active .step-ind-label { color: var(--primary); }

/* Form steps */
.tour-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-3);
}

.form-step { display: none; }
.form-step.active { display: block; animation: fadeInUp .4s ease; }

.form-step-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .375rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.form-step-title i { color: var(--primary); }

.form-step-desc {
  font-size: .9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Range slider */
.range-group { margin-bottom: 1.5rem; }

.range-group label {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .625rem;
}

.range-group label span { color: var(--primary); }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--light-3);
  border-radius: var(--radius-full);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,86,219,.4);
}

input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
}

/* Destination checkboxes */
.dest-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dest-checkbox-item {
  position: relative;
}

.dest-checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.dest-checkbox-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem .75rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--light-3);
  background: var(--light-2);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dest-checkbox-label i { font-size: 1.5rem; color: var(--text-muted); }

.dest-checkbox-item input:checked + .dest-checkbox-label {
  border-color: var(--primary);
  background: rgba(26,86,219,.06);
  color: var(--primary);
}

.dest-checkbox-item input:checked + .dest-checkbox-label i { color: var(--primary); }

/* Interest checkboxes */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.interest-item { position: relative; }
.interest-item input[type="checkbox"] { position:absolute; opacity:0; width:0; height:0; }

.interest-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--light-3);
  background: var(--light-2);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.interest-label i { font-size: 1.5rem; }

.interest-item input:checked + .interest-label {
  border-color: var(--primary);
  background: rgba(26,86,219,.06);
  color: var(--primary);
}

.interest-item input:checked + .interest-label i { color: var(--primary); }

/* Accommodation */
.accom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.accom-item { position: relative; }
.accom-item input[type="radio"] { position:absolute; opacity:0; width:0; height:0; }

.accom-label {
  display: block;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--light-3);
  background: var(--light-2);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.accom-label i {
  font-size: 2rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: .75rem;
}

.accom-label h4 {
  font-size: .9375rem;
  margin-bottom: .25rem;
  color: var(--dark);
}

.accom-label p {
  font-size: .8125rem;
  color: var(--text-muted);
}

.accom-item input:checked + .accom-label {
  border-color: var(--primary);
  background: rgba(26,86,219,.06);
}

.accom-item input:checked + .accom-label i { color: var(--primary); }
.accom-item input:checked + .accom-label h4 { color: var(--primary); }

/* Transport preference */
.transport-pref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.transport-item { position: relative; }
.transport-item input[type="radio"] { position:absolute; opacity:0; width:0; height:0; }

.transport-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--light-3);
  background: var(--light-2);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 2rem;
}

.transport-label span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.transport-item input:checked + .transport-label {
  border-color: var(--primary);
  background: rgba(26,86,219,.06);
}
.transport-item input:checked + .transport-label span { color: var(--primary); }

/* Step nav */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-3);
}

.step-counter {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Summary sidebar */
.tour-summary {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-3);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.tour-summary h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: .875rem;
  border-bottom: 2px solid var(--primary);
}

.summary-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--light-3);
}

.summary-item:last-child { border-bottom: none; }

.summary-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: .15rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.summary-item-content label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  display: block;
  margin-bottom: .2rem;
}

.summary-item-content span {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
}

.summary-cta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  border-top: 1px solid var(--light-3);
}

.summary-cta p {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: .875rem;
}

/* Sample / Custom packages */
.sample-packages-section { background: #F8FAFC; }

/* pkg-card-img structure used in customize-tour sample packages */
.pkg-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

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

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

.pkg-badge {
  position: absolute;
  top: .875rem; left: .875rem;
}

.pkg-badge .badge-primary,
.pkg-badge .badge-secondary,
.pkg-badge .badge-accent {
  display: inline-block;
  padding: .25rem .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}

.pkg-duration {
  position: absolute;
  bottom: .875rem; left: .875rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .25rem .625rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* pkg-price-tag — overrides handled by main rule above */

.pkg-card-body {
  padding: 1.25rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-card-body .stars {
  color: #f59e0b;
  font-size: .8rem;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.pkg-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
  line-height: 1.4;
}

.pkg-card-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.pkg-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .875rem;
  border-top: 1px solid #F1F5F9;
  gap: .75rem;
}

/* Price tag inside footer (related packages cards) — reset absolute positioning */
.pkg-card-footer .pkg-price-tag {
  position: static;
  box-shadow: none;
  padding: .2rem .6rem;
  border-radius: 8px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.pkg-card-footer .pkg-price-tag .pkg-price-val {
  font-size: .95rem;
}
.pkg-card-footer .pkg-price-from {
  font-size: .55rem;
}

.pkg-includes {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.pkg-includes span {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.pkg-includes span i { color: var(--primary); font-size: .75rem; }

/* ============================================================
   25. RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 4rem; }

  .packages-grid    { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .gallery-grid     { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .why-layout       { gap: 2.5rem; }
  .why-image img    { height: 420px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid     { grid-template-columns: repeat(2, 1fr); }
  .transport-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .accom-grid       { grid-template-columns: repeat(2, 1fr); }
  .dest-checkbox-grid { grid-template-columns: repeat(4, 1fr); }
  .interests-grid   { grid-template-columns: repeat(4, 1fr); }
  .transport-pref-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-main-layout { grid-template-columns: 1fr 280px; }
  .tour-builder-layout { grid-template-columns: 1fr 280px; }
  .steps-grid::before { display: none; }
  .airport-layout   { gap: 2.5rem; }
}

/* ============================================================
   26. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 3rem;
    --nav-height: 64px;
  }

  /* Navbar */
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content { padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 4rem; }
  .hero-title { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero-trust { gap: .75rem; }
  .hero-trust-sep { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--light-3); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--light-3); }

  /* Packages — carousel (Section 28 overrides) */

  /* Why */
  .why-layout { grid-template-columns: 1fr; }
  .why-image-badge { left: 1rem; bottom: 1rem; }

  /* Gallery — carousel (Section 28 overrides) */

  /* Steps — vertical list (Section 28 overrides) */

  /* Blog — carousel (Section 28 overrides) */
  .blog-main-layout { grid-template-columns: 1fr; }
  .blog-main-layout { grid-template-columns: 1fr; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Story */
  .story-layout { grid-template-columns: 1fr; }
  .story-image-overlay { display: none; }

  /* Mission */
  .mission-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Vehicle */
  .vehicle-grid { grid-template-columns: 1fr; }
  .vehicle-card { border-radius: 16px; }
  .vehicle-img { height: 170px; }
  .vehicle-body { padding: 1.1rem 1.1rem 1.2rem; }
  .vehicle-name { font-size: 1rem; }
  .vehicle-features { display: none; }
  .vehicle-footer { padding-top: .75rem; }
  .vehicle-price strong { font-size: 1.15rem; }
  .transport-feat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Airport */
  .airport-layout { grid-template-columns: 1fr; }

  /* Customize */
  .tour-builder-layout { grid-template-columns: 1fr; }
  .tour-summary { position: static; }
  .dest-checkbox-grid { grid-template-columns: repeat(3, 1fr); }
  .interests-grid { grid-template-columns: repeat(3, 1fr); }
  .accom-grid { grid-template-columns: repeat(2, 1fr); }
  .transport-pref-grid { grid-template-columns: repeat(2, 1fr); }

  /* Booking form */
  .booking-form { flex-direction: column; }
  .booking-form-group { min-width: 100%; }
  .booking-submit { justify-content: stretch; }
  .booking-submit .btn { width: 100%; justify-content: center; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }

  /* Back to top */
  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 42px; height: 42px; }

  /* Why image badge */
  .why-image-badge { display: none; }
}

/* ============================================================
   27. RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  /* steps/gallery/blog now handled by Section 28 carousel rules */
  .contact-info-grid { grid-template-columns: 1fr; }
  .dest-checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .interests-grid  { grid-template-columns: repeat(2, 1fr); }
  .accom-grid      { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }
  .transport-pref-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   28. MOBILE OPTIMISATIONS — Sections 3–11 + Footer
   ============================================================ */

/* ── Section 3: Packages ───────────────────────────── */
@media (max-width: 768px) {
  /* clip carousel overflow at the section level */
  .packages-section { overflow: hidden; }

  .packages-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0;
    /* Break out of container padding so grid is full viewport width */
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0 1.25rem 1.2rem;
    scroll-padding-left: 1.25rem;
    margin-top: 2rem;
    scrollbar-width: none;
  }
  .packages-grid::-webkit-scrollbar { display: none; }

  /* 100% of grid content box = viewport - 2*1.25rem = perfectly centred */
  .packages-grid .pkg-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin-right: 1rem; /* gap between cards without affecting card width */
  }

  .pkg-img-wrap     { height: 210px; }
  .pkg-body         { padding: 1.1rem 1.2rem 1.3rem; }
  .pkg-title        { font-size: 1.05rem; }
  .pkg-desc         { font-size: .82rem; margin-bottom: .9rem; }
  .pkg-chips        { gap: .35rem; margin-bottom: .75rem; }
  .pkg-chip         { font-size: .67rem; }
  .pkg-btn          { font-size: .8rem; padding: .55rem 1rem; }
  .packages-more    { margin-top: 1.5rem; }
}

/* ── Section 4: Why Choose Us ───────────────────────── */
@media (max-width: 768px) {
  .why-layout { gap: 2rem; }

  /* push image below content */
  .why-content { order: 1; }
  .why-image   { order: 2; }

  .why-image img {
    height: 240px;
    border-radius: var(--radius-lg);
  }

  .why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: none;
    margin-top: 1.2rem;
  }

  .why-feature {
    padding: .9rem .6rem;
    border-bottom: 1px solid #E2E8F0;
    border-right: 1px solid #E2E8F0;
    gap: .7rem;
  }

  .why-feature:nth-child(even)  { border-right: none; }
  .why-feature:nth-child(3),
  .why-feature:nth-child(4)     { border-bottom: none; }

  .why-feature-icon {
    width: 36px; height: 36px;
    font-size: .9rem;
  }

  .why-feature-text h4 { font-size: .875rem; }
  .why-feature-text p  { font-size: .775rem; }

  .why-section .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .why-features { grid-template-columns: 1fr; }
  .why-feature  { border-right: none; }
  .why-feature:last-child { border-bottom: none; }

  .why-image img { height: 200px; }
}

/* ── Section 5: Destinations Gallery ────────────────── */
@media (max-width: 768px) {
  .destinations-section { overflow: hidden; }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .75rem;
    padding: 0 1.2rem 1rem;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }

  .gallery-item {
    flex: 0 0 56vw;
    max-width: 220px;
    scroll-snap-align: start;
    height: 200px;
    border-radius: var(--radius-md);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: unset; grid-row: unset; }

  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(15,23,42,.75) 0%, transparent 55%);
  }

  .gallery-name     { font-size: .95rem; }
  .gallery-location { font-size: .73rem; }
}

@media (max-width: 480px) {
  .gallery-item { flex: 0 0 72vw; max-width: 260px; height: 180px; }
}

/* ── Section 6: How It Works ────────────────────────── */
@media (max-width: 1024px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid::before { display: none; }
}

@media (max-width: 768px) {
  .how-section { padding: 3rem 0; }

  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .hiw-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.2rem 1.2rem;
    border-radius: 14px;
  }

  .hiw-card:hover { transform: none; box-shadow: 0 4px 20px rgba(0,0,0,.06); }

  .hiw-icon-wrap { flex-shrink: 0; }

  .hiw-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .hiw-title { font-size: .95rem; }
  .hiw-desc  { font-size: .82rem; }
}

@media (max-width: 480px) {
  .hiw-icon { width: 46px; height: 46px; font-size: 1.1rem; border-radius: 12px; }
  .hiw-icon-wrap { width: 46px; height: 46px; }
  .hiw-title { font-size: .92rem; }
}

/* ── Section 7: Testimonials ─────────────────────────── */
@media (max-width: 1024px) {
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .rv-section    { padding: 3rem 0; overflow: hidden; }
  .rv-rating-bar { margin-bottom: 2rem; }
  .rv-rating-inner { gap: 1.5rem; }
  .rv-big-score  { font-size: 2.2rem; }
  .rv-platforms  { gap: 1rem; }

  /* One card centred at a time */
  .rv-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: .5rem 0 1rem;
    scrollbar-width: none;
  }
  .rv-grid::-webkit-scrollbar { display: none; }

  /* Each card takes the full container width, centred */
  .rv-card {
    flex: 0 0 100%;
    /* indent card from edges for visual breathing room */
    margin: 0 1rem;
    width: calc(100% - 2rem);
    scroll-snap-align: center;
    padding: 1.5rem;
    border-radius: 18px;
  }

  .rv-card--featured {
    flex-direction: column;
    grid-column: unset;
    flex: 0 0 100%;
  }

  .rv-card:hover { transform: none; }
  .rv-dots { display: flex; }
}

@media (max-width: 480px) {
  .rv-card         { margin: 0 .75rem; width: calc(100% - 1.5rem); padding: 1.3rem; }
  .rv-rating-sep   { display: none; }
  .rv-rating-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .rv-score-block  { justify-content: center; }
  .rv-platforms    { justify-content: center; }
  .rv-platform     { padding: .45rem .75rem; }
  .rv-plat-icon    { width: 28px; height: 28px; font-size: .85rem; }
  .rv-big-score    { font-size: 2.5rem; }
}

/* ── Section 8: Booking Form ─────────────────────────── */
@media (max-width: 768px) {
  .booking-section { padding: 3rem 0; }

  .booking-form {
    padding: 1.2rem;
    gap: .9rem;
    border-radius: var(--radius-lg);
  }

  .booking-content h2   { font-size: 1.6rem; }
  .booking-content p    { font-size: .9rem; margin-bottom: 1.5rem; }

  .booking-form-group label { font-size: .75rem; }
  .booking-form-group select,
  .booking-form-group input  { font-size: .95rem; padding: .65rem .9rem; height: 46px; }

  .booking-submit { padding-top: .4rem; }
  .booking-submit .btn { padding: .8rem 1.5rem; font-size: .9rem; }
}

/* ── Section 9: Blog — desktop (3-col, no row-span) ─── */
@media (min-width: 1025px) {
  .blog-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-auto-rows: auto;
  }
  .blog-card--featured { grid-row: span 1; }
  .blog-card--featured .blog-card-img { height: 240px; }
  .blog-card-body { display: flex; flex-direction: column; }
  .blog-card-excerpt { flex: 1; }
}

/* ── Section 9: Blog — tablet ────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card--featured { grid-row: span 1; grid-column: span 2; }
  .blog-card--featured .blog-card-img { height: 240px; }
}

/* ── Section 9: Blog ─────────────────────────────────── */
@media (max-width: 768px) {
  .blog-section { overflow: hidden; }

  .blog-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    /* Break out of container padding so grid is full viewport width */
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0 1.25rem 1.2rem;
    scroll-padding-left: 1.25rem;
    margin-top: 2rem;
    scrollbar-width: none;
  }
  .blog-grid::-webkit-scrollbar { display: none; }

  /* 100% of grid content box = viewport - 2*1.25rem = perfectly centred */
  .blog-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    margin-right: 1rem; /* gap between cards */
  }

  /* Reset featured grid span on mobile */
  .blog-card--featured { grid-row: unset; }
  .blog-card--featured .blog-card-img { height: 210px; }
  .blog-card--featured .blog-card-title { font-size: 1.05rem; line-height: 1.4; }

  .blog-card-img { height: 190px; }

  .blog-card-body    { padding: 1.1rem 1.2rem 1.3rem; }
  .blog-card-title   { font-size: .95rem; }
  .blog-card-excerpt { font-size: .82rem; }
  .blog-read-more    { font-size: .78rem; padding: .48rem 1rem; }
}

/* ── Footer trust bar ────────────────────────────────── */
@media (max-width: 768px) {
  .ftb-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: .25rem;
    gap: 0;
  }
  .ftb-inner::-webkit-scrollbar { display: none; }

  .ftb-item {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 1.2rem;
    font-size: .75rem;
  }

  .ftb-sep { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .footer-grid { gap: 1.2rem; padding-top: 2.5rem; }
  .footer-col h4 { font-size: .9rem; }
  .footer-links li a { font-size: .82rem; }
  .footer-contact-item { font-size: .82rem; }
}

/* ── Scroll-hint: show below snap-scroll rows on mobile ── */
.scroll-hint {
  display: none;
}
@media (max-width: 768px) {
  .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .6rem;
    color: #b0b0b0;
    font-size: .72rem;
    letter-spacing: .03em;
  }
  .scroll-hint i { font-size: .6rem; opacity: .7; }
}

/* ── Section heading polish on phones ────────────────── */
@media (max-width: 480px) {
  .section-subtitle {
    font-size: .9rem;
    margin-bottom: 1.5rem;
  }
  .section-label { font-size: .75rem; margin-bottom: .7rem; }
  .packages-more .btn { width: auto; justify-content: center; }
  .divider { margin: .6rem auto 1rem; }
  .text-center.reveal { margin-bottom: .5rem; }
}

/* ── Why section image border-radius on mobile ───────── */
@media (max-width: 768px) {
  .why-image { margin: 0 -.5rem; }
}

/* ── Testi-bottom row on mobile ──────────────────────── */
@media (max-width: 480px) {
  .testi-bottom {
    padding: 1rem 0 0;
    font-size: .85rem;
  }
  .testi-platforms span {
    font-size: .8rem;
    padding: .3rem .7rem;
  }
}

/* ============================================================
   29. MISC / OVERRIDES
   ============================================================ */

/* Smooth image loading */
img { transition: opacity .3s ease; }

/* Selection */
::selection {
  background: rgba(26,86,219,.2);
  color: var(--primary);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* Focus visible */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* Glassmorphism cards */
.glass-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--light-3) 25%, var(--light-2) 50%, var(--light-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
  border-radius: var(--radius-full);
  margin: .75rem auto 0;
}

.divider-left { margin-left: 0; }

/* Input number arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { opacity: 1; }

/* Form success */
.form-success-msg {
  display: none;
  background: rgba(26,86,219,.1);
  border: 1px solid rgba(26,86,219,.3);
  color: #1e40af;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .9375rem;
  margin-top: 1rem;
  align-items: center;
  gap: .625rem;
}

.form-success-msg.show { display: flex; }

/* Counter number */
.counter-num { font-variant-numeric: tabular-nums; }

/* ============================================================
   RIDE BOOKING WIDGET (transport.html)
   ============================================================ */

.ride-booking-card {
  max-width: 780px;
  margin: 3rem auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  overflow: hidden;
  border: 1.5px solid var(--light-3);
}

/* Tabs */
.rbc-tabs {
  display: flex;
  background: var(--light-2);
  border-bottom: 2px solid var(--light-3);
  overflow-x: auto;
  scrollbar-width: none;
}
.rbc-tabs::-webkit-scrollbar { display: none; }

.rbc-tab {
  flex: 1;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 1rem .75rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  margin-bottom: -2px;
}
.rbc-tab:hover { color: var(--primary); background: rgba(26,86,219,.05); }
.rbc-tab.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
  background: #fff;
}
.rbc-tab i { font-size: .9rem; }

/* Body */
.rbc-body { padding: 1.75rem 2rem 2rem; }

/* Location inputs */
.rbc-locations {
  background: var(--light-2);
  border-radius: 14px;
  border: 1.5px solid var(--light-3);
  overflow: hidden;
  margin-bottom: 1rem;
}
.rbc-location-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
}
.rbc-divider-line {
  height: 1px;
  background: var(--light-3);
  margin-left: 3.25rem;
}
.rbc-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.rbc-dot-a { background: var(--secondary); color: #fff; }
.rbc-dot-b { background: var(--primary); color: #fff; }

.rbc-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  width: 100%;
}
.rbc-input::placeholder { color: var(--text-muted); }

.rbc-locate-btn {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.1rem;
  cursor: pointer;
  padding: .25rem;
  transition: transform .2s;
}
.rbc-locate-btn:hover { transform: scale(1.2); }

/* Standalone inputs inside field groups */
.rbc-field-group .rbc-input,
.rbc-textarea {
  background: var(--light-2);
  border: 1.5px solid var(--light-3);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .9375rem;
  transition: border-color .2s;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.rbc-field-group .rbc-input:focus,
.rbc-textarea:focus {
  border-color: var(--primary);
  outline: none;
}

/* Checkbox */
.rbc-checkbox-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 1.5rem;
  user-select: none;
}
.rbc-checkbox-label input[type="checkbox"] { display: none; }
.rbc-checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--light-3);
  border-radius: 4px;
  flex-shrink: 0;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rbc-checkbox-label input[type="checkbox"]:checked + .rbc-checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.rbc-checkbox-label input[type="checkbox"]:checked + .rbc-checkmark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .65rem;
  color: #fff;
}

/* Section title inside widget */
.rbc-section-title {
  font-weight: 700;
  font-size: .875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .875rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* Vehicle Cards */
.rbc-vehicles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.rbc-vehicle-card input[type="radio"] { display: none; }
.rbc-vc-inner {
  border: 2px solid var(--light-3);
  border-radius: 12px;
  padding: .875rem .625rem;
  text-align: center;
  cursor: pointer;
  transition: all .22s;
  background: var(--light-2);
}
.rbc-vehicle-card input[type="radio"]:checked ~ .rbc-vc-inner {
  border-color: var(--secondary);
  background: rgba(26,86,219,.08);
  box-shadow: 0 0 0 1px var(--secondary);
}
.rbc-vc-inner:hover { border-color: var(--primary); background: rgba(26,86,219,.06); }

.rbc-vc-img { font-size: 2rem; margin-bottom: .35rem; line-height: 1; }
.rbc-vc-name { font-weight: 700; font-size: .875rem; color: var(--text); margin-bottom: .3rem; }
.rbc-vc-specs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.rbc-vc-specs span { display: flex; align-items: center; gap: .2rem; }
.rbc-vc-price { font-size: .8rem; font-weight: 600; color: var(--secondary); }

/* Date/Time Row */
.rbc-datetime-row {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.rbc-datetime-row .rbc-input { flex: 1; }

.rbc-now-btn {
  background: var(--light-3);
  border: none;
  border-radius: 20px;
  padding: .6rem 1rem;
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  color: var(--text);
  white-space: nowrap;
  transition: all .2s;
  flex-shrink: 0;
}
.rbc-now-btn:hover { background: var(--primary); color: #fff; }

/* Duration Pills */
.rbc-duration-wrap { margin-bottom: 1.5rem; }
.rbc-duration-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .6rem;
}
.rbc-pill {
  background: var(--light-2);
  border: 1.5px solid var(--light-3);
  border-radius: 20px;
  padding: .45rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  transition: all .2s;
  font-family: var(--font-body);
}
.rbc-pill:hover,
.rbc-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Label */
.rbc-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* Two-column row */
.rbc-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

/* Counter */
.rbc-field-group { display: flex; flex-direction: column; }
.rbc-counter {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--light-2);
  border: 1.5px solid var(--light-3);
  border-radius: 10px;
  padding: .55rem 1rem;
}
.rbc-counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--light-3);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--text);
  transition: all .2s;
  flex-shrink: 0;
}
.rbc-counter-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.rbc-counter-val { flex: 1; text-align: center; font-weight: 700; font-size: 1.1rem; color: var(--text); }

/* Select wrapper */
.rbc-select-wrap { position: relative; }
.rbc-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem !important;
  cursor: pointer;
}
.rbc-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  font-size: .8rem;
}

/* Textarea */
.rbc-textarea {
  resize: vertical;
  min-height: 80px;
  margin-bottom: 1.5rem;
}

/* GET OFFERS button */
.rbc-get-offers-btn {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(26,86,219,.35);
}
.rbc-get-offers-btn:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  box-shadow: 0 6px 28px rgba(14,165,233,.4);
  transform: translateY(-2px);
}

/* Footer link */
.rbc-footer-link {
  text-align: center;
  margin-top: 1rem;
}
.rbc-footer-link a {
  font-size: .875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.rbc-footer-link a:hover { color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
  .rbc-body { padding: 1.25rem 1.125rem 1.5rem; }
  .rbc-vehicles { grid-template-columns: repeat(2, 1fr); }
  .rbc-row-2col { grid-template-columns: 1fr; }
  .rbc-datetime-row { flex-wrap: wrap; }
  .rbc-tab { font-size: .8rem; padding: .875rem .5rem; min-width: 80px; }
}
@media (max-width: 640px) {
  /* Compact tabs */
  .rbc-tab {
    font-size: .75rem;
    padding: .65rem .4rem;
    min-width: 0;
    gap: .3rem;
  }
  .rbc-tab i { font-size: .78rem; }

  /* Tighter body — extra right padding clears WhatsApp button */
  .rbc-body { padding: 1rem 1rem 1.25rem; }
  .rbc-vehicles { padding-right: .25rem; }
  /* Hide "from " prefix — show just the price */
  .rbc-vc-price { font-size: .78rem; letter-spacing: -.01em; }

  /* Smaller location dots */
  .rbc-dot { width: 24px; height: 24px; font-size: .7rem; }
  .rbc-location-row { padding: .7rem .85rem; gap: .6rem; }
  .rbc-divider-line { margin-left: 2.6rem; }
  .rbc-input { font-size: .9rem; }

  /* Tighter checkbox */
  .rbc-checkbox-label { margin-bottom: .9rem; font-size: .82rem; }

  /* Vehicle cards → compact horizontal rows */
  .rbc-vehicles {
    grid-template-columns: 1fr;
    gap: .35rem;
    margin-bottom: 1rem;
  }
  .rbc-vc-inner {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: .65rem;
    row-gap: .05rem;
    align-items: center;
    text-align: left;
    padding: .65rem .85rem;
    border-radius: 10px;
  }
  .rbc-vc-img {
    grid-row: 1 / 3;
    align-self: center;
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1;
  }
  .rbc-vc-name {
    grid-column: 2;
    grid-row: 1;
    font-size: .84rem;
    margin-bottom: 0;
  }
  .rbc-vc-specs {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
    font-size: .68rem;
    margin-bottom: 0;
  }
  .rbc-vc-price {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    font-size: .8rem;
    font-weight: 700;
  }

  /* Section title inside widget */
  .rbc-section-title { font-size: .78rem; margin-bottom: .6rem; }

  /* Date row */
  .rbc-datetime-row { flex-direction: column; gap: .5rem; }
  .rbc-now-btn { width: 100%; justify-content: center; display: flex; align-items: center; }
}
@media (max-width: 480px) {
  .rbc-duration-pills { gap: .375rem; }
  .rbc-pill { font-size: .8rem; padding: .375rem .75rem; }
}

/* ============================================================
   HERO QUOTE FORM CARD
   ============================================================ */
.hero-form-card {
  background: rgba(255,255,255,.97);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  animation: fadeInUp .7s ease .4s both;
}

.hero-form-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--light-3);
}

.hero-form-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .25rem;
}

.hero-form-header p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-quote-form { display: flex; flex-direction: column; gap: .75rem; }

.hqf-group { display: flex; flex-direction: column; }

.hqf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.hqf-group input,
.hqf-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--light-3);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--light-2);
  transition: border-color .2s;
  box-sizing: border-box;
}

.hqf-group input:focus,
.hqf-group select:focus {
  border-color: var(--primary);
  outline: none;
  background: var(--white);
}

.hqf-group input::placeholder { color: var(--text-muted); }

.hqf-group select { appearance: none; cursor: pointer; }

.hqf-submit {
  width: 100%;
  padding: .9rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: all .22s;
  margin-top: .25rem;
}
.hqf-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,.35);
}

.hqf-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

/* hero grid — responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }
  .hero-form-card { max-width: 480px; }
}

@media (max-width: 768px) {
  .hero-inner { padding-top: calc(var(--nav-height) + 1rem); }
  .hqf-row { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 100%; }
}

/* =====================================================
   SECTION 24 — PACKAGE DETAIL PAGES
   ===================================================== */

/* --- Hero --- */
.pkg-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.pkg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.pkg-hero:hover .pkg-hero-bg { transform: scale(1); }
.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.08) 100%);
}
.pkg-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 3.5rem;
  color: #fff;
}
.pkg-hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.pkg-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .6rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.6), 0 4px 32px rgba(0,0,0,.4);
}
.pkg-hero-tagline {
  font-size: 1.05rem;
  opacity: .92;
  margin: 0 0 1.2rem;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.7), 0 2px 20px rgba(0,0,0,.5);
}
.pkg-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pkg-hero-tag {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  padding: .28rem .8rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .35rem;
  backdrop-filter: blur(4px);
}

/* --- Stats Bar --- */
.pkg-stats-bar {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  position: relative;
  z-index: 10;
}
.pkg-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pkg-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.2rem;
  border-right: 1px solid #E2E8F0;
}
.pkg-stat-item:last-child { border-right: none; }
.pkg-stat-icon {
  width: 44px;
  height: 44px;
  background: var(--light-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pkg-stat-info { display: flex; flex-direction: column; gap: .1rem; }
.pkg-stat-label { font-size: .72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.pkg-stat-value { font-size: .95rem; font-weight: 700; color: var(--text-dark); }

/* --- Detail Section Layout --- */
.pkg-detail-section {
  padding: 4rem 0 5rem;
  background: #F8FAFB;
}
.pkg-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

/* --- Content Cards --- */
.pkg-content-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.2rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.pkg-content-card:last-child { margin-bottom: 0; }
.pkg-content-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--light-2);
}
.pkg-overview-text {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Highlights */
.pkg-highlights { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.pkg-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.5;
}
.pkg-highlight-item i { color: var(--primary); margin-top: .15rem; flex-shrink: 0; }

/* Itinerary */
.itinerary-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.itinerary-day {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #F0F4F8;
  align-items: start;
}
.itinerary-day:last-child { border-bottom: none; }
.itinerary-day-num {
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  padding: .4rem .5rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
  white-space: nowrap;
}
.itinerary-day-title { font-weight: 700; color: var(--text-dark); margin-bottom: .25rem; font-size: .97rem; }
.itinerary-day-desc { font-size: .875rem; color: var(--text-body); line-height: 1.6; }

/* Inclusions Grid */
.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.inclusions-col { }
.inclusions-col h4 {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.inclusions-col--yes h4 { color: var(--primary); }
.inclusions-col--no h4 { color: #E53E3E; }
.inclusions-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.inclusions-col ul li { font-size: .875rem; color: var(--text-body); line-height: 1.5; padding-left: .1rem; }

/* Gallery */
.pkg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.pkg-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pkg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pkg-gallery-item:hover img { transform: scale(1.06); }

/* Know Before You Go grid */
.pkg-know-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.pkg-know-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: #F8FAFB;
  border-radius: 12px;
  padding: 1rem;
}
.pkg-know-icon {
  width: 36px;
  height: 36px;
  background: var(--light-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .9rem;
  flex-shrink: 0;
}
.pkg-know-item strong { display: block; font-size: .875rem; font-weight: 700; color: var(--text-dark); margin-bottom: .25rem; }
.pkg-know-item p { font-size: .8rem; color: var(--text-body); margin: 0; line-height: 1.5; }

/* Category tags */
.pkg-categories {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pkg-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--light-2);
  border: 1px solid var(--light-3);
  color: var(--text-body);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 20px;
}
.pkg-cat-tag i { color: var(--primary); font-size: .72rem; }

@media (max-width: 640px) {
  .pkg-know-grid { grid-template-columns: 1fr; }
}

/* --- Sidebar --- */
.pkg-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Price Card */
.pkg-price-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  overflow: hidden;
}
.pkg-price-header {
  background: var(--primary);
  color: #fff;
  padding: 1.4rem 1.8rem;
}
.pkg-price-header .pkg-price-from { display: block; font-size: .8rem; font-weight: 500; opacity: .8; margin-bottom: .2rem; }
.pkg-price-amount { font-size: 2rem; font-weight: 800; line-height: 1; }
.pkg-price-per { font-size: 1rem; font-weight: 500; opacity: .8; }
.pkg-price-body { padding: 1.5rem 1.8rem; }

/* Booking Form */
.pkg-book-form { display: flex; flex-direction: column; gap: .9rem; }
.pkg-book-btn {
  width: 100%;
  padding: .9rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: .3rem;
}
.pkg-book-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Trust Items */
.pkg-sidebar-trust {
  background: #fff;
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pkg-trust-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .845rem;
  color: var(--text-body);
  line-height: 1.4;
}
.pkg-trust-item i { color: var(--primary); margin-top: .1rem; flex-shrink: 0; }

/* --- Related Packages --- */
.related-section {
  padding: 4rem 0 5rem;
  background: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pkg-detail-layout { grid-template-columns: 1fr; }
  .pkg-sidebar { position: static; }
  .pkg-stats-inner { grid-template-columns: repeat(3, 1fr); }
  .pkg-stat-item:nth-child(3) { border-right: none; }
  .pkg-stat-item:nth-child(4) { border-right: 1px solid #E2E8F0; }
}
@media (max-width: 640px) {
  /* ── Hero ── */
  .pkg-hero { min-height: 62vh; }
  .pkg-hero-content { padding: .75rem 1.25rem 2rem; }
  .pkg-hero-badge {
    font-size: .68rem;
    padding: .25rem .75rem;
    margin-bottom: .75rem;
    letter-spacing: .08em;
  }
  .pkg-hero-title { font-size: 1.7rem; margin-bottom: .4rem; }
  .pkg-hero-tagline { font-size: .88rem; margin-bottom: .9rem; opacity: .82; }
  .pkg-hero-tags {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: .4rem;
    padding-bottom: .2rem;
    scrollbar-width: none;
  }
  .pkg-hero-tags::-webkit-scrollbar { display: none; }
  .pkg-hero-tag {
    flex-shrink: 0;
    font-size: .72rem;
    padding: .22rem .65rem;
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.3);
  }

  /* ── Stats Bar: horizontal scroll strip ── */
  .pkg-stats-bar {
    background: #fff;
    box-shadow: 0 1px 0 #E2E8F0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pkg-stats-bar::-webkit-scrollbar { display: none; }
  .pkg-stats-inner {
    display: flex !important;
    flex-wrap: nowrap;
    padding: 0 .5rem;
    width: max-content;
    min-width: 100%;
    gap: 0;
  }
  .pkg-stat-item {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .3rem;
    padding: .9rem .85rem;
    border-right: 1px solid #F1F5F9 !important;
    min-width: 90px;
    background: #fff;
  }
  .pkg-stat-item:last-child { border-right: none !important; }
  .pkg-stat-icon {
    width: 34px; height: 34px;
    font-size: .82rem;
    border-radius: 10px;
    margin-bottom: .1rem;
    flex-shrink: 0;
  }
  .pkg-stat-label {
    font-size: .6rem;
    letter-spacing: .06em;
    color: var(--text-muted);
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .pkg-stat-value {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    white-space: nowrap;
  }

  /* ── Route Banner ── */
  .pkg-route-banner {
    background: var(--primary);
    border-bottom: none;
    padding: .7rem 0;
  }
  .pkg-route-icon { color: rgba(255,255,255,.7); }
  .pkg-route-label { color: rgba(255,255,255,.85); font-size: .78rem; }
  .pkg-route-stops { color: rgba(255,255,255,.9); font-size: .78rem; }
  .pkg-route-stops i { color: rgba(255,255,255,.5); }
  .pkg-route-inner { flex-wrap: nowrap; overflow-x: auto; padding: 0 1.25rem; width: max-content; min-width: 100%; }
  .pkg-route-inner::-webkit-scrollbar { display: none; }

  /* ── Content Section ── */
  .pkg-detail-section { padding: 1.25rem 0 2.5rem; }
  .pkg-content-card {
    padding: 1.2rem 1.1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
  }
  .pkg-content-card h2 {
    font-size: 1.1rem;
    margin-bottom: .9rem;
    padding-bottom: .6rem;
  }
  .pkg-overview-text { font-size: .88rem; line-height: 1.7; }

  /* ── Itinerary ── */
  .itinerary-day { grid-template-columns: 52px 1fr; gap: .75rem; padding: 1rem 0; }

  /* ── Inclusions / Gallery ── */
  .inclusions-grid { grid-template-columns: 1fr; }
  .pkg-gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Sidebar (stacked below on mobile) ── */
  .pkg-sidebar { margin-top: 0; }
}

/* =====================================================
   FOUNDER'S MESSAGE
   ===================================================== */
.founder-section {
  background: #F3F4F6;
  padding: 5rem 0;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
}

.founder-photo {
  position: relative;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-card {
  background: #fff;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-deco {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .15em;
  margin-bottom: 1.5rem;
  opacity: .6;
}

.founder-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  text-align: justify;
  margin: 0 0 2rem;
}

.founder-sig {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.founder-dash {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}
.founder-sig strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}
.founder-sig span {
  font-size: .8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .founder-layout { grid-template-columns: 1fr; }
  .founder-photo img { max-height: 320px; }
  .founder-card { padding: 2rem 1.6rem; }
  .founder-text { font-size: .92rem; }
}

/* =====================================================
   SECTION 25b — BOOKING WIDGET REDESIGN
   ===================================================== */

/* Section wrapper — light/white background */
.rbc-section {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: #F8FAFB;
}
.rbc-section-bg { display: none; }
.rbc-section-overlay { display: none; }

/* Section heading */
.rbc-section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #DBEAFE;
  border: 1px solid #BBF7D0;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.rbc-heading-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 .6rem;
}
.rbc-section-sub {
  color: var(--text-body);
  font-size: 1rem;
  margin: 0;
}

/* 2-col layout */
.rbc-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.8rem;
  align-items: start;
}

/* Override card margin since it's now in a grid */
.rbc-layout .ride-booking-card {
  margin: 0;
}

/* Summary Sidebar */
.rbc-summary {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.rbc-summary-head {
  background: var(--primary);
  color: #fff;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.rbc-summary-head i { font-size: 1.1rem; opacity: .85; }
.rbc-summary-head h3 { font-size: 1rem; font-weight: 700; margin: 0; color: #fff; }

.rbc-summary-body {
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid #E2E8F0;
}
.rbc-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .75rem;
}
.rbc-sum-row:last-of-type { margin-bottom: 0; }
.rbc-sum-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.rbc-sum-val {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}
.rbc-sum-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 1rem 0;
}
.rbc-sum-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.rbc-sum-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

/* Trust list in sidebar */
.rbc-trust-list {
  padding: 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  border-bottom: 1px solid #E2E8F0;
}
.rbc-trust-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .8rem;
  color: var(--text-body);
  line-height: 1.4;
}
.rbc-trust-item i { color: var(--primary); margin-top: .1rem; flex-shrink: 0; }

/* Call CTA */
.rbc-sum-call {
  padding: 1.2rem 1.6rem;
  text-align: center;
}
.rbc-sum-call p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0 0 .6rem;
}
.rbc-call-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--light-2);
  color: var(--primary);
  font-size: .875rem;
  font-weight: 700;
  padding: .6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.rbc-call-btn:hover { background: var(--primary); color: #fff; }

/* Responsive */
@media (max-width: 960px) {
  .rbc-layout { grid-template-columns: 1fr; }
  .rbc-summary { position: static; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

/* Hero */
.con-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.con-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 12s ease;
}
.con-hero:hover .con-hero-bg { transform: scale(1); }
.con-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,34,64,.82) 0%, rgba(10,34,64,.6) 50%, rgba(0,0,0,.45) 100%);
}
.con-hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 3rem) 2rem 5rem;
  color: #fff;
  max-width: 780px;
}
.con-hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.92);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
}
.con-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.con-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 2.2rem;
  max-width: 520px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.con-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.con-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  font-weight: 700;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.con-hero-btn:hover { transform: translateY(-2px); }
.con-hero-btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,86,219,.4);
}
.con-hero-btn--primary:hover { box-shadow: 0 8px 28px rgba(26,86,219,.5); }
.con-hero-btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.con-hero-btn--wa:hover { box-shadow: 0 8px 28px rgba(37,211,102,.45); }

/* Stats chips at hero bottom */
.con-hero-chips {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,34,64,.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .9rem 2rem;
}
.con-hero-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.con-hero-chip strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.con-hero-chip span {
  font-size: .68rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-top: .2rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.con-hero-chip-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* Contact Strip */
.con-strip {
  background: #fff;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  position: relative;
  z-index: 5;
}
.con-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.con-strip-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.4rem;
  border-right: 1px solid #F1F5F9;
  text-decoration: none;
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.con-strip-card:last-child { border-right: none; }
.con-strip-card:hover { background: #F0FDF4; }
.con-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .2s;
}
.con-strip-card:hover .con-strip-icon { transform: scale(1.08); }
.con-strip-icon--location { background: #FEF3C7; color: #D97706; }
.con-strip-icon--phone   { background: #DBEAFE; color: #2563EB; }
.con-strip-icon--email   { background: #DBEAFE; color: #2563EB; }
.con-strip-icon--clock   { background: #F3E8FF; color: #9333EA; }
/* Transport icon variants */
.con-strip-icon--snow    { background: #DBEAFE; color: #2563EB; }
.con-strip-icon--driver  { background: #FEF3C7; color: #D97706; }
.con-strip-icon--door    { background: #DBEAFE; color: #2563EB; }
.con-strip-icon--shield  { background: #F3E8FF; color: #9333EA; }
.con-strip-body { flex: 1; min-width: 0; }
.con-strip-body h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 .2rem;
}
.con-strip-body p {
  font-size: .8rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}
.con-strip-arrow {
  font-size: .72rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.con-strip-card:hover .con-strip-arrow { transform: translateX(3px); color: var(--primary); }

/* Main Layout */
.con-main-section {
  padding: 4.5rem 0 5rem;
  background: #F8FAFB;
}
.con-main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

/* Form Card */
.con-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2.8rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
}
.con-form-header { margin-bottom: 2rem; }
.con-form-header h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: .5rem 0 .4rem;
}
.con-form-header p { color: var(--text-body); font-size: .9rem; margin: 0; }
.req { color: var(--primary); }

/* Input wrap with icon */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap > i {
  position: absolute;
  left: .9rem;
  color: var(--text-muted);
  font-size: .85rem;
  pointer-events: none;
  z-index: 1;
}
.input-wrap input,
.input-wrap select {
  padding-left: 2.5rem !important;
}
.input-wrap--select::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: .9rem;
  font-size: .72rem;
  color: var(--text-muted);
  pointer-events: none;
}
.input-wrap select { appearance: none; -webkit-appearance: none; }

.con-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1a5c3a 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(26,86,219,.3);
  margin-top: .5rem;
}
.con-submit-btn:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,.35);
}

/* Sidebar */
.con-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* WhatsApp Card */
.con-whatsapp-card {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  color: #fff;
}
.con-wa-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.con-whatsapp-card h4 { font-size: .95rem; font-weight: 700; margin: 0; color: #fff; }
.con-whatsapp-card p { font-size: .8rem; opacity: .88; margin: 0; line-height: 1.5; }
.con-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: #128C7E;
  font-size: .85rem;
  font-weight: 700;
  padding: .6rem 1.3rem;
  border-radius: 30px;
  text-decoration: none;
  align-self: flex-start;
  transition: transform .2s, box-shadow .2s;
}
.con-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.15); }

/* Map Card */
.con-map-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
.con-map-placeholder {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 100%);
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  padding: 1.5rem;
}
.con-map-placeholder i { font-size: 2.2rem; color: var(--primary); }
.con-map-placeholder strong { font-size: .92rem; color: var(--text-dark); font-weight: 700; }
.con-map-placeholder span { font-size: .78rem; color: var(--text-muted); }

/* Trust Card */
.con-trust-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
.con-trust-card h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.con-trust-list { display: flex; flex-direction: column; gap: .65rem; }
.con-trust-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .84rem;
  color: var(--text-body);
  line-height: 1.4;
}
.con-trust-item i {
  width: 28px; height: 28px;
  background: #F0FDF4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .8rem;
  flex-shrink: 0;
}

/* Social Card */
.con-social-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
.con-social-card h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

/* FAQ Section */
.con-faq-section {
  padding: 5rem 0;
  background: #F8FAFB;
}

/* Responsive */
@media (max-width: 1024px) {
  .con-main-layout { grid-template-columns: 1fr; }
  .con-sidebar { position: static; }
  .con-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .con-strip-card:nth-child(2) { border-right: none; }
  .con-strip-card:nth-child(3) { border-top: 1px solid #F1F5F9; }
  .con-strip-card:nth-child(4) { border-top: 1px solid #F1F5F9; border-right: none; }
}
@media (max-width: 640px) {
  /* Hero */
  .con-hero { min-height: 100svh; justify-content: flex-end; }
  .con-hero-content { padding: calc(var(--nav-height) + 1.5rem) 1.25rem 1.5rem; }
  .con-hero-title { font-size: 2rem; }
  .con-hero-sub { font-size: .9rem; margin-bottom: 1.5rem; }
  .con-hero-btn { font-size: .85rem; padding: .75rem 1.4rem; }
  .con-hero-chips {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: .75rem .5rem;
    scrollbar-width: none;
  }
  .con-hero-chips::-webkit-scrollbar { display: none; }
  .con-hero-chip { padding: 0 1.2rem; flex-shrink: 0; }
  .con-hero-chip strong { font-size: 1.1rem; }
  .con-hero-chip span { font-size: .62rem; }

  /* Strip */
  .con-strip-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .con-strip-card {
    border-right: 1px solid #F1F5F9 !important;
    border-bottom: 1px solid #F1F5F9;
    padding: 1.1rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }
  .con-strip-card:nth-child(even) { border-right: none !important; }
  .con-strip-card:nth-child(3),
  .con-strip-card:nth-child(4) { border-bottom: none; }
  .con-strip-icon { width: 38px; height: 38px; font-size: .9rem; border-radius: 10px; }
  .con-strip-arrow { display: none; }
  .con-strip-body h4 { font-size: .82rem; }
  .con-strip-body p { font-size: .76rem; }

  /* Form */
  .con-form-card { padding: 1.4rem 1.1rem; border-radius: 16px; }
  .con-form-header h2 { font-size: 1.25rem; }
  .con-form-header p { font-size: .84rem; }

  /* Main section */
  .con-main-section { padding: 1.5rem 0 3rem; }

  /* FAQ */
  .con-faq-section { padding: 3rem 0; }
}

/* =====================================================
   SECTION 26 — HOMEPAGE MOBILE POLISH
   ===================================================== */

/* ---- Hidden/shown helpers ---- */
.mob-only  { display: none; }
.desk-only { display: block; }

/* Mobile CTA buttons (hero) — hidden on desktop */
.hero-mobile-ctas { display: none; }

/* ---- 768px breakpoint ---- */
@media (max-width: 768px) {

  /* --- SECTION 1: HERO --- */

  /* Uniform dark overlay on mobile */
  .hero-overlay {
    background: linear-gradient(to top,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.65) 50%,
      rgba(0,0,0,.45) 100%);
  }

  /* Stack hero inner, center everything */
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 0;
    align-items: flex-end;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 3.5rem;
    min-height: 100vh;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }

  /* Center hero text, constrain width */
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-eyebrow {
    font-size: .72rem;
    margin-bottom: .9rem;
    letter-spacing: .12em;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    letter-spacing: -.01em;
    margin-bottom: .9rem;
    word-break: break-word;
    width: 100%;
  }

  .hero-subtitle {
    font-size: .9rem;
    max-width: 100%;
    margin-bottom: 1.4rem;
    color: rgba(255,255,255,.75);
    padding: 0 .5rem;
    box-sizing: border-box;
  }

  /* Trust items — 3 wrapped pills, centered */
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .45rem;
    width: 100%;
    margin-bottom: 1.8rem;
    padding: 0;
  }

  .hero-trust-sep { display: none; }

  .hero-trust-item {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 20px;
    padding: .32rem .8rem;
    font-size: .75rem;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: .38rem;
    white-space: nowrap;
  }

  .hero-trust-item i {
    font-size: .72rem;
    color: var(--secondary);
  }

  /* Mobile CTA buttons — show on mobile */
  .hero-mobile-ctas {
    display: flex;
    gap: .65rem;
    width: 100%;
    flex-direction: column;
  }

  .hero-mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .85rem 1.2rem;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-mob-btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26,86,219,.4);
  }

  .hero-mob-btn--outline {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
    backdrop-filter: blur(4px);
  }

  /* Hide the quote form card on mobile */
  .hero-form-card { display: none !important; }

  /* Scroll arrow */
  .hero-scroll { display: flex; }

  /* --- SECTION 2: STATS BAR --- */

  .stats-bar { padding: 0; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    padding: 1.6rem 1rem;
    border-right: 1px solid var(--light-3);
    border-bottom: 1px solid var(--light-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    background: #fff;
  }

  /* Fix border pattern for 2×2 grid */
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--light-3); border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; border-bottom: none; }

  /* Show icons on mobile */
  .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-2);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: .2rem;
  }

  .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
  }

  .stat-label {
    font-size: .72rem;
    letter-spacing: .06em;
  }
}

/* ===========================================
   SECTION 27 — PACKAGE DETAIL EXTRA ELEMENTS
   (Route Banner, What to Bring, Know Before)
   =========================================== */

/* Route Banner */
.pkg-route-banner {
  background: #fff;
  border-bottom: 1px solid var(--light-3);
  padding: .85rem 0;
}
.pkg-route-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .85rem;
}
.pkg-route-icon {
  color: var(--primary);
  font-size: 1rem;
}
.pkg-route-label {
  font-weight: 700;
  color: var(--text-dark);
  margin-right: .2rem;
}
.pkg-route-stops {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem;
  color: #555;
}
.pkg-route-stops i {
  font-size: .65rem;
  color: var(--primary);
  opacity: .7;
}

/* Category Tags */
.pkg-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--light-2);
  border: 1px solid var(--light-3);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: .3rem .8rem;
  border-radius: 20px;
  margin: .2rem .2rem .2rem 0;
}
.pkg-cat-tag i {
  color: var(--primary);
  font-size: .72rem;
}

/* Know Before You Go grid */
.pkg-know-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.pkg-know-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: #F8FAFB;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--light-3);
}
.pkg-know-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
}
.pkg-know-item strong {
  display: block;
  font-size: .9rem;
  color: var(--text-dark);
  margin-bottom: .25rem;
}
.pkg-know-item p {
  font-size: .83rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* What to Bring */
.bring-category {
  margin-bottom: 1.4rem;
}
.bring-cat-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bring-cat-title i {
  color: var(--primary);
}
.bring-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.bring-list li {
  font-size: .87rem;
  color: #555;
  padding-left: 1.2rem;
  position: relative;
}
.bring-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .pkg-know-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP FLOATING WIDGET
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
  color: #fff;
}

/* Ripple pulse */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: calc(100% + .85rem);
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  font-family: var(--font-body, sans-serif);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #111;
}

.wa-float:hover .wa-tooltip { opacity: 1; }

@media (max-width: 768px) {
  .wa-float {
    bottom: 5rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .wa-tooltip { display: none; }
}

/* ============================================================
   LIVE REVIEWS WIDGET
   ============================================================ */

/* Platform badges */
.reviews-platform-row { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin:1.5rem 0 2.5rem; }
.rv-platform-badge { display:inline-flex; align-items:center; gap:.45rem; background:#fff; border:1px solid #e2e8f0; border-radius:12px; padding:.55rem 1rem; font-size:.82rem; font-weight:600; box-shadow:0 2px 8px rgba(0,0,0,.06); }
.rv-platform-badge--google  { color:#4285F4; }
.rv-platform-badge--tripadvisor { color:#34E0A1; }
.rpb-score { font-size:1.1rem; font-weight:800; color:#0f172a; }
.rpb-count { color:#94a3b8; font-weight:400; }

/* Source icon on card */
.rv-source-icon { margin-left:auto; font-size:.9rem; opacity:.6; }
.rv-source-icon--google  { color:#4285F4; }
.rv-source-icon--ta      { color:#34E0A1; }

/* Review title */
.rv-review-title { font-size:.88rem; font-weight:700; color:#1a2e1a; margin-bottom:.35rem; }

/* Review photos grid */
.rv-photos-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:.35rem; margin:.75rem 0; }
.rv-photo-thumb { position:relative; aspect-ratio:1; overflow:hidden; border-radius:6px; cursor:pointer; background:#f1f5f9; }
.rv-photo-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.rv-photo-thumb:hover img { transform:scale(1.06); }
.rv-photo-more { position:absolute; inset:0; background:rgba(0,0,0,.5); color:#fff; font-size:.85rem; font-weight:700; display:flex; align-items:center; justify-content:center; }

/* Avatar image (circular photo) */
.rv-avatar-wrap { flex-shrink:0; }
.rv-avatar-img { width:40px; height:40px; border-radius:50%; object-fit:cover; }

/* Write review CTA row */
.rv-write-row { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2.5rem; }
.rv-write-btn { display:inline-flex; align-items:center; gap:.5rem; padding:.65rem 1.4rem; border-radius:10px; font-size:.875rem; font-weight:600; text-decoration:none; transition:background .2s,transform .15s; }
.rv-write-btn:hover { transform:translateY(-2px); }
.rv-write-btn--google { background:#fff; color:#4285F4; border:1.5px solid #4285F4; }
.rv-write-btn--google:hover { background:#EAF1FF; }
.rv-write-btn--ta     { background:#fff; color:#00aa6c; border:1.5px solid #00aa6c; }
.rv-write-btn--ta:hover { background:#E6F7F1; }

/* Section separator */
.rv-section-sep { border:none; border-top:1px solid #e2e8f0; margin:2.5rem 0; }

/* Lightbox */
#rv-lightbox { display:none; position:fixed; inset:0; z-index:2000; align-items:center; justify-content:center; }
#rv-lightbox.open { display:flex; }
.rv-lb-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.85); }
.rv-lb-inner { position:relative; z-index:1; max-width:90vw; max-height:90vh; }
#rv-lb-img { max-width:90vw; max-height:85vh; border-radius:12px; object-fit:contain; }
.rv-lb-close { position:absolute; top:-2.5rem; right:0; background:rgba(255,255,255,.15); border:none; color:#fff; font-size:1.2rem; width:36px; height:36px; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.rv-lb-close:hover { background:rgba(255,255,255,.3); }

/* Reviews section divider header */
.rv-source-header { display:flex; align-items:center; gap:.75rem; margin:2.5rem 0 1.25rem; }
.rv-source-header-icon { width:32px; height:32px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.rv-source-header-icon--google { background:#EAF1FF; color:#4285F4; }
.rv-source-header-icon--ta     { background:#E6F7F1; color:#00aa6c; }
.rv-source-header h3 { font-size:1.05rem; font-weight:700; color:#0f172a; margin:0; }
.rv-source-header-line { flex:1; height:1px; background:#e2e8f0; }

/* Loading / empty state */
.rv-loading-state { text-align:center; padding:2rem; color:#94a3b8; font-size:.9rem; }
.rv-empty { text-align:center; color:#94a3b8; font-size:.875rem; padding:1.5rem; }

@media (max-width:600px) { .rv-photos-grid { grid-template-columns:repeat(2,1fr); } }
/* ============================================================ */
