/* =============================================
   AIR & MER TRAVEL — Premium CSS v3
   Clean, spacious, professional
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:        #416d82;
  --navy-dark:   #2b4859;
  --navy-mid:    #4a7c93;
  --green:       #C69C2D;
  --green-dark:  #A17D21;
  --green-pale:  #FDFBF2;
  --white:       #FFFFFF;
  --off-white:   #F3F6FA;
  --gray-100:    #EEF2F7;
  --gray-200:    #D8E2F0;
  --gray-400:    #8FA3C0;
  --gray-600:    #4A6080;
  --gray-800:    #1E2E45;
  --gold:        #F59E0B;
  --red:         #E53E3E;

  --shadow-sm:  0 2px 8px rgba(65,109,130,0.08);
  --shadow-md:  0 6px 24px rgba(65,109,130,0.12);
  --shadow-lg:  0 16px 48px rgba(65,109,130,0.18);
  --shadow-xl:  0 24px 64px rgba(65,109,130,0.22);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --t: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Outfit', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
/* Inline icon images — must NOT be block-level */
.top-item img, .top-soc img,
.nav-tel img, .btn-nav-reserve img,
.nav-logo-mark img,
.hero-tag img, .btn img, .btn-arrow img,
.ticker-item img, .type-tab img,
.input-icon img, .form-submit img, .search-submit img,
.filter-tab img, .pkg-tag-type img, .pkg-meta img,
.dest-card-name img, .cat-card-header img, .cat-card-dest img,
.feat-box-head img, .feat-box-list li img,
.omra-form-title img, .billet-form-title img, .billet-step-ico img,
.testi-stars img, .testi-location img, .testi-trip img,
.ccard-ico img, .footer-logo-mark img, .footer-soc img,
.footer-col ul li a img, .modal-title img, .toast-ico img,
.eyebrow img {
  display: inline-block;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── ICONS ── */
.icon { display: inline-flex; align-items: center; justify-content: center; }
.icon img { display: block; object-fit: contain; }
.icon-16 img { width: 16px; height: 16px; }
.icon-20 img { width: 20px; height: 20px; }
.icon-24 img { width: 24px; height: 24px; }
.icon-32 img { width: 32px; height: 32px; }
.icon-40 img { width: 40px; height: 40px; }
.icon-48 img { width: 48px; height: 48px; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); line-height: 1.2; font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 0.97rem; font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--green); margin-bottom: 12px;
}
.section-title { color: var(--navy-dark); margin-bottom: 10px; }
.section-subtitle { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }
.text-center { text-align: center; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; }
.section-light { background: var(--off-white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; border: none;
  cursor: pointer; transition: var(--t); white-space: nowrap;
}
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 6px 20px rgba(198,156,45,0.3); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(198,156,45,0.45); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 6px 20px rgba(65,109,130,0.25); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); }
.btn-arrow {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.2); display: flex; align-items: center;
  justify-content: center; font-size: 0.85rem; transition: var(--t);
}
.btn-arrow-dark { background: var(--green); color: var(--white); }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-lg { padding: 16px 34px; font-size: 0.95rem; }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.top-bar {
  background: var(--navy-dark);
  padding: 10px 0;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.top-item:hover { color: var(--green); }
.top-item img { width: 14px; height: 14px; opacity: 0.85; }
.top-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.15); }
.top-socials { display: flex; gap: 10px; }
.top-soc { display: flex; align-items: center; justify-content: center; opacity: 0.75; transition: opacity 0.2s; }
.top-soc:hover { opacity: 1; }
.top-soc img { width: 16px; height: 16px; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(65,109,130,0.1); }

.nav-wrapper {
  display: flex; align-items: center;
  height: 68px; gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 800; color: var(--navy-dark);
  flex-shrink: 0; white-space: nowrap;
}
.nav-logo-mark {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #528BA3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(65,109,130,0.3);
  font-size: 1.1rem; color: var(--white);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text strong { font-size: 1.15rem; color: var(--green); }
.nav-logo-text span { font-size: 0.9rem; color: var(--navy); font-weight: 700; letter-spacing: 0.03em; margin-top: 1px; }

/* Nav Links */
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 0.87rem; font-weight: 600; color: var(--gray-600);
  padding: 8px 14px; border-radius: 8px; transition: var(--t);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--off-white); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-tel {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.84rem; font-weight: 700; color: var(--navy);
  white-space: nowrap; transition: color 0.2s;
}
.nav-tel:hover { color: var(--green); }
.nav-tel img { width: 15px; height: 15px; }
/* Slim reserve button in nav */
.btn-nav-reserve {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 8px; font-size: 0.82rem; font-weight: 700;
  background: var(--green); color: var(--white); border: none; cursor: pointer;
  transition: var(--t); white-space: nowrap; box-shadow: 0 3px 12px rgba(198,156,45,0.3);
}
.btn-nav-reserve:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-nav-reserve img { width: 15px; height: 15px; flex-shrink: 0; object-fit: contain; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-dark); border-radius: 2px; transition: var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--white); padding: 76px 28px 32px;
  overflow-y: auto; transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-close { display: none; }
.mobile-nav-links { display: flex; flex-direction: column; margin-bottom: 24px; }
.mobile-nav-links a {
  font-size: 1rem; font-weight: 600; color: var(--navy-dark);
  padding: 14px 0; border-bottom: 1px solid var(--gray-100);
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--green); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 10px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center; overflow: hidden;
}
/* Video background */
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
/* No overlay — video already has one baked in */
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px;
  align-items: center; padding: 80px 0 60px;
}
.hero-inner.hero-centered {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 1000px; margin: 0 auto; gap: 40px;
}

/* Hero left */
.hero-eyebrow { 
  display: inline-block; 
  color: var(--green); 
  font-size: 0.85rem; 
  font-weight: 800; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  margin-bottom: 12px; 
}
.hero-title { color: var(--white); margin-bottom: 18px; }
.hero-title em { font-style: normal; color: var(--green); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 440px; margin-bottom: 32px; line-height: 1.8; }
.hero-centered .hero-desc { margin-left: auto; margin-right: auto; max-width: 650px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.95); border-radius: var(--r-md);
  padding: 16px 24px; box-shadow: var(--shadow-xl); width: fit-content;
}
.hero-badge-icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.hero-badge-icon img { width: 26px; height: 26px; }
.hero-badge-from { font-size: 0.72rem; color: var(--gray-400); }
.hero-badge-amount { font-size: 1.6rem; font-weight: 800; color: var(--green); line-height: 1; }
.hero-badge-per { font-size: 0.72rem; color: var(--gray-400); }

/* Hero arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.hero-arrow:hover { background: rgba(255,255,255,0.22); }
.hero-arrow-left { left: 16px; }
.hero-arrow-right { right: 16px; }

/* ==========================================================
   STYLE 1 (ARCHIVED - old form design)
==========================================================
.booking-card {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-radius: var(--r-xl); padding: 32px 28px;
  box-shadow: var(--shadow-xl);
}
.booking-card-title { font-size: 1.1rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 4px; }
.booking-card-sub { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 20px; }

.type-tabs { display: flex; gap: 4px; background: var(--gray-100); border-radius: 10px; padding: 4px; margin-bottom: 18px; }
.type-tab {
  flex: 1; padding: 8px 4px; border: none; border-radius: 8px;
  font-size: 0.75rem; font-weight: 700; cursor: pointer;
  background: transparent; color: var(--gray-400); transition: var(--t);
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px;
}
.type-tab img { width: 14px; height: 14px; opacity: 0.5; transition: opacity 0.2s; }
.type-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.type-tab.active img { opacity: 1; }
.type-tab:hover:not(.active) { color: var(--gray-600); }
.type-tab:hover img { opacity: 0.7; }
========================================================== */

/* ==========================================================
   STYLE 4 (MULTI-STEP FLOW — TRAINLINE / AIRBNB APP)
========================================================== */

/* Outer wrapper */
.s4-wrap {
  width: 100%;
  max-width: 780px;
  position: relative;
}

/* Progress bar */
.s4-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  padding: 0 8px;
}
.s4-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: default;
}
.s4-step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s;
}
.s4-step-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.4s;
}
.s4-step.s4-active .s4-step-num {
  background: #FFB703;
  border-color: #FFB703;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,183,3,0.5);
}
.s4-step.s4-active .s4-step-lbl { color: #FFB703; }
.s4-step.s4-done .s4-step-num {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.s4-step.s4-done .s4-step-lbl { color: rgba(255,255,255,0.7); }
.s4-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 6px;
  margin-bottom: 18px;
  transition: background 0.4s;
}
.s4-line.s4-done { background: var(--green); }

/* The white card */
.s4-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(11,28,58,0.18);
}

