/* =============================================
   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 {
  position: sticky; top: 0; z-index: 1000;
  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 left */
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-tag {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px); color: rgba(255,255,255,0.9);
  padding: 7px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.hero-tag img { width: 16px; height: 16px; }
.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-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; }

/* Hero widget */
.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; }

/* Forms */
.form-group { margin-bottom: 13px; position: relative; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--gray-600); margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.input-wrap { position: relative; }
.input-wrap .input-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; pointer-events: none;
}
.input-wrap .input-icon img { width: 16px; height: 16px; opacity: 0.5; }
.input-wrap .form-control { padding-left: 38px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-size: 0.875rem; color: var(--gray-800); background: var(--gray-100);
  transition: var(--t); outline: none; appearance: none;
}
.form-control:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(198,156,45,0.1); }
.form-control::placeholder { color: var(--gray-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-submit {
  width: 100%; padding: 14px; margin-top: 6px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white); font-size: 0.95rem; font-weight: 800;
  cursor: pointer; transition: var(--t); display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(198,156,45,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(198,156,45,0.45); }
.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 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-card:hover .cat-card-img img { transform: scale(1.08); }
.cat-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,28,58,0.4) 0%, transparent 60%); }
.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 { display: none; }
  .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; }
}