/* STEP 1: Travel type big cards */
.s4-panel { padding: 32px; }

.s4-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.s4-type-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s4-type-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  background: #fafafa;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.25,1,0.5,1);
  width: 100%;
  font-family: inherit;
  position: relative;
}
.s4-type-card:hover {
  border-color: var(--navy);
  background: #f0f4ff;
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(11,28,58,0.08);
}
.s4-type-ico { 
  flex-shrink: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  width: 44px;
  height: 44px;
}
.s4-type-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.s4-type-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: block;
  margin-bottom: 2px;
}
.s4-type-sub {
  font-size: 0.78rem;
  color: #64748b;
  display: block;
}
.s4-type-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: #cbd5e1;
  transition: all 0.25s;
  flex-shrink: 0;
}
.s4-type-card:hover .s4-type-arrow { color: var(--navy); transform: translateX(4px); }

/* STEP 2: Fields */
.s4-step2-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.s4-radio-row { display: flex; gap: 16px; align-items: center; }
.s4-radio {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer; font-size: 0.82rem; font-weight: 600; color: #64748b;
}
.s4-radio input { display: none; }
.s4-radio-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid #cbd5e1; background: transparent;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s;
}
.s4-radio input:checked + .s4-radio-dot { background: var(--navy); border-color: var(--navy); }
.s4-radio input:checked + .s4-radio-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; }

/* Fields grid */
.s4-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.s4-span2 { grid-column: span 2; }
.s4-span4 { grid-column: 1 / -1; }
.s4-field { display: flex; flex-direction: column; gap: 4px; }
.s4-label {
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: #64748b;
}
.s4-input-wrap {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid #e2e8f0; border-radius: 12px;
  padding: 11px 14px; background: #f8fafc;
  transition: all 0.25s;
}
.s4-input-wrap:focus-within {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,28,58,0.08);
}
.s4-input-wrap.has-error {
  border-color: #ef4444;
  background: #fef2f2;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
  animation: shakeError 0.4s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shakeError {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
  40%, 60% { transform: translate3d(3px, 0, 0); }
}
.s4-input-wrap.has-error .s4-ico { opacity: 1; filter: grayscale(1) invert(35%) sepia(80%) saturate(5000%) hue-rotate(345deg) brightness(95%) contrast(100%); }

.s4-ico { font-size: 0.95rem; flex-shrink: 0; opacity: 0.6; transition: all 0.25s; }
.s4-input-wrap:focus-within .s4-ico { opacity: 1; }
.s4-input {
  background: transparent; border: none; outline: none;
  font-size: 0.95rem; font-weight: 600; color: var(--navy-dark);
  font-family: inherit; width: 100%; appearance: none; padding: 0;
}
.s4-input::placeholder { color: #94a3b8; font-weight: 400; }

/* Autocomplete styling */
.s4-autocomplete-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); max-height: 220px;
  overflow-y: auto; z-index: 1000; padding: 6px 0;
}
.s4-autocomplete-item {
  padding: 10px 16px; font-size: 0.9rem; font-weight: 600;
  color: var(--navy-dark); cursor: pointer; transition: background 0.15s;
}
.s4-autocomplete-item:hover { background: #f1f5f9; color: var(--navy); }
.s4-autocomplete-item strong { color: var(--navy); font-weight: 800; }


/* Passenger widget — floating dropdown */
.pax-widget {
  position: relative;
  flex: 1;
  min-width: 0;
}
.pax-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -14px; right: -14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(11,28,58,0.15);
  z-index: 200;
  padding: 12px 0;
  min-width: 260px;
}
.pax-dropdown.open { display: block; }
.pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  gap: 16px;
}
.pax-row + .pax-row { border-top: 1px solid #f1f5f9; }
.pax-row-label strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.pax-row-label small { font-size: 0.75rem; color: #94a3b8; }
.pax-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pax-btn {
  width: 30px; height: 30px;
  border: 1.5px solid #e2e8f0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-dark);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-family: inherit;
  line-height: 1;
}
.pax-btn:hover:not(:disabled) { border-color: var(--navy); color: var(--navy); background: #f0f4ff; }
.pax-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pax-count { font-size: 1rem; font-weight: 800; color: var(--navy-dark); min-width: 20px; text-align: center; }

/* Vehicle toggle */
.s4-veh-toggle {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: 0.85rem; font-weight: 700; color: var(--navy-dark); user-select: none;
}
.s4-veh-toggle input { display: none; }
.s4-veh-box {
  width: 20px; height: 20px; border: 2px solid #cbd5e1; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0;
}
.s4-veh-toggle input:checked + .s4-veh-box { background: var(--green); border-color: var(--green); }
.s4-veh-toggle input:checked + .s4-veh-box::after { content: '✓'; color: #fff; font-size: 0.7rem; font-weight: 900; }
.s4-veh-details { display: none; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Nav buttons */
.s4-btn-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px;
}
.s4-back-btn {
  background: none; border: none; font-size: 0.82rem; font-weight: 700;
  color: #64748b; cursor: pointer; padding: 8px 0;
  font-family: inherit; transition: color 0.2s;
}
.s4-back-btn:hover { color: var(--navy); }
.s4-next-btn {
  padding: 13px 32px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff; font-size: 0.95rem; font-weight: 800; font-family: inherit;
  cursor: pointer; box-shadow: 0 6px 20px rgba(11,28,58,0.25);
  transition: all 0.3s; letter-spacing: 0.01em;
}
.s4-next-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(11,28,58,0.35); filter: brightness(1.1); }

/* STEP 3: Submit */
.s4-submit-btn {
  width: 100%; padding: 17px; border: none; border-radius: 14px; margin-top: 8px; margin-bottom: 12px;
  background: linear-gradient(135deg, #FFB703, #F58A07);
  color: #fff; font-size: 1rem; font-weight: 900; font-family: inherit;
  text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer;
  box-shadow: 0 10px 28px rgba(245,138,7,0.4);
  transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
}
.s4-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(245,138,7,0.55); }
.s4-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 10px;
  font-size: 0.73rem; color: #94a3b8; margin-top: 4px;
}
.s4-trust strong { color: #475569; }

/* Panel fade animation */
.s4-panel-enter { animation: s4Fade 0.35s ease both; }
@keyframes s4Fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Date input iOS fix — prevents zoom & renders natively on all browsers ─── */
.s4-input[type="date"],
.s4-input[type="date"]::-webkit-datetime-edit {
  font-size: 1rem; /* must be ≥16px to prevent iOS Safari zoom */
  font-family: inherit;
  color: var(--navy-dark);
  font-weight: 600;
  appearance: auto;   /* allow native picker on mobile */
  -webkit-appearance: auto;
  min-height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  cursor: pointer;
}
.s4-input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
  margin-left: 2px;
}

/* ─── Tablet (≤768px) ─── */
@media (max-width: 768px) {
  .s4-wrap { max-width: 100%; padding: 0 4px; }
  .s4-card { border-radius: 18px; }
  .s4-panel { padding: 22px 18px; }
  .s4-type-card { padding: 14px 16px; gap: 12px; }
  .s4-type-ico { width: 36px; height: 36px; }
  .s4-fields-grid { gap: 10px; }
}

/* ─── Mobile (≤600px) ─── */
@media (max-width: 600px) {
  .s4-wrap { padding: 0 2px; }
  .s4-card { border-radius: 16px; }
  .s4-panel { padding: 18px 14px; }
  .s4-heading { font-size: 1rem; margin-bottom: 14px; }
  .s4-fields-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 12px; }
  .s4-span2, .s4-span4 { grid-column: span 1; }
  .s4-step2-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 14px; }
  .s4-radio-row { flex-wrap: wrap; gap: 10px 16px; }
  .s4-input-wrap { padding: 10px 12px; }
  /* Date picker — full native on iOS */
  .s4-input[type="date"] { font-size: 16px; }
  .s4-type-card { padding: 12px 14px; gap: 10px; }
  .s4-type-ico { width: 32px; height: 32px; }
  .s4-type-title { font-size: 0.9rem; }
  .s4-type-sub { font-size: 0.72rem; }
  .s4-next-btn { padding: 12px 22px; font-size: 0.88rem; }
  .s4-submit-btn { padding: 15px; font-size: 0.93rem; }
  .s4-btn-row { flex-wrap: wrap; gap: 8px; }
  .s4-back-btn { order: 2; }
  .s4-next-btn { order: 1; width: 100%; }
  .s4-progress { gap: 0; padding: 0 4px; margin-bottom: 14px; }
  .s4-step-num { width: 28px; height: 28px; font-size: 0.75rem; }
  .s4-step-lbl { font-size: 0.55rem; }
  .s4-veh-details { grid-template-columns: 1fr; }
  .pax-dropdown { left: 0; right: 0; min-width: 0; }
}

/* ─── Very small (≤380px — iPhone SE, Galaxy A series) ─── */
@media (max-width: 380px) {
  .s4-panel { padding: 14px 12px; }
  .s4-input-wrap { padding: 9px 10px; gap: 7px; }
  .s4-input { font-size: 0.88rem; }
  .s4-input[type="date"] { font-size: 16px; }
  .s4-type-card { padding: 10px 12px; }
}

/* ==========================================================
   STYLE 3 (GOOGLE FLIGHTS / KAYAK — UNIFIED SEARCH BAR)
========================================================== */


/* Outer wrapper — wide, centered, floats on hero */
.s3-wrap {
  width: 100%;
  max-width: 980px;
  position: relative;
}

/* Travel type chip bar */
.s3-chip-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.s3-chip {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.s3-chip:hover { background: rgba(255,255,255,0.22); color: #fff; border-color: rgba(255,255,255,0.6); }
.s3-chip.active {
  background: #fff;
  color: var(--navy-dark);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Trip type radio bar */
.s3-sub-bar {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}
.s3-radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 600;
}
.s3-radio-label input { display: none; }
.s3-radio-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.s3-radio-label input:checked + .s3-radio-dot {
  background: #FFB703;
  border-color: #FFB703;
  box-shadow: 0 0 0 3px rgba(255,183,3,0.25);
}
.s3-radio-label input:checked + .s3-radio-dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* THE UNIFIED SEARCH BAR — the magic */
.s3-searchbar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 4px 16px rgba(0,0,0,0.12);
  overflow: visible;
  margin-bottom: 10px;
  position: relative;
}

/* Each segment inside the bar */
.s3-seg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 20px;
  flex: 1;
  cursor: pointer;
  border-radius: 20px;
  transition: background 0.2s;
  position: relative;
  min-width: 0;
}
.s3-seg:hover { background: #f8fafc; }
.s3-seg:focus-within { background: #f0f4ff; }
.s3-seg-label {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  margin-bottom: 3px;
  white-space: nowrap;
}
.s3-seg:focus-within .s3-seg-label { color: #4F46E5; }

/* The inputs inside segments — fully invisible, blend in */
.s3-input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  font-family: inherit;
  width: 100%;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s3-input::placeholder { color: #94a3b8; font-weight: 400; }
.s3-select { cursor: pointer; }
.s3-select option { background: #fff; color: var(--navy-dark); }
.s3-pax-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
  cursor: pointer;
}

/* Swap button between from/to */
.s3-swap {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  width: 36px; height: 36px;
  min-width: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  align-self: center;
  transition: all 0.3s;
  color: #64748b;
  z-index: 2;
  flex-shrink: 0;
  margin: 0 -2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.s3-swap:hover { border-color: #4F46E5; color: #4F46E5; transform: rotate(180deg); }

/* Thin dividers between segments */
.s3-divider {
  width: 1px;
  background: #e2e8f0;
  margin: 12px 0;
  flex-shrink: 0;
}

/* Vehicle toggle inside bateau bar */
.s3-seg-veh { justify-content: center; min-width: fit-content; }
.s3-veh-toggle {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; font-size: 0.82rem; font-weight: 700; color: var(--navy-dark); user-select: none;
}
.s3-veh-toggle input { display: none; }
.s3-veh-box {
  width: 18px; height: 18px; border: 2px solid #cbd5e1; border-radius: 5px;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0;
}
.s3-veh-toggle input:checked + .s3-veh-box { background: #4F46E5; border-color: #4F46E5; }
.s3-veh-toggle input:checked + .s3-veh-box::after { content: '✓'; color: #fff; font-size: 0.65rem; font-weight: 900; }

/* Vehicle details panel below bar */
.s3-veh-details {
  display: none;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.s3-veh-row { display: flex; gap: 14px; }
.s3-veh-field { flex: 1; }
.s3-veh-field label { display: block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: #64748b; margin-bottom: 6px; }
.s3-veh-input {
  width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-size: 0.9rem; font-family: inherit; color: var(--navy-dark); background: #fff; outline: none; appearance: none;
}
.s3-veh-input:focus { border-color: #4F46E5; box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }

/* Contact row + CTA */
.s3-contact-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 12px;
}
.s3-contact-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.s3-contact-field .s3-seg-label { margin-bottom: 4px; }
.s3-contact-field .s3-input { font-size: 0.9rem; }

/* CTA Button */
.s3-cta {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(79,70,229,0.4);
  transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
  align-self: flex-end;
  letter-spacing: 0.02em;
}
.s3-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(79,70,229,0.55); filter: brightness(1.08); }

/* Trust bar */
.s3-trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 12px;
  font-size: 0.74rem; color: rgba(255,255,255,0.6);
}
.s3-trust strong { color: rgba(255,255,255,0.9); }
.s3-trust-dot { color: rgba(255,255,255,0.25); }

/* Mobile */
@media (max-width: 768px) {
  .s3-searchbar { flex-direction: column; border-radius: 16px; }
  .s3-seg { padding: 12px 16px; }
  .s3-divider { width: auto; height: 1px; margin: 0 16px; }
  .s3-swap { display: none; }
  .s3-contact-row { flex-direction: column; }
  .s3-cta { width: 100%; text-align: center; }
  .s3-veh-row { flex-direction: column; }
}

/* ==========================================================
   STYLE 2 (PREMIUM DARK BOOKING CARD — BCW)
========================================================== */


/* The main card: deep dark gradient, full-width, centered */
.bcw-card {
  width: 100%;
  max-width: 940px;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 60%, #0f2942 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 36px 40px 32px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
  overflow: visible;
}
/* Subtle top glow line */
.bcw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,183,3,0.6), transparent);
}

/* Tab selector — horizontal pill row at top */
.bcw-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.bcw-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
  white-space: nowrap;
}
.bcw-tab-ico { font-size: 1.1rem; line-height: 1; }
.bcw-tab:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.bcw-tab.active {
  background: linear-gradient(135deg, #FFB703, #F58A07);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(245,138,7,0.45);
  transform: translateY(-1px);
}

/* Form grid */
.bcw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.bcw-col-1 { grid-column: span 1; }
.bcw-col-2 { grid-column: span 2; }
.bcw-col-full { grid-column: 1 / -1; }

/* Each field — the "Bento" tile, dark version */
.bcw-field {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 12px 16px 10px;
  transition: all 0.3s ease;
  cursor: text;
  position: relative;
}
.bcw-field:focus-within {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,183,3,0.6);
  box-shadow: 0 0 0 3px rgba(255,183,3,0.12);
}
.bcw-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
  transition: color 0.3s;
}
.bcw-field:focus-within .bcw-label { color: #FFB703; }

.bcw-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bcw-ico {
  display: flex;
  align-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.bcw-ico img { width: 16px; height: 16px; filter: invert(1) brightness(2); opacity: 0.6; }
.bcw-field:focus-within .bcw-ico { opacity: 1; }
.bcw-field:focus-within .bcw-ico img { opacity: 1; }

/* The actual inputs — seamless */
.bcw-control {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.97rem;
  font-weight: 600;
  font-family: inherit;
  padding: 2px 0;
  appearance: none;
  -webkit-appearance: none;
}
.bcw-control::placeholder { color: rgba(255,255,255,0.25); font-weight: 400; }
.bcw-control option { background: #1e293b; color: #fff; }
.bcw-control:focus { box-shadow: none; }

/* Inline route row with swap btn */
.bcw-route-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.bcw-route-row .bcw-field { flex: 1; }
.bcw-swap-btn {
  background: rgba(255,183,3,0.12);
  border: 1.5px solid rgba(255,183,3,0.3);
  color: #FFB703;
  border-radius: 50%;
  width: 38px;
  min-width: 38px;
  height: 38px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.bcw-swap-btn:hover { background: rgba(255,183,3,0.25); transform: rotate(180deg); }

/* Vehicle toggle */
.bcw-vehicle-row { padding: 6px 0; }
.bcw-vehicle-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  user-select: none;
}
.bcw-vehicle-toggle input { display: none; }
.bcw-veh-box {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.bcw-vehicle-toggle input:checked + .bcw-veh-box {
  background: #FFB703;
  border-color: #FFB703;
}
.bcw-vehicle-toggle input:checked + .bcw-veh-box::after {
  content: '✓';
  color: #1e293b;
  font-size: 0.7rem;
  font-weight: 900;
}
.bcw-vehicle-details {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 16px;
  animation: scaleIn 0.2s ease;
}
.bcw-veh-note { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin: 8px 0 0; }

/* CTA Button */
.bcw-cta {
  width: 100%;
  padding: 18px 28px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFB703 0%, #F58A07 60%, #e07000 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(245,138,7,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
  margin-bottom: 14px;
}
.bcw-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(245,138,7,0.6); filter: brightness(1.05); }
.bcw-arrow { font-size: 1.2rem; transition: transform 0.3s; }
.bcw-cta:hover .bcw-arrow { transform: translateX(5px); }

/* Trust bar below CTA */
.bcw-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.bcw-trust strong { color: rgba(255,255,255,0.7); }
.bcw-dot { color: rgba(255,255,255,0.2); }

/* Mobile: stack to 1 column */
@media (max-width: 640px) {
  .bcw-card { padding: 24px 20px; border-radius: 20px; }
  .bcw-grid { grid-template-columns: 1fr; }
  .bcw-col-1, .bcw-col-2 { grid-column: span 1; }
  .bcw-tabs { gap: 6px; }
  .bcw-tab { padding: 9px 14px; font-size: 0.8rem; }
  .bcw-route-row { flex-direction: column; gap: 8px; }
  .bcw-swap-btn { transform: rotate(90deg); align-self: center; }
}


.booking-card {
  background: var(--white); 
  border-radius: 32px; 
  padding: 40px 32px 32px;
  box-shadow: 0 20px 40px rgba(11,28,58,0.15);
}
.booking-card-wide {
  background: var(--white);
  border: none;
  border-radius: 28px; 
  padding: 44px;
  box-shadow: 0 30px 60px rgba(11,28,58,0.15);
  width: 100%;
  max-width: 900px;
  text-align: left;
}
.booking-card-title { 
  font-size: 1.35rem; 
  font-weight: 900; 
  color: var(--navy-dark); 
  margin-bottom: 6px; 
  letter-spacing: -0.02em;
}
.booking-card-wide .booking-card-title {
  text-align: center;
  font-size: 1.5rem;
}
.booking-card-sub { 
  font-size: 0.85rem; 
  color: var(--gray-500); 
  margin-bottom: 24px; 
}
.booking-card-wide .booking-card-sub {
  text-align: center;
}

/* Premium Pill Tabs (High-Contrast Vibrant) */
.type-tabs { 
  display: flex; 
  gap: 4px; 
  background: linear-gradient(to right, var(--navy-dark), var(--navy)); /* Deep premium background */
  border-radius: 16px; 
  padding: 8px; /* Slightly thicker for the premium feel */
  margin-bottom: 36px; /* More breathing room */
  position: relative;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2), 0 10px 30px rgba(11,28,58,0.1);
}
.type-tab {
  flex: 1; 
  padding: 14px 6px; 
  border: none; 
  border-radius: 12px;
  font-size: 0.85rem; 
  font-weight: 800; 
  cursor: pointer;
  background: transparent; 
  color: rgba(255, 255, 255, 0.5); /* Faded white for inactive */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: center; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
}
.type-tab img { width: 18px; height: 18px; opacity: 0.5; transition: all 0.4s; filter: grayscale(100%) brightness(200%); }
.type-tab.active { 
  background: linear-gradient(135deg, var(--gold), #fb8500); /* Vibrant Gold/Orange Gradient */
  color: var(--white); 
  box-shadow: 0 8px 24px rgba(251, 133, 0, 0.4); 
  transform: scale(1.02);
}
.type-tab.active img { opacity: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)) grayscale(0%) brightness(100%); }
.type-tab:hover:not(.active) { color: var(--white); }
.type-tab:hover:not(.active) img { opacity: 1; filter: grayscale(100%) brightness(200%); }

/* Wide Form Grid System */
.form-grid-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.fgw-span-1 { grid-column: span 1; }
.fgw-span-2 { grid-column: span 2; }
.fgw-span-full { grid-column: 1 / -1; }

/* ==========================================================
   STYLE 9 (MODERN APP "BENTO BOX" UI)
========================================================== */
.form-group { 
  background: #f8fafc; /* Slate 50 soft background */
  border: 1.5px solid transparent;
  border-radius: 16px; /* App-like rounded corners */
  padding: 10px 16px 8px; /* Internal padding for the bento effect */
  margin-bottom: 16px; 
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: text; /* Clicking anywhere in the box focuses the input */
}
.form-group:focus-within {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(11,28,58,0.08);
  transform: translateY(-2px);
}
.form-group label {
  display: block; 
  font-size: 0.65rem; /* Smaller inset label */
  font-weight: 800;
  color: #64748b; /* Slate 500 */
  margin-bottom: 2px;
  text-transform: uppercase; 
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.form-group:focus-within label {
  color: var(--navy);
}

.input-wrap { position: relative; display: flex; align-items: center; width: 100%; }
.input-wrap .input-icon {
  display: flex; align-items: center; justify-content: center;
  margin-right: 12px; pointer-events: none;
}
.input-wrap .input-icon img { width: 18px; height: 18px; opacity: 0.6; transition: opacity 0.3s; }
.form-group:focus-within .input-icon img { opacity: 1; filter: brightness(0.8); }

/* Refined Premium Inputs (Seamless inside Bento Box) */
.form-control {
  width: 100%; 
  padding: 4px 0; /* Minimal padding since the group has padding */
  border: none;
  background: transparent; /* Seamless integration */
  font-size: 1rem; 
  font-weight: 700;
  color: var(--navy-dark);
  transition: none; /* Handled by form-group */
  outline: none; appearance: none;
}
.form-control:focus {
  box-shadow: none; /* No ugly focus ring inside the bento box */
  background: transparent;
}
.form-control::placeholder { color: #94a3b8; font-weight: 500; }

/* Removed old form group CSS */
/* Removed duplicate form-control block to let the premium Style 7 inputs work */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-submit {
  width: 100%; padding: 18px; margin-top: 10px; border-radius: 16px; border: none;
  background: linear-gradient(135deg, #FFB703, #F58A07); /* High-energy Orange/Gold app gradient */
  color: var(--white); font-size: 1.05rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  box-shadow: 0 12px 32px rgba(245, 138, 7, 0.4);
}
.form-submit:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(245, 138, 7, 0.6); filter: brightness(1.05); }
.form-submit img { width: 18px; height: 18px; }
.widget-note { text-align: center; font-size: 0.74rem; color: var(--gray-400); margin-top: 12px; }
.widget-note a { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker-bar { background: linear-gradient(90deg, var(--navy-dark), var(--navy-mid)); padding: 11px 0; overflow: hidden; border-bottom: 2px solid var(--green); }
.ticker-track { display: flex; animation: ticker 55s linear infinite; white-space: nowrap; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 44px; font-size: 0.82rem; color: rgba(255,255,255,0.8); border-right: 1px solid rgba(255,255,255,0.08); }
.ticker-item img { width: 14px; height: 14px; opacity: 0.85; }
.ticker-tag { background: var(--green); color: var(--white); font-size: 0.65rem; font-weight: 800; padding: 3px 8px; border-radius: 4px; }
.ticker-hot { color: var(--green); font-weight: 700; }

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar { background: var(--navy-dark); padding: 30px 0; }
.stats-inner { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.stat-pill { display: flex; align-items: center; gap: 14px; }
.stat-pill-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-pill-icon img { width: 24px; height: 24px; opacity: 0.9; }
.stat-pill-num { font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-pill-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ═══════════════════════════════════════
   FIND A TOUR
═══════════════════════════════════════ */
.find-tour { background: var(--off-white); padding: 90px 0; position: relative; overflow: hidden; }
.find-tour-inner { display: grid; grid-template-columns: 200px 1fr 200px; gap: 40px; align-items: center; }

.find-stat-box {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 30px 22px; color: var(--white); text-align: center;
}
.find-stat-box .box-icon { width: 56px; height: 56px; border-radius: 50%; border: 3px solid rgba(198,156,45,0.4); background: rgba(198,156,45,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.find-stat-box .box-icon img { width: 28px; height: 28px; }
.find-stat-num { font-size: 2.2rem; font-weight: 800; margin-bottom: 4px; }
.find-stat-label { font-size: 0.8rem; opacity: 0.75; line-height: 1.4; }
.find-stat-box.green { background: var(--green); }

.find-form-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px 36px; box-shadow: var(--shadow-lg);
}
.find-form-title { font-size: 1.6rem; font-weight: 800; color: var(--navy-dark); text-align: center; margin-bottom: 28px; }

.search-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 24px; border-radius: 50px; border: none;
  background: var(--green); color: var(--white); font-size: 0.95rem; font-weight: 800;
  cursor: pointer; transition: var(--t); box-shadow: 0 6px 20px rgba(198,156,45,0.3);
}
.search-submit:hover { background: var(--green-dark); transform: translateY(-2px); }
.search-submit img { width: 18px; height: 18px; }

/* ═══════════════════════════════════════
/* ═══════════════════════════════════════
   CATEGORIES - DESIGN 1 (Navy Header)
═══════════════════════════════════════ */
/*
.categories-section { padding: 0; }
.cat-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 0 130px; position: relative;
}
.cat-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 70px;
  background: var(--off-white); clip-path: ellipse(55% 100% at 50% 100%);
}
.cat-header-row { display: flex; justify-content: space-between; align-items: flex-end; }
.cat-header .eyebrow { color: var(--green); }
.cat-header .section-title { color: var(--white); margin-bottom: 6px; }
.cat-header .section-subtitle { color: rgba(255,255,255,0.6); }
.view-all { display: flex; align-items: center; gap: 6px; color: var(--green); font-size: 0.87rem; font-weight: 700; transition: gap 0.2s; white-space: nowrap; }
.view-all:hover { gap: 10px; }
.cat-cards-wrap { background: var(--off-white); padding: 0 0 80px; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: -90px; position: relative; z-index: 2; }
*/

/* ═══════════════════════════════════════
   CATEGORIES - DESIGN 2 (Clean Light)
═══════════════════════════════════════ */
.categories-section { padding: 90px 0; background: var(--off-white); }
.cat-header { margin-bottom: 48px; }
.cat-header-row { display: flex; justify-content: space-between; align-items: flex-end; }
.cat-header .eyebrow { color: var(--green); }
.cat-header .section-title { color: var(--navy-dark); margin-bottom: 6px; }
.cat-header .section-subtitle { color: var(--gray-600); }
.view-all { display: flex; align-items: center; gap: 6px; color: var(--green); font-size: 0.87rem; font-weight: 700; transition: gap 0.2s; white-space: nowrap; }
.view-all:hover { gap: 10px; }
.cat-cards-wrap { padding: 0; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.cat-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--t); cursor: pointer; }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.cat-card-header { background: var(--navy); color: var(--white); padding: 16px 18px; font-size: 0.93rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cat-card-header img { width: 18px; height: 18px; }
.cat-card-img { height: 190px; overflow: hidden; position: relative; }
.cat-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,28,58,0.4) 0%, transparent 60%); pointer-events: none; z-index: 1; }
/* Slider styles */
.cat-slider { width: 100%; height: 100%; position: relative; }
.cat-slider-inner { display: flex; width: 100%; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; }
.cat-slider-inner::-webkit-scrollbar { display: none; }
.cat-slider-inner img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: center; transition: transform 0.5s; }
.cat-card:hover .cat-slider-inner img { transform: scale(1.08); }
/* Slider buttons */
.cat-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.7); color: var(--navy); border: none; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; cursor: pointer; z-index: 2; opacity: 0; transition: all 0.3s; backdrop-filter: blur(4px); box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.cat-slider-btn:hover { background: var(--white); color: var(--green); transform: translateY(-50%) scale(1.1); }
.cat-slider-btn.prev { left: -10px; }
.cat-slider-btn.next { right: -10px; }
.cat-card:hover .cat-slider-btn.prev { left: 8px; opacity: 1; }
.cat-card:hover .cat-slider-btn.next { right: 8px; opacity: 1; }
/* Slider dots */
.cat-slider-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; z-index: 2; }
.cat-slider-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: 0.3s; }
.cat-slider-dot.active { background: var(--white); width: 14px; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.cat-card-body { padding: 16px 18px; }
.cat-card-dest { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
.cat-card-dest img { width: 12px; height: 12px; opacity: 0.6; }
.cat-card-from { font-size: 0.85rem; color: var(--gray-600); }
.cat-card-from strong { color: var(--green); }
.cat-card-foot { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-top: 1px solid var(--gray-100); }
.cat-card-foot span { font-size: 0.78rem; color: var(--gray-400); }
.cat-arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; transition: var(--t); }
.cat-card:hover .cat-arrow { background: var(--navy); transform: translateX(3px); }

/* ═══════════════════════════════════════
   DESTINATIONS CAROUSEL
═══════════════════════════════════════ */
.destinations-section { padding: 80px 0; background: var(--white); }
.dest-scroll-wrap { overflow: hidden; margin: 0 -28px; padding: 4px 28px 4px; }
.dest-track {
  display: flex; gap: 18px;
  overflow-x: auto; padding-bottom: 20px;
  scrollbar-width: none; /* hide scrollbar */
  -webkit-overflow-scrolling: touch; cursor: grab;
  scroll-snap-type: x mandatory;
}
.dest-track:active { cursor: grabbing; }
.dest-track::-webkit-scrollbar { display: none; } /* hide scrollbar */

.dest-card { min-width: 210px; max-width: 210px; border-radius: var(--r-lg); overflow: hidden; position: relative; scroll-snap-align: start; transition: var(--t); flex-shrink: 0; box-shadow: var(--shadow-sm); cursor: pointer; }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card-img { height: 270px; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dest-card:hover .dest-card-img img { transform: scale(1.08); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,28,58,0.85) 0%, rgba(11,28,58,0.05) 55%); }
.dest-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.dest-card-name { display: flex; align-items: center; gap: 5px; color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.dest-card-name img { width: 14px; height: 14px; }
.dest-card-meta { display: flex; align-items: center; justify-content: space-between; }
.dest-card-tours { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.dest-card-price { color: var(--green); font-size: 0.78rem; font-weight: 700; }
.dest-card-btn { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.25); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; transition: var(--t); }
.dest-card:hover .dest-card-btn { background: var(--green); border-color: var(--green); }

.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.carousel-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); cursor: pointer; transition: var(--t); }
.dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-section { padding: 90px 0; background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.photo-collage { position: relative; min-height: 460px; }
.photo-a { position: absolute; right: 0; top: 0; width: 60%; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xl); z-index: 2; }
.photo-a img { width: 100%; height: 300px; object-fit: cover; }
.photo-b { position: absolute; left: 0; bottom: 0; width: 54%; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); z-index: 3; }
.photo-b img { width: 100%; height: 200px; object-fit: cover; }
.photo-c { position: absolute; left: 6px; top: 30px; width: 42%; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); z-index: 1; }
.photo-c img { width: 100%; height: 170px; object-fit: cover; }
.photo-exp {
  position: absolute; right: -14px; bottom: 90px; z-index: 4;
  background: var(--navy); border-radius: var(--r-md); padding: 16px 22px;
  text-align: center; box-shadow: var(--shadow-lg); min-width: 100px;
}
.photo-exp-num { font-size: 1.8rem; font-weight: 800; color: var(--green); line-height: 1; }
.photo-exp-label { font-size: 0.7rem; color: rgba(255,255,255,0.75); margin-top: 3px; }

.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.feat-box {
  background: var(--navy); border-radius: var(--r-md); padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.feat-box-head { display: flex; align-items: center; gap: 10px; }
.feat-box-head img { width: 20px; height: 20px; }
.feat-box-head h4 { color: var(--white); font-size: 0.95rem; }
.feat-box-list { display: flex; flex-direction: column; gap: 6px; }
.feat-box-list li { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.feat-box-list li img { width: 14px; height: 14px; opacity: 0.85; }
.feat-read { display: flex; align-items: center; gap: 6px; color: var(--green); font-size: 0.8rem; font-weight: 700; cursor: pointer; width: fit-content; transition: gap 0.2s; }
.feat-read:hover { gap: 10px; }

/* ═══════════════════════════════════════
   OMRA
═══════════════════════════════════════ */
.omra-section { padding: 0; }
.omra-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #3A677D 65%, #477A91 100%);
  padding: 90px 0; position: relative; overflow: hidden;
}
.omra-band::before { content: ''; position: absolute; top: -30%; right: -8%; width: 480px; height: 480px; border-radius: 50%; background: rgba(198,156,45,0.06); pointer-events: none; }
.omra-band::after { content: ''; position: absolute; bottom: -20%; left: -5%; width: 380px; height: 380px; border-radius: 50%; background: rgba(198,156,45,0.04); pointer-events: none; }
.omra-grid { display: grid; grid-template-columns: 1fr 420px; gap: 70px; align-items: center; position: relative; z-index: 1; }
.omra-content .eyebrow { color: var(--green); }
.omra-content .section-title { color: var(--white); }
.omra-content .section-subtitle { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.omra-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.omra-step { display: flex; gap: 14px; align-items: flex-start; }
.omra-step-num { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 800; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.omra-step h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 2px; }
.omra-step p { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

.omra-form-card { background: var(--white); border-radius: var(--r-xl); padding: 36px 30px; box-shadow: var(--shadow-xl); }
.omra-form-title { font-size: 1.1rem; font-weight: 800; color: var(--navy-dark); display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.omra-form-title img { width: 20px; height: 20px; }
.omra-form-sub { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 22px; }

.omra-feats { background: var(--off-white); padding: 56px 0; }
.omra-feats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.omra-feat {
  background: var(--white); border-radius: var(--r-lg); padding: 26px 20px;
  text-align: center; border: 1.5px solid var(--gray-100); transition: var(--t);
}
.omra-feat:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.omra-feat-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.omra-feat-ico img { width: 26px; height: 26px; }
.omra-feat h4 { color: var(--navy-dark); font-size: 0.92rem; margin-bottom: 6px; }
.omra-feat p { font-size: 0.78rem; color: var(--gray-600); }

/* ═══════════════════════════════════════
   PACKAGES
═══════════════════════════════════════ */
.packages-section { padding: 90px 0; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0 36px; }
.filter-tab { padding: 9px 20px; border-radius: 50px; font-size: 0.83rem; font-weight: 700; border: 2px solid var(--gray-200); background: var(--white); color: var(--gray-600); cursor: pointer; transition: var(--t); display: flex; align-items: center; gap: 6px; }
.filter-tab img { width: 15px; height: 15px; opacity: 0.5; transition: opacity 0.2s; }
.filter-tab.active, .filter-tab:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.filter-tab.active img, .filter-tab:hover img { filter: invert(1) brightness(2); opacity: 1; }

.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-100); transition: var(--t); }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.pkg-card-img { height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pkg-card-img img.pkg-hero { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.pkg-card-img .pkg-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); }
.pkg-card-img .pkg-icon img { width: 72px; height: 72px; filter: invert(1) brightness(2); opacity: 0.25; }
.pkg-tags { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; z-index: 1; }
.pkg-tag-type { background: rgba(255,255,255,0.92); backdrop-filter: blur(4px); color: var(--navy); font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; display: flex; align-items: center; gap: 4px; }
.pkg-tag-type img { width: 12px; height: 12px; }
.pkg-badge { background: var(--green); color: var(--white); font-size: 0.68rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; }
.pkg-body { padding: 20px; }
.pkg-title { color: var(--navy-dark); font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.pkg-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--gray-400); margin-bottom: 12px; }
.pkg-meta span { display: flex; align-items: center; gap: 5px; }
.pkg-meta img { width: 13px; height: 13px; opacity: 0.6; }
.pkg-includes { font-size: 0.78rem; color: var(--gray-600); background: var(--off-white); border-radius: 8px; padding: 9px 12px; line-height: 1.6; margin-bottom: 16px; }
.pkg-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gray-100); padding-top: 14px; }
.pkg-price .from { font-size: 0.68rem; color: var(--gray-400); }
.pkg-price .amount { font-size: 1.4rem; font-weight: 800; color: var(--green); line-height: 1; }
.pkg-price .per { font-size: 0.68rem; color: var(--gray-400); }

/* ═══════════════════════════════════════
   BILLETTERIE
═══════════════════════════════════════ */
.billet-band {
  background: linear-gradient(135deg, #1B2C36, #294B5E, #356075);
  padding: 100px 0; 
  position: relative; 
  overflow: hidden;
  color: #fff;
}
.billet-band::before {
  content: ''; position: absolute; top: -20%; right: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(103,158,181,0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none;
}
.billet-band::after {
  content: ''; position: absolute; bottom: -20%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(198,156,45,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none;
}

.billet-grid { display: grid; grid-template-columns: 1.2fr 440px; gap: 72px; align-items: center; position: relative; z-index: 1; }

.billet-step-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex; gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s;
}
.billet-step-glass:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.billet-step-glass .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.billet-step-glass .ico img { width: 26px; height: 26px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) brightness(2); }

.action-card-float {
  animation: floatCard 6s ease-in-out infinite;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4) !important;
  border: 1px solid rgba(255,255,255,0.4);
}
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-section { padding: 90px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.testi-card { background: var(--off-white); border-radius: var(--r-lg); padding: 28px 24px; transition: var(--t); border: 1.5px solid var(--gray-100); position: relative; overflow: hidden; }
.testi-card::before { content: '\201C'; position: absolute; top: 10px; right: 16px; font-size: 4.5rem; line-height: 1; color: var(--green); opacity: 0.1; font-family: serif; }
.testi-card:hover { background: var(--white); box-shadow: var(--shadow-lg); border-color: var(--gray-200); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testi-stars img { width: 14px; height: 14px; }
.testi-text { font-size: 0.88rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--green)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.testi-name { font-weight: 700; color: var(--navy-dark); font-size: 0.87rem; }
.testi-location { font-size: 0.73rem; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
.testi-location img { width: 11px; height: 11px; opacity: 0.5; }
.testi-trip { font-size: 0.73rem; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.testi-trip img { width: 11px; height: 11px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section { 
  padding: 100px 0; 
  background-color: #fafafc;
  background-image: radial-gradient(rgba(0,0,0,0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  position: relative;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-cards { display: flex; flex-direction: column; margin-top: 28px; }
.ccard { 
  display: flex; gap: 18px; align-items: center; 
  background: transparent; 
  padding: 24px 0; 
  border-bottom: 1px solid rgba(0,0,0,0.06); 
  transition: transform 0.3s ease; 
}
.ccard:last-child { border-bottom: none; }
.ccard:hover { transform: translateX(12px); }
.ccard-ico { 
  width: 56px; height: 56px; border-radius: 16px; 
  background: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
  display: flex; align-items: center; justify-content: center; flex-shrink:0; 
  border: 1px solid rgba(0,0,0,0.02);
}
.ccard-ico img { width: 26px; height: 26px; }
.ccard-title { font-weight: 800; color: var(--navy-dark); font-size: 0.95rem; margin-bottom: 4px; }
.ccard-val { font-size: 0.85rem; color: var(--gray-600); }
.ccard-cta { font-size: 0.75rem; color: var(--green); font-weight: 700; margin-top: 4px; display: inline-block; }

.contact-form-card { 
  background: var(--white); 
  border-radius: 20px; 
  padding: 50px 44px; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.06); 
  border: none; 
  position: relative; 
}
.contact-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--green), #C69C2D);
  border-top-left-radius: 20px; border-top-right-radius: 20px;
}
.contact-form-title { font-size: 1.15rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 6px; }
.contact-form-sub { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 24px; }

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.newsletter-band { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); padding: 60px 0; }
.newsletter-inner { text-align: center; }
.newsletter-inner .section-title { color: var(--white); }
.newsletter-inner .section-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 5px 5px 5px 20px; overflow: hidden; }
.newsletter-form input { flex: 1; background: none; border: none; outline: none; color: var(--white); font-size: 0.88rem; min-width: 0; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button { flex-shrink: 0; padding: 11px 24px; border-radius: 50px; border: none; background: var(--green); color: var(--white); font-size: 0.87rem; font-weight: 800; cursor: pointer; transition: var(--t); }
.newsletter-form button:hover { background: var(--green-dark); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer { background: var(--navy-dark); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.footer-logo-mark { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--navy-mid), var(--green)); display: flex; align-items: center; justify-content: center; }
.footer-logo-mark img { width: 20px; height: 20px; filter: invert(1) brightness(2); }
.footer-logo span { color: var(--green); }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 18px; max-width: 270px; }
.footer-socials { display: flex; gap: 8px; }
.footer-soc { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--t); }
.footer-soc img { width: 15px; height: 15px; opacity: 0.75; }
.footer-soc:hover { background: var(--green); border-color: var(--green); }
.footer-soc:hover img { opacity: 1; }
.footer-col h5 { color: var(--white); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: var(--t); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a img { width: 13px; height: 13px; opacity: 0.5; }
.footer-col ul li a:hover { color: var(--green); padding-left: 3px; }
.footer-col ul li a:hover img { opacity: 0.85; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.77rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--green); }

/* ═══════════════════════════════════════
   FORM VALIDATION
═══════════════════════════════════════ */
.form-group.has-error .form-control { border-color: var(--red); }
.form-group.valid .form-control { border-color: var(--green); }
.field-error { font-size: 0.71rem; color: var(--red); margin-top: 4px; display: none; }
.form-group.has-error .field-error { display: block; }
.form-status { padding: 12px 16px; border-radius: 10px; margin-top: 12px; font-size: 0.84rem; display: none; }
.form-status.success { background: var(--green-pale); color: #166534; border: 1px solid #a7f3d0; display: block; }
.form-status.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ═══════════════════════════════════════
   SCROLL TO TOP BUTTON
═══════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(65,109,130,0.3); transition: var(--t);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  color: var(--white); font-size: 1.2rem; font-weight: 700;
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { background: var(--green); box-shadow: 0 8px 24px rgba(198,156,45,0.4); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(11,28,58,0.5); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--r-xl); padding: 36px; max-width: 520px; width: 100%; box-shadow: var(--shadow-xl); animation: scaleIn 0.28s ease; position: relative; max-height: 92vh; overflow-y: auto; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--gray-100); color: var(--gray-600); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: var(--t); }
.modal-close:hover { background: var(--gray-200); }
.modal-title { font-size: 1.2rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.modal-title img { width: 20px; height: 20px; }
.modal-sub { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 24px; }

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast-container { position: fixed; top: 84px; right: 18px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--white); border-radius: 12px; border-left: 4px solid var(--green); padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; gap: 10px; min-width: 290px; max-width: 390px; animation: slideInRight 0.3s ease; pointer-events: all; }
.toast.error { border-left-color: var(--red); }
.toast-ico { width: 20px; height: 20px; flex-shrink: 0; }
.toast-ico img { width: 20px; height: 20px; }
.toast-title { font-size: 0.85rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 2px; }
.toast-msg { font-size: 0.78rem; color: var(--gray-600); line-height: 1.5; }

/* ═══════════════════════════════════════
   FADE IN ANIMATION
═══════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.1s; } .fd2 { transition-delay: 0.2s; } .fd3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }

/* ═══════════════════════════════════════
   SPINNER
═══════════════════════════════════════ */
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,0.3); border-top-color: var(--white); animation: spin 0.7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 360px; gap: 40px; }
  .find-tour-inner { grid-template-columns: 160px 1fr 160px; gap: 24px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .about-grid, .omra-grid, .billet-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .omra-grid { grid-template-columns: 1fr; }
  .billet-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .omra-feats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  /* Top bar: keep visible on mobile but make compact */
  .top-bar { display: block; padding: 6px 0; }
  .top-bar-inner { flex-wrap: wrap; gap: 4px 8px; justify-content: space-between; }
  .top-bar-left { gap: 8px; flex-wrap: wrap; }
  /* Hide phone text, keep email short; hide separator */
  .top-item-phone .top-item-text { display: none; }
  .top-sep { display: none; }
  /* Shrink email text on small screens */
  .top-item { font-size: 0.7rem; }
  .top-soc img { width: 15px; height: 15px; }
  .nav-links, .nav-tel { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar { display: none; } /* Hide stats on mobile */
  .hero { min-height: 100svh; }
  .find-tour-inner { grid-template-columns: 1fr; }
  .find-stat-left, .find-stat-right { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .newsletter-form { flex-direction: column; background: transparent; border: none; padding: 0; gap: 10px; }
  .newsletter-form input { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 13px 20px; width: 100%; }
  .newsletter-form button { border-radius: 50px; padding: 13px 24px; }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .omra-feats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .omra-feats-grid { grid-template-columns: 1fr; }
  .billet-form-card { position: static; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  /* Top bar: icon-only mode on very small phones */
  .top-bar { padding: 5px 0; }
  .top-bar-inner { justify-content: space-between; align-items: center; }
  .top-item-text { display: none; } /* hide all text labels */
  .top-item img { width: 16px; height: 16px; opacity: 1; }
  .top-bar-left { gap: 10px; }
  .top-socials { gap: 8px; }
}

/* ═══════════════════════════════════════
   PASSENGER COUNTER WIDGET
═══════════════════════════════════════ */
.pax-widget {
  position: relative;
}
.pax-display {
  width: 100%; padding: 4px 0;
  border: none;
  font-size: 1rem; color: var(--navy-dark); font-weight: 700; background: transparent;
  cursor: pointer; text-align: left; transition: var(--t);
  display: flex; align-items: center; justify-content: space-between;
  user-select: none;
  outline: none;
}
.pax-display:hover, .pax-display.open {
  background: transparent;
  box-shadow: none;
}
.pax-display .pax-caret {
  font-size: 0.7rem; color: var(--gray-400); transition: transform 0.25s;
  margin-left: 8px; flex-shrink: 0;
}
.pax-display.open .pax-caret { transform: rotate(180deg); }

.pax-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 12px; box-shadow: var(--shadow-lg); z-index: 200; padding: 6px 0;
  overflow: hidden;
}
.pax-dropdown.open { display: block; animation: scaleIn 0.18s ease; }

.pax-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--gray-100);
}
.pax-row:last-child { border-bottom: none; }
.pax-row-label { display: flex; flex-direction: column; }
.pax-row-label strong { font-size: 0.87rem; color: var(--navy-dark); font-weight: 700; }
.pax-row-label small { font-size: 0.72rem; color: var(--gray-400); margin-top: 1px; }
.pax-counter { display: flex; align-items: center; gap: 10px; }
.pax-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); background: var(--white);
  color: var(--navy); font-size: 1.1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--t); line-height: 1; flex-shrink: 0;
}
.pax-btn:hover:not(:disabled) {
  border-color: var(--green); background: var(--green); color: var(--white);
}
.pax-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pax-count {
  min-width: 24px; text-align: center;
  font-size: 0.95rem; font-weight: 800; color: var(--navy-dark);
}

/* ═══════════════════════════════════════
   VEHICLE FORM (Bateau mode)
═══════════════════════════════════════ */
.vehicle-toggle-row {
  display: none; margin-bottom: 12px;
}
.vehicle-toggle-row.active { display: block; }
.vehicle-checkbox-label {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: 10px; cursor: pointer; transition: var(--t);
  font-size: 0.85rem; font-weight: 600; color: var(--gray-800);
  background: var(--gray-100);
}
.vehicle-checkbox-label:hover { border-color: var(--navy); background: var(--white); }
.vehicle-checkbox-label input[type="checkbox"] { display: none; }
.vehicle-check-box {
  width: 20px; height: 20px; border-radius: 5px;
  border: 2px solid var(--gray-400); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--t); font-size: 0.75rem; color: white;
}
.vehicle-checkbox-label input:checked ~ .vehicle-check-box {
  background: var(--green); border-color: var(--green);
}
.vehicle-checkbox-label input:checked ~ .vehicle-check-box::after {
  content: '✓';
}
.vehicle-emoji { font-size: 1.1rem; }

.vehicle-details {
  display: none; padding: 14px;
  background: var(--white); border: 1.5px solid var(--green);
  border-radius: 10px; margin-top: -6px; margin-bottom: 12px;
  animation: scaleIn 0.2s ease;
}
.vehicle-details.open { display: block; }
.vehicle-details .form-row { margin-bottom: 10px; }
.vehicle-note {
  font-size: 0.72rem; color: var(--gray-400); margin-top: 6px;
  display: flex; align-items: center; gap: 5px;
}

/* ═══════════════════════════════════════
   PARTNER LOGOS SECTION
═══════════════════════════════════════ */
.partners-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}
.partners-section-alt { background: var(--off-white); }

.partners-header {
  text-align: center; margin-bottom: 52px;
}
.partners-header .eyebrow { justify-content: center; margin-bottom: 14px; }

/* ── Logo marquee (infinite scroll) ── */
.logo-marquee-wrap {
  position: relative; overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-marquee-wrap.paused .logo-marquee-track { animation-play-state: paused; }

.logo-marquee-track {
  display: flex; align-items: center; gap: 0;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.logo-marquee-track.rtl { animation: marquee-rtl 36s linear infinite; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-rtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.logo-card {
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 14px;
  padding: 18px 30px;
  margin: 0 10px;
  display: flex; align-items: center; justify-content: center;
  height: 90px; min-width: 160px;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.logo-card:hover {
  border-color: var(--green); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.logo-card img {
  max-height: 54px; max-width: 130px;
  width: auto; object-fit: contain;
  filter: grayscale(20%); transition: filter 0.3s;
}
.logo-card:hover img { filter: grayscale(0%); }

/* Alt background cards */
.partners-section-alt .logo-card { background: var(--white); }

/* ═══════════════════════════════════════
   COMPANY GALLERY (Ships & Planes)
═══════════════════════════════════════ */
.company-gallery-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, #2b4859 100%);
  position: relative; overflow: hidden;
}
.company-gallery-section::before {
  content: ''; position: absolute; top: -20%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,156,45,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.company-gallery-section .eyebrow { color: var(--green); justify-content: center; }
.company-gallery-section .section-title { color: var(--white); }
.company-gallery-section .section-subtitle { color: rgba(255,255,255,0.6); }

/* Tabs to switch between Ships / Planes */
.gallery-tabs {
  display: flex; gap: 6px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  padding: 5px; margin: 32px auto 44px; width: fit-content;
}
.gallery-tab {
  padding: 10px 28px; border-radius: 9px; border: none;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  background: transparent; color: rgba(255,255,255,0.55);
  transition: var(--t); display: flex; align-items: center; gap: 8px;
}
.gallery-tab.active {
  background: var(--white); color: var(--navy-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.gallery-tab:hover:not(.active) { color: rgba(255,255,255,0.85); }

/* Grid of company cards with photo */
.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.company-panel { display: none; }
.company-panel.active { display: block; animation: scaleIn 0.3s ease; }

.company-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--t); cursor: pointer;
  position: relative;
}
.company-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198,156,45,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.company-card-img {
  height: 160px; overflow: hidden; position: relative;
}
.company-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.company-card:hover .company-card-img img { transform: scale(1.1); }
.company-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,28,58,0.7) 0%, transparent 60%);
}

.company-card-body {
  padding: 16px; display: flex; align-items: center; gap: 12px;
}
.company-card-logo {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--white); padding: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.company-card-logo img {
  max-width: 32px; max-height: 32px;
  object-fit: contain;
}
.company-card-info { flex: 1; min-width: 0; }
.company-card-name {
  font-size: 0.88rem; font-weight: 700; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.company-card-type {
  font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px;
}
.company-card-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--green); color: var(--white);
  font-size: 0.65rem; font-weight: 800; padding: 3px 10px; border-radius: 20px;
}

/* ── Work-with-all banner ── */
.all-companies-note {
  margin-top: 40px; text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 20px 28px;
  color: rgba(255,255,255,0.75); font-size: 0.9rem;
}
.all-companies-note strong { color: var(--green); }

/* ═══════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .company-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .company-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tabs { width: 100%; }
  .gallery-tab { flex: 1; justify-content: center; padding: 10px 14px; }
  .partners-section, .company-gallery-section { padding: 60px 0; }
  .logo-card { padding: 14px 20px; height: 76px; min-width: 130px; }
  .logo-card img { max-height: 44px; max-width: 100px; }
}
@media (max-width: 480px) {
  .company-grid { grid-template-columns: 1fr 1fr; }
  .company-card-img { height: 120px; }
}

/* ── Hero decoration tags: visible desktop only ── */
@media (max-width: 767px) {
  .hero-tags { display: none !important; }
}

/* ═══════════════════════════════════════
   DEVIS CONFIRMATION MODAL
═══════════════════════════════════════ */
.devis-confirm-modal {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 48px 36px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(11,28,58,0.3);
  animation: dcmSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.devis-confirm-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), #f5d060, var(--green));
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}

@keyframes dcmSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Close button ── */
.devis-confirm-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%; border: none;
  background: var(--gray-100); color: var(--gray-500);
  cursor: pointer; font-size: 1rem; display: flex;
  align-items: center; justify-content: center;
  transition: var(--t);
}
.devis-confirm-close:hover { background: var(--gray-200); color: var(--navy); }

/* ── Success Icon ── */
.dcm-icon-wrap {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 24px;
}
.dcm-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--green);
  border-right-color: var(--green);
  animation: dcmRingSpin 0.7s ease forwards;
}
@keyframes dcmRingSpin {
  from { transform: rotate(-90deg); opacity: 0; }
  to   { transform: rotate(270deg); opacity: 1; }
}
.dcm-ring::after {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198,156,45,0.12), rgba(198,156,45,0.04));
  border: 1px solid rgba(198,156,45,0.2);
}
.dcm-check {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--green);
  animation: dcmCheckPop 0.4s 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes dcmCheckPop {
  from { opacity: 0; transform: scale(0.3); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Text ── */
.dcm-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 0 8px;
  animation: dcmFadeUp 0.4s 0.7s ease both;
}
.dcm-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0 0 20px;
  animation: dcmFadeUp 0.4s 0.8s ease both;
}
@keyframes dcmFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Reference badge ── */
.dcm-ref-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1.5px dashed var(--green);
  border-radius: 12px;
  padding: 10px 22px;
  margin-bottom: 28px;
  animation: dcmFadeUp 0.4s 0.9s ease both;
}
.dcm-ref-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dcm-ref-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  font-family: monospace;
  letter-spacing: 0.08em;
}

/* ── Steps ── */
.dcm-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
  animation: dcmFadeUp 0.4s 1s ease both;
}
.dcm-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: 12px;
  transition: var(--t);
}
.dcm-step:hover { background: var(--gray-100); }
.dcm-step-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.dcm-step-text {
  display: flex; flex-direction: column; gap: 2px;
}
.dcm-step-text strong {
  font-size: 0.87rem;
  color: var(--navy-dark);
  font-weight: 700;
}
.dcm-step-text span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ── Actions ── */
.dcm-actions {
  display: flex;
  gap: 10px;
  animation: dcmFadeUp 0.4s 1.1s ease both;
}
.dcm-btn-wa {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366;
  color: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--t);
  border: none; cursor: pointer;
}
.dcm-btn-wa:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.dcm-btn-close {
  flex: 0 0 auto;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
}
.dcm-btn-close:hover { border-color: var(--navy); color: var(--navy); background: var(--off-white); }

/* ── Disclaimer ── */
.dcm-disclaimer {
  margin: 20px 0 0;
  font-size: 0.72rem;
  color: var(--gray-300);
  animation: dcmFadeUp 0.4s 1.2s ease both;
}
.dcm-disclaimer a { color: var(--gray-400); text-decoration: none; }
.dcm-disclaimer a:hover { color: var(--green); }

/* ── Mobile ── */
@media (max-width: 480px) {
  .devis-confirm-modal { 
    padding: 32px 16px 20px; 
    border-radius: 20px; 
    max-height: 90vh; 
    overflow-y: auto; 
    margin: 16px;
  }
  .dcm-title { font-size: 1.35rem; }
  .dcm-actions { flex-direction: column; }
  .dcm-btn-close { padding: 12px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 0; gap: 30px; text-align: center; }
  .hero-inner.hero-centered { gap: 24px; padding-top: 40px; }
  .hero-ctas { justify-content: center; }
  .booking-card { padding: 24px 20px; border-radius: 20px; }
  .booking-card-wide { padding: 24px 20px; border-radius: 20px; }
  .form-grid-wide { grid-template-columns: 1fr; }
  .fgw-span-2 { grid-column: span 1; }
}

/* ==========================================================
   PAX MODAL — Passenger selection popup
========================================================== */

/* Dark overlay */
#pax-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.28s ease;
}
#pax-modal-overlay.open {
  display: block;
  opacity: 1;
}

/* The modal box */
#pax-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(11, 28, 58, 0.25);
  overflow: hidden;
  width: 360px;
  max-width: calc(100vw - 32px);
  /* Desktop: centred */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%) scale(0.94);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.25,1,0.5,1);
}
#pax-modal.open {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Header */
.pax-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f1f5f9;
}
.pax-modal-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
}
#pax-modal-close {
  width: 32px; height: 32px;
  border: none; background: #f1f5f9;
  border-radius: 50%;
  font-size: 1.1rem; color: #64748b;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
#pax-modal-close:hover { background: #e2e8f0; color: var(--navy-dark); }

/* Body rows */
.pax-modal-body { padding: 8px 0; }
.pax-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}
.pax-modal-row + .pax-modal-row {
  border-top: 1px solid #f8fafc;
}
.pax-modal-label strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2px;
}
.pax-modal-label span {
  font-size: 0.78rem;
  color: #94a3b8;
}
.pax-modal-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pax-modal-counter .pax-btn {
  width: 36px; height: 36px;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-dark);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.pax-modal-counter .pax-btn:hover:not(:disabled) {
  border-color: var(--navy);
  background: #f0f4ff;
  color: var(--navy);
}
.pax-modal-counter .pax-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pax-modal-counter .pax-count {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  min-width: 24px;
  text-align: center;
}

/* Footer confirm button */
.pax-modal-footer {
  padding: 14px 20px 20px;
}
.pax-modal-confirm-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(11,28,58,0.25);
}
.pax-modal-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11,28,58,0.35);
}

/* Mobile: bottom sheet */
@media (max-width: 600px) {
  #pax-modal {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    transform: translateY(40px) scale(1);
  }
  #pax-modal.open {
    transform: translateY(0) scale(1);
  }
}

/* ── WhatsApp links: clickable on mobile only ── */
@media (min-width: 768px) {
  .wa-link {
    pointer-events: none !important;
    cursor: default !important;
  }
}
