/* ===================================================
   RESET & CUSTOM PROPERTIES
=================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }


:root {
  --primary:      #003580;
  --primary-lt:   #0057b8;
  --primary-dk:   #002060;
  --accent:       #FF6B35;
  --accent-dk:    #e05920;
  --gold:         #FFD166;
  --success:      #22C55E;
  --danger:       #EF4444;
  --bg:           #F0F4F9;
  --card-bg:      #FFFFFF;
  --text:         #1A1A2E;
  --text-muted:   #6B7280;
  --border:       #E2E8F0;
  --shadow:       0 2px 16px rgba(0,53,128,0.08);
  --shadow-hover: 0 16px 48px rgba(0,53,128,0.2);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-xs:    6px;
  --transition:   0.28s ease;
  --font:         'Heebo', sans-serif;
  --nav-h:        96px;
}


html { scroll-behavior: smooth; scroll-padding-top: 20px; }


body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}


img { display: block; max-width: 100%; }
a { color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


/* ===================================================
   KEYFRAMES
=================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 28px rgba(255,107,53,0.45); }
  50%       { box-shadow: 0 6px 42px rgba(255,107,53,0.75); }
}
@keyframes underlineSlide {
  from { transform: scaleX(0); transform-origin: right; }
  to   { transform: scaleX(1); transform-origin: right; }
}
@keyframes borderSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
@keyframes searchPulse {
  0%, 100% { box-shadow: 0 8px 40px rgba(0,0,0,0.22); }
  50%       { box-shadow: 0 8px 56px rgba(0,53,128,0.35); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-6px); }
  60%       { transform: translateY(-3px); }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.4); }
  50%       { transform: scaleY(1); }
}


/* ===================================================
   SECTION HEADERS
=================================================== */
.section-header { text-align: center; margin-bottom: 32px; }


.section-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #003580;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}


.section-header h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 60%;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold), var(--primary-lt));
  background-size: 250% auto;
  animation: shimmer 3s linear infinite;
}


.hero-title .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}


.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0; left: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(255,209,102,0.3));
  animation: underlineSlide 0.9s cubic-bezier(0.22,1,0.36,1) 0.6s both;
}


.section-sub { color: var(--text-muted); font-size: 1rem; }


/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

/* ── Transparent state: logo + links/buttons white over hero dark overlay ── */
.navbar:not(.scrolled) .logo { color: #fff; }
.navbar:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.92); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.navbar:not(.scrolled) .nav-links a.active { color: #fff; background: rgba(255,255,255,0.15); }
.navbar:not(.scrolled) .currency-btn { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.92); }
.navbar:not(.scrolled) .currency-btn:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.75); }
.navbar:not(.scrolled) .currency-switcher.open .currency-btn { background: rgba(255,255,255,0.18); color: #fff; }
.navbar:not(.scrolled) .lang-switcher { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.92); }
.navbar:not(.scrolled) .lang-switcher:hover { background: rgba(255,255,255,0.15); color: #fff; }
.navbar:not(.scrolled) .nav-toggle { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); color: #fff; }
.navbar:not(.scrolled) .nav-toggle:hover { background: rgba(255,255,255,0.22); }
.navbar:not(.scrolled) .bar { background: #fff; }
.navbar:not(.scrolled) .dropdown-icon { color: rgba(255,255,255,0.7); }

.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #dde6f5;
  box-shadow: 0 1px 0 0 rgba(0,53,128,0.09), 0 6px 24px rgba(0,53,128,0.09);
}
.navbar.scrolled::after { display: none; }

.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}

/* Logo — white when over hero, dark when scrolled */
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.45rem; font-weight: 900; color: var(--primary);
  text-decoration: none; white-space: nowrap;
  transition: color 0.35s, opacity 0.2s;
}
.navbar.scrolled .logo { color: var(--primary); }
.logo:hover { opacity: 0.82; }
.logo i { color: var(--accent); }

.logo-img {
  height: 95px; max-height: 95px;
  width: auto; max-width: none;
  /* Logo normal color since navbar is always white */
  filter: none;
  transition: filter 0.35s;
}
.navbar.scrolled .logo-img { filter: none; }

/* Nav links — white text on hero */
.nav-links {
  display: flex; gap: 4px; list-style: none; flex-wrap: nowrap;
}

.nav-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 13px; border-radius: 8px;
  text-decoration: none; color: #334155;
  font-weight: 650; font-size: 0.87rem; white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  position: relative; overflow: hidden;
  letter-spacing: -0.01em;
}
.navbar.scrolled .nav-links a { color: #334155; }
.nav-links a:hover { color: var(--primary); background: rgba(0,53,128,0.07); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); background: rgba(0,53,128,0.07); }
/* Active page indicator */
.nav-links a.active {
  color: var(--primary);
  background: rgba(0,53,128,0.07);
  font-weight: 750;
}

.nav-links a::before { display: none; }

/* Hamburger */
.nav-toggle {
  display: none; background: rgba(0,53,128,0.06);
  border: 1.5px solid rgba(0,53,128,0.15);
  font-size: 1.2rem; cursor: pointer; color: var(--primary);
  padding: 8px 10px; border-radius: 9px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.navbar.scrolled .nav-toggle {
  background: rgba(0,53,128,0.06); border-color: rgba(0,53,128,0.15); color: var(--primary);
}
.nav-toggle:hover { background: rgba(0,53,128,0.12); transform: scale(1.05); }
.navbar.scrolled .nav-toggle:hover { background: rgba(0,53,128,0.12); }


/* ===================================================
   CURRENCY SWITCHER
=================================================== */
.currency-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-inline-end: 6px;
}

.currency-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 8px; padding: 0 12px; height: 34px;
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer; font-family: var(--font);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap; letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  position: relative; overflow: hidden; flex-shrink: 0; min-width: max-content;
}
.navbar.scrolled .currency-btn {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.currency-btn::before { display: none; }
.currency-btn:hover { background: var(--primary); color: #fff; }
.navbar.scrolled .currency-btn:hover { background: var(--primary); color: #fff; }
.currency-switcher.open .currency-btn { background: var(--primary); color: #fff; }
.navbar.scrolled .currency-switcher.open .currency-btn { background: var(--primary); color: #fff; }

.currency-btn span, .currency-btn i { position: relative; z-index: 1; white-space: nowrap; }
#currencyBtnLabel { display: inline; white-space: nowrap; }
.currency-btn i { font-size: 0.72rem; transition: transform 0.25s ease; }
.currency-switcher.open .currency-btn i { transform: rotate(180deg); }

.currency-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,53,128,0.16);
  min-width: 210px;
  width: max-content;
  z-index: 9999;
  overflow: hidden;
  border: 1px solid var(--border);
  animation: scaleIn 0.18s ease both;
}
.currency-switcher.open .currency-dropdown { display: block; }

.currency-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font);
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: right;
  direction: rtl;
}
.currency-option:hover { background: #F8FAFC; }
.currency-option.active {
  background: linear-gradient(135deg, #f0f5ff, #e8f0fe);
  color: var(--primary);
}

.currency-option .cur-symbol {
  font-size: 1rem;
  font-weight: 900;
  min-width: 24px;
  text-align: center;
  color: var(--primary);
}
.currency-option.active .cur-symbol { color: var(--primary); }

.currency-option .cur-code {
  font-weight: 700;
  flex: 1;
}
.currency-option .cur-name {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 400;
  margin-right: auto;
  white-space: nowrap;
}

@media (max-width: 768px) {
  #ph-fab-hint {
    display: none !important;
  }
}

@media (min-width: 769px) {
  #ph-fab-hint {
    right: 28px;
    bottom: 110px;
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .currency-btn {
    height: 30px;
    padding: 0 9px;
    font-size: 0.78rem;
  }
  .currency-dropdown {
    right: auto;
    left: 0;
    min-width: 175px;
  }
}

@media (max-width: 480px) {
  .currency-btn { height: 28px; padding: 0 8px; font-size: 0.74rem; white-space: nowrap; }
  .lang-switcher { height: 28px; padding: 0 8px; font-size: 0.74rem; }
  .lang-flag { font-size: 0.9rem; }
  .lang-label { font-size: 0.72rem; }
}


/* ── Hero wrapper ── */
.hero-wrapper {
  position: relative;
}

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow-x: hidden;
  margin-top: calc(-1 * var(--nav-h));
  text-align: center;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&auto=format&fit=crop&q=85')
    center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    175deg,
    rgba(2, 60, 130, 0.82) 0%,
    rgba(7, 120, 190, 0.66) 45%,
    rgba(56, 189, 248, 0.44) 100%
  );
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,50,110,0.55) 0%, transparent 60%);
  pointer-events: none;
}
.hero-overlay::after { display: none; }

/* hero-content sits below the absolute navbar */
.hero-content {
  position: relative; z-index: 2; color: #fff;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 40px;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 940px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.35);
  border-radius: 50px; padding: 4px 12px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  color: #fde68a; margin-bottom: 6px;
  animation: fadeInUp 0.5s 0.1s both; text-transform: uppercase;
}
.hero-eyebrow i { font-size: 0.65rem; }

/* Title */
.hero-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900; line-height: 1.13; margin-bottom: 8px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.45);
  animation: fadeInUp 0.6s 0.18s both;
}

/* Subtitle */
.hero-subtitle {
  display: block;
  font-size: clamp(0.87rem, 1.6vw, 1rem);
  color: rgba(255,255,255,0.7); font-weight: 400; line-height: 1.5;
  margin-bottom: 14px;
  animation: fadeInUp 0.6s 0.28s both; max-width: 500px;
}

/* ─────────────────────────────────────────────
   UNIFIED SEARCH BAR  (single horizontal row)
   Layout: [Dest] | [Dates] | [Guests] [Search▶]
───────────────────────────────────────────── */
.hero-search {
  width: 100%; max-width: 940px;
  animation: fadeInUp 0.6s 0.36s both;
}

.hero-search-unified {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.18),
    0 8px 40px rgba(0,0,0,0.28),
    0 2px 8px rgba(0,53,128,0.12);
  border: 2px solid rgba(255,255,255,0.85);
  overflow: visible;
  height: 60px;
  width: 100%;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.hero-search-unified:focus-within {
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.28),
    0 10px 48px rgba(0,0,0,0.32),
    0 2px 8px rgba(0,53,128,0.16);
  border-color: rgba(255,255,255,0.98);
}

/* ── Destination segment ── */
.hero-search-unified .search-box-wrapper {
  flex: 2 1 200px;
  min-width: 0;
  display: flex; align-items: center;
  padding: 0 16px; gap: 10px;
  background: transparent; border: none; box-shadow: none; border-radius: 0;
  height: 100%;
}
.hero-search-unified .search-box-wrapper:focus-within {
  background: #fff;
  border-color: rgba(255,255,255,0.95);
}
.hero-search-icon { color: #94a3b8; font-size: 0.95rem; flex-shrink: 0; }
.hero-search .search-field  { flex: 1; min-width: 0; }
.hero-search .search-label  { display: none; }
.hero-search .search-input  {
  background: transparent; border: none; outline: none;
  color: #1e293b; font-size: 0.97rem; font-family: var(--font);
  width: 100%; direction: rtl; padding: 0;
}
.hero-search .search-input::placeholder { color: #94a3b8; font-size: 0.9rem; }

/* ── Vertical separator ── */
.search-sep {
  width: 1px; background: #e2e8f0; flex-shrink: 0; align-self: center;
  height: 34px;
}

/* ── Adv field segments (Dates / Guests) ── */
.hero-search-unified .hero-adv-field {
  flex: 1.3 1 130px;
  min-width: 0;
  display: flex; align-items: center;
  padding: 0 14px; gap: 8px;
  background: transparent; border: none; box-shadow: none; border-radius: 0;
  cursor: pointer; height: 100%;
  user-select: none; -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}
.hero-search-unified .hero-adv-field:hover,
.hero-search-unified .hero-adv-field.open,
.hero-adv-field:focus,
.hero-adv-field:focus-within,
.hero-adv-field:active {
  background: #fff !important;
  border-color: rgba(255,255,255,0.95) !important;
}

/* ── Search button ── */
.hero-search-unified .btn-search {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #2563EB;
  color: #fff; border: none;
  border-radius: 0 13px 13px 0;   /* right side rounded (LTR) */
  padding: 0 28px; height: 100%;
  font-size: 1rem; font-weight: 800; font-family: var(--font);
  cursor: pointer; white-space: nowrap;
  transition: filter 0.18s, transform 0.14s;
  letter-spacing: 0.01em;
}
[dir=rtl] .hero-search-unified .btn-search {
  border-radius: 13px 0 0 13px;   /* left side rounded (RTL) */
}
.hero-search-unified .btn-search:hover  { filter: brightness(1.1); }
.hero-search-unified .btn-search:active { transform: scale(0.98); }

/* ── Adv field content ── */
.hero-adv-field-content {
  flex: 1; min-width: 0; text-align: right; direction: rtl; overflow: hidden;
}
.hero-adv-label {
  display: block; font-size: 0.6rem; color: #94a3b8;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1; margin-bottom: 2px;
}
.hero-adv-value {
  display: block; font-size: 0.82rem; font-weight: 700; color: #1e293b;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0;
}
.hero-adv-value.placeholder { color: #94a3b8; font-weight: 500; }
#advDateField {
  flex: 2 1 190px !important;
  min-width: 190px;
}
.hero-adv-field i.adv-icon    { color: #0ea5e9; font-size: 0.88rem; flex-shrink: 0; }
.hero-adv-field i.adv-chevron {
  color: #cbd5e1; font-size: 0.7rem; flex-shrink: 0; transition: transform 0.2s;
}
.hero-adv-field.open i.adv-chevron { transform: rotate(180deg); }

/* misc */
.hero-search .search-box { display: contents; }

/* ── AI Toggle ── */
.hero-ai-row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 8px; margin-bottom: 12px;
  animation: fadeInUp 0.6s 0.44s both;
}
.hero-ai-label { font-size: 0.76rem; color: rgba(255,255,255,0.6); font-weight: 500; user-select: none; }
.hero-ai-toggle {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px; padding: 5px 12px 5px 8px;
  cursor: pointer; font-family: var(--font); font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.7); transition: all 0.22s; user-select: none;
  backdrop-filter: blur(6px); white-space: nowrap;
}
[dir=rtl] .hero-ai-toggle { padding: 5px 8px 5px 12px; }
.hero-ai-toggle.ai-on {
  background: rgba(79,70,229,0.35); border-color: rgba(167,139,250,0.5);
  color: #e9d5ff; box-shadow: 0 0 18px rgba(124,58,237,0.3);
}
.hero-ai-switch {
  width: 34px; height: 19px; border-radius: 19px;
  background: rgba(255,255,255,0.25); position: relative; flex-shrink: 0; transition: background 0.22s;
}
.hero-ai-toggle.ai-on .hero-ai-switch { background: rgba(134,239,172,0.4); }
.hero-ai-switch::after {
  content: ''; position: absolute; top: 2.5px; left: 2.5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  transition: transform 0.22s cubic-bezier(0.34,1.3,0.64,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.hero-ai-toggle.ai-on .hero-ai-switch::after {
  transform: translateX(15px); background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.7);
}
[dir=rtl] .hero-ai-switch::after { left: auto; right: 2.5px; }
[dir=rtl] .hero-ai-toggle.ai-on .hero-ai-switch::after { transform: translateX(-15px); }
.hero-ai-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35); flex-shrink: 0; transition: all 0.22s;
}
.hero-ai-toggle.ai-on .hero-ai-dot {
  background: #86efac; box-shadow: 0 0 6px #86efac; animation: phPulse 1.8s ease infinite;
}

/* ── Chips ── */
.hero-chips {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-top: 10px; animation: fadeInUp 0.6s 0.5s both;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88); padding: 6px 15px; border-radius: 50px;
  font-size: 0.79rem; font-weight: 600; cursor: pointer; font-family: var(--font);
  transition: all 0.18s; white-space: nowrap;
  -webkit-tap-highlight-color: transparent; backdrop-filter: blur(4px);
}
.hero-chip:hover, .hero-chip.active {
  background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.4);
  color: #fff; transform: translateY(-2px);
}

/* ── Trust badges ── */
.hero-badges {
  display: flex; gap: 0; justify-content: center;
  flex-wrap: nowrap; margin-top: 10px; animation: fadeInUp 0.6s 0.58s both;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px; overflow: hidden; width: fit-content; max-width: 100%;
}
.hero-badge {
  color: rgba(255,255,255,0.8); border-radius: 0; padding: 8px 16px;
  font-size: 0.76rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: none; position: relative; white-space: nowrap;
}
.hero-badge i { color: #fbbf24; font-size: 0.7rem; }
.hero-badge + .hero-badge::before {
  content: ''; position: absolute; right: 0;
  top: 25%; bottom: 25%; width: 1px; background: rgba(255,255,255,0.18);
}
[dir=rtl] .hero-badge + .hero-badge::before { right: auto; left: 0; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */

/* Tablet ≤ 900px: reduce padding of segments */
@media (max-width: 900px) {
  .hero-search-unified .search-box-wrapper { padding: 0 12px; }
  .hero-search-unified .hero-adv-field     { padding: 0 10px; flex: 1 1 110px; }
  .hero-search-unified .btn-search         { padding: 0 20px; }
}

/* Mobile ≤ 650px: stack into 2 rows */
@media (max-width: 650px) {
  .hero {
    min-height: auto;
    align-items: center;
  }
  .hero-content {
    padding-top: calc(var(--nav-h) + 20px);
    padding-bottom: 24px;
    padding-left: 14px;
    padding-right: 14px;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow { display: none; }
  .hero-subtitle { display: none; }
  .hero-title  { margin-bottom: 16px; }
  .hero-badges { display: none; }
  /* Fix: search bar stays centered and doesn't shift on scroll */
  .hero-search {
    width: 100%;
    max-width: 100%;
    align-self: center;
    margin: 0 auto;
  }

  /* ══════════════════════════════════════════════
     MOBILE SEARCH ENGINE — Booking.com style
     ONE yellow border, unified fonts, clean UX
  ══════════════════════════════════════════════ */

  /* Wrapper — yellow glow frame */
  .hero-search-unified {
    flex-wrap: wrap;
    height: auto;
    overflow: hidden;
    background: #fff;
    border: 2.5px solid #f59e0b;
    border-radius: 14px;
    box-shadow:
      0 0 0 5px rgba(245,158,11,0.22),
      0 8px 40px rgba(0,0,0,0.30);
    gap: 0;
    padding: 0;
  }
  .search-sep { display: none; }

  /* Destination row — full width */
  .hero-search-unified .search-box-wrapper {
    flex: 0 0 100%;
    background: #fff;
    border-radius: 0;
    height: 54px;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #f0f3f9;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Search icon */
  .hero-search-icon {
    font-size: 1rem;
    color: #f59e0b;
    flex-shrink: 0;
  }

  /* Main input */
  .hero-search .search-input {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    font-family: var(--font);
  }
  .hero-search .search-input::placeholder {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
  }

  /* Dates + Guests row */
  .hero-search-unified .hero-adv-field {
    flex: 1 1 50%;
    background: #fff;
    border-radius: 0;
    height: 52px;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #f0f3f9;
    padding: 0 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Divider between date and guests */
  .hero-search-unified #advDateField {
    flex: 3 1 auto !important;
    min-width: 0;
    border-inline-end: 1px solid #f0f3f9;
  }
  .hero-search-unified #advGuestsField {
    flex: 1 1 90px;
    min-width: 0;
  }

  /* Adv field labels — unified */
  .hero-adv-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .hero-adv-value {
    font-size: 0.88rem;
    font-weight: 650;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-adv-value.placeholder {
    color: #94a3b8;
    font-weight: 500;
  }

  /* Adv icons */
  .hero-adv-field i.adv-icon {
    color: #f59e0b;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  /* Hover/focus state */
  .hero-search-unified .hero-adv-field.open,
  .hero-search-unified .hero-adv-field:focus,
  .hero-search-unified .hero-adv-field:focus-within {
    background: #fffbf0 !important;
  }

  /* Search button — full width, flush bottom, original blue */
  .hero-search-unified .btn-search {
    flex: 0 0 100%;
    border-radius: 0 0 11px 11px !important;
    height: 52px;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font);
    letter-spacing: 0.01em;
    order: 10;
    margin-top: 0;
    background: #2563EB;
    color: #fff;
  }
  .hero-search-unified .btn-search:hover {
    filter: brightness(1.1);
  }
}

/* Small mobile ≤ 400px */
@media (max-width: 400px) {
  .hero-content {
    padding-top: calc(var(--nav-h) + 20px);
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-title { font-size: 1.5rem; }
}

/* ===================================================
   ADVANCED SEARCH POPUPS (Calendar + Guests)
=================================================== */

/* Base popup — positioned via JS to fixed coords */
.adv-popup {
  position: fixed;
  right: 24px;
  bottom: 110px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
  z-index: 99999;
  min-width: 320px;
  padding: 20px;
  display: none;
  direction: rtl;
  animation: advPopIn 0.18s ease both;
}
.adv-popup.open { display: block; }

@keyframes advPopIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Calendar ── */
.cal-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.cal-nav-btn {
  background: none; border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #64748b; font-size: 0.85rem; transition: background 0.15s;
  font-family: inherit;
}
.cal-nav-btn:hover { background: #f1f5f9; }
.cal-month-label { font-size: 1rem; font-weight: 800; color: #1e293b; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.cal-dow {
  text-align: center; font-size: 0.68rem; font-weight: 700;
  color: #94a3b8; padding: 4px 0 8px;
}
.cal-day {
  text-align: center; padding: 7px 2px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600; color: #1e293b;
  cursor: pointer; transition: background 0.12s, color 0.12s;
  border: none; background: none; font-family: inherit;
}
.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) {
  background: #e0f2fe; color: #0369a1;
}
.cal-day--start, .cal-day--end {
  background: #0ea5e9 !important; color: #fff !important; font-weight: 800;
}
.cal-day--range { background: #e0f2fe; color: #0369a1; border-radius: 0; }
.cal-day--start { border-radius: 8px 0 0 8px; }
.cal-day--end   { border-radius: 0 8px 8px 0; }
[dir=rtl] .cal-day--start { border-radius: 0 8px 8px 0; }
[dir=rtl] .cal-day--end   { border-radius: 8px 0 0 8px; }
.cal-day--start.cal-day--end { border-radius: 8px !important; }
.cal-day--disabled { color: #cbd5e1; cursor: default; }
.cal-day--empty    { pointer-events: none; }
.cal-day--today    { box-shadow: inset 0 0 0 2px #0ea5e9; }
.cal-footer {
  display: flex; gap: 8px; margin-top: 14px; justify-content: flex-start;
}
.cal-hint { font-size: 0.74rem; color: #94a3b8; margin-top: 8px; text-align: center; }
.cal-clear-btn {
  padding: 8px 16px; border-radius: 10px; border: 1.5px solid #e2e8f0;
  background: none; color: #64748b; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background 0.15s;
}
.cal-clear-btn:hover { background: #f8fafc; }
.cal-confirm-btn {
  padding: 8px 20px; border-radius: 10px; border: none;
  background: #0ea5e9; color: #fff; font-size: 0.82rem; font-weight: 800;
  cursor: pointer; font-family: inherit; transition: filter 0.15s;
  margin-inline-start: auto;
}
.cal-confirm-btn:hover { filter: brightness(1.08); }

/* ── Guests Popup ── */
.guests-popup { min-width: 280px; padding: 18px 20px 14px; }
.guests-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid #f1f5f9;
}
.guests-row:last-of-type { border-bottom: none; }
.guests-row-label { display: flex; flex-direction: column; gap: 2px; }
.guests-row-title { font-size: 0.9rem; font-weight: 700; color: #1e293b; }
.guests-row-sub   { font-size: 0.72rem; color: #94a3b8; }
.guests-counter   { display: flex; align-items: center; gap: 12px; }
.guests-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid #e2e8f0; background: none; color: #475569;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit; line-height: 1;
}
.guests-btn:hover:not(:disabled) {
  background: #0ea5e9; border-color: #0ea5e9; color: #fff;
}
.guests-btn:disabled { opacity: 0.3; cursor: default; }
.guests-num { font-size: 1rem; font-weight: 800; color: #1e293b; min-width: 20px; text-align: center; }
.guests-done-btn {
  width: 100%; margin-top: 16px; padding: 11px; border-radius: 12px;
  border: none; background: #2563EB;
  color: #fff; font-size: 0.9rem; font-weight: 800;
  cursor: pointer; font-family: inherit; transition: filter 0.15s, transform 0.15s;
}
.guests-done-btn:hover { filter: brightness(1.07); transform: translateY(-1px); }


.disclosure-bar {
  background: transparent;
  padding: 10px 0;
}
.disclosure-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  font-size: 0.76rem;
  color: #64748b;
  max-width: 100%;
}
.disclosure-pill i {
  color: #0ea5e9;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.disclosure-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.disclosure-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1;
  padding: 0 0 0 4px;
  flex-shrink: 0;
  transition: color 0.15s;
  font-family: inherit;
}
.disclosure-close:hover { color: #475569; }
.disclosure-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* =============================================
   DEALS SECTION — Redesigned v4
   ============================================= */

.deals-section {
  background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
  padding: 44px 0 50px;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Deal Card */
.deal-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: cardReveal 0.5s ease both;
}
.deal-card:nth-child(2) { animation-delay: 0.06s }
.deal-card:nth-child(3) { animation-delay: 0.12s }
.deal-card:nth-child(4) { animation-delay: 0.18s }
.deal-card:nth-child(5) { animation-delay: 0.24s }
.deal-card:nth-child(6) { animation-delay: 0.30s }
.deal-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 18px 48px rgba(0,0,0,0.13);
}

/* Image wrapper */
.card-img-wrap {
  position: relative;
  height: 195px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 14px 14px 0 0;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.deal-card:hover .card-img-wrap img { transform: scale(1.07); }
.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, transparent 55%);
  pointer-events: none;
}

/* Badges */
.card-badges {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 10;
  pointer-events: none;
}
.badge-discount, .deal-section-badge, .ph-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1;
}
.ph-score-badge.ph-score-hot {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 3px 12px rgba(239,68,68,0.42);
  animation: floatBadge 2.4s ease infinite;
}
.ph-score-badge.ph-score-excellent {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 3px 12px rgba(245,158,11,0.4);
}
.ph-score-badge.ph-score-good {
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 3px 10px rgba(34,197,94,0.35);
}
.badge-discount {
  background: linear-gradient(135deg, #ef4444, #c0392b);
  box-shadow: 0 2px 8px rgba(231,76,60,0.4);
}
.deal-section-badge { box-shadow: 0 2px 8px rgba(0,0,0,0.2); }

/* Location */
.card-location {
  position: absolute;
  bottom: 10px;
  right: 12px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.card-location i { color: #fbbf24; }

/* Card body */
.card-body {
  padding: 15px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 9px;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stars */
.card-stars { display: flex; gap: 2px; }
.card-stars .fa-star { color: #f59e0b; font-size: 0.76rem; }
.card-stars .fa-star.empty { color: #e2e8f0; }

/* Tags */
.card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1.4;
}
.tag i { font-size: 0.68rem; color: #94a3b8; }
.tag-green { background: #dcfce7; color: #15803d; }
.tag-green i { color: #15803d; }
.tag-red { background: #fee2e2; color: #dc2626; }
.tag-red i { color: #dc2626; }
.card-tags .tag:nth-child(n+4) { display: none; }

/* Price */
.card-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}
.price-from-label {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 500;
  display: block;
  width: 100%;
  margin-bottom: 2px;
}
.price-orig { font-size: 0.8rem; color: #94a3b8; text-decoration: line-through; }
.price-now {
  font-size: 1.55rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.5px;
}
.price-label { font-size: 0.72rem; color: #94a3b8; font-weight: 500; }

/* Button */
.btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 14px rgba(15,23,42,0.2);
  font-family: Heebo, sans-serif;
  margin-top: 4px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
}
.btn-book:hover, .btn-book:focus-visible {
  background: linear-gradient(135deg, #1e3a5f, #003580);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.3);
  outline: none;
}
.btn-book .btn-plane { font-size: 0.95rem; transition: transform 0.25s ease; display: inline-block; }
.btn-book:hover .btn-plane { transform: translateX(-4px) rotate(-15deg); }
.btn-book .btn-arrow { font-size: 0.72rem; opacity: 0.65; margin-right: auto; transition: transform 0.2s ease; }
.btn-book:hover .btn-arrow { transform: translateX(-3px); }

/* Verified bar */
.ph-checked-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 8px;
}
.ph-checked-bar i { font-size: 0.72rem; }
.ph-checked-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: #15803d; display: inline-block; flex-shrink: 0;
}

/* Route bar */
.card-route {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #475569;
  padding: 5px 10px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.route-origin, .route-dest { color: #0f172a; font-weight: 800; letter-spacing: 0.03em; }
.route-line {
  flex: 1; display: flex; align-items: center; justify-content: center;
  color: #e67e22; font-size: 0.7rem; position: relative;
}
.route-line::before, .route-line::after {
  content: ''; position: absolute; height: 1px;
  background: #e2e8f0; width: calc(50% - 10px);
}
.route-line::before { right: 0; }
.route-line::after { left: 0; }

@media (max-width: 1200px) {
  .deals-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .deals-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-img-wrap { height: 170px; }
}
@media (max-width: 480px) {
  .deals-grid { grid-template-columns: 1fr; gap: 14px; }
  .deal-card { border-radius: 14px; }
  .card-img-wrap { height: 200px; border-radius: 14px 14px 0 0; }
  .card-body { padding: 14px 14px 16px; }
  .card-title { font-size: 1rem; white-space: normal; }
  .price-now { font-size: 1.4rem; }
  .btn-book { font-size: 0.92rem; padding: 13px 16px; }
  .tag { font-size: 0.74rem; padding: 4px 10px; }
}

/* ===================================================
   EMPTY STATE
=================================================== */
.empty-state { text-align: center; padding: 90px 20px; color: var(--text-muted); }
.empty-state i { font-size: 4rem; margin-bottom: 20px; color: var(--border); }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--text); }


.btn-reload {
  margin-top: 22px; padding: 13px 32px;
  background: var(--primary); color: #fff;
  border: none; border-radius: 50px;
  cursor: pointer; font-size: 1rem; font-weight: 700;
  font-family: var(--font); transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-reload:hover { background: var(--primary-lt); transform: translateY(-2px); }


/* ===================================================
   WHY US
=================================================== */
.why-us { background: #fff; padding: 50px 0; }


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}


.feature-card {
  text-align: center; padding: 40px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
  background: #fff;
  position: relative; overflow: hidden;
}


.feature-card::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-lt), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}


.feature-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(0,53,128,0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}


.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(0,53,128,0.25);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { opacity: 1; }


.feature-card:hover i {
  animation: iconBounce 0.6s ease;
}


.feature-card i {
  font-size: 2.6rem; color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
  transition: color 0.3s ease;
}


.feature-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.feature-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }


/* ===================================================
   DESTINATIONS
=================================================== */
.destinations { padding: 50px 0; }


.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 16px;
}


.dest-card {
  position: relative; border-radius: var(--radius-sm);
  overflow: hidden; height: 165px; cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}


.dest-card:hover { transform: scale(1.04); box-shadow: var(--shadow-hover); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.dest-card:hover img { transform: scale(1.12); }


.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 14px;
  transition: background 0.3s ease;
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(0,35,128,0.8) 0%, transparent 65%);
}


.dest-overlay span { color: #fff; font-weight: 800; font-size: 1rem; }


/* ===================================================
   TRUST SECTION
=================================================== */
.trust-section {
  background: #fff; padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section { padding: 50px 0; }


.trust-title {
  text-align: center; font-size: 0.9rem; font-weight: 700;
  color: var(--text-muted); margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.06em;
}


.trust-logos {
  display: flex; align-items: center;
  justify-content: center; gap: 36px; flex-wrap: wrap;
}


.trust-logo-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 800; color: #94A3B8;
  transition: color var(--transition), transform 0.25s ease;
}
.trust-logo-item:hover { color: var(--primary); transform: scale(1.08); }
.trust-logo-item i { font-size: 1.2rem; }


/* ===================================================
   CONTACT
=================================================== */
.contact-section { background: #F8FAFC; padding: 50px 0; }


.contact-form {
  max-width: 620px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px;
}


.form-row { display: flex; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.form-label { font-size: 0.88rem; font-weight: 700; color: var(--text); }


.form-control {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: var(--font);
  color: var(--text); background: #fff;
  transition: border 0.25s ease, box-shadow 0.25s ease;
  text-align: right; direction: rtl;
}
.form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,53,128,0.1);
}
textarea.form-control { resize: vertical; min-height: 130px; }


.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  background-size: 200% auto;
  color: #fff; padding: 15px; border: none; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 800;
  font-family: var(--font); cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative; overflow: hidden;
}


.btn-submit::after {
  content: '';
  position: absolute; top: 0; right: -100%; bottom: 0; width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: right 0.5s ease;
}


.btn-submit:hover::after { right: 120%; }


.btn-submit:hover,
.btn-submit:focus-visible {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,53,128,0.28);
  outline: none;
}


/* ===================================================
   FOOTER
=================================================== */
.footer { background: #0F172A; color: #CBD5E1; padding: 64px 0 0; }


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


.footer-logo {
  font-size: 1.45rem; font-weight: 900; color: #fff;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}

.footer-logo i { color: var(--accent); }
.footer-col p  { font-size: 0.88rem; line-height: 1.75; color: #94A3B8; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 800; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-col ul a {
  color: #94A3B8; text-decoration: none; font-size: 0.9rem;
  transition: color var(--transition), padding-right var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul a:hover { color: #fff; padding-right: 5px; }


.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07); color: #CBD5E1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.social-links a:hover { background: var(--primary-lt); color: #fff; transform: translateY(-3px); border-color: transparent; }


.footer-bottom {
  padding: 22px 0; text-align: center;
  font-size: 0.82rem; color: #64748B;
  display: flex; flex-direction: column; gap: 5px;
}
.footer-bottom a { color: #94A3B8; text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }
.affiliate-note { font-size: 0.78rem; }


/* ===================================================
   BACK TO TOP
=================================================== */
.back-to-top {
  position: fixed; bottom: 30px; right: 20px; z-index: 300;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  color: #fff; border: none; border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,53,128,0.35);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,53,128,0.45); }
@media (max-width: 768px) {
  .back-to-top { display: none !important; }
}


/* ===================================================
   LANGUAGE SWITCHER
=================================================== */
.lang-switcher {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 5px; min-width: 40px; height: 34px; padding: 0 12px;
  border-radius: 8px; border: 1.5px solid var(--primary);
  color: var(--primary); font-weight: 700; font-size: 0.82rem;
  text-decoration: none; letter-spacing: 0.03em;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap; margin-inline-end: 8px;
  position: relative; overflow: hidden; touch-action: manipulation; flex-shrink: 0;
  background: transparent;
}
.navbar.scrolled .lang-switcher {
  border-color: var(--primary); color: var(--primary);
  background: transparent;
}
.lang-flag { font-size: 1.05rem; line-height: 1; position: relative; z-index: 1; }
.lang-label { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.04em; position: relative; z-index: 1; }

.lang-switcher::before { display: none; }
.lang-switcher span { position: relative; z-index: 1; }
.lang-switcher:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.navbar.scrolled .lang-switcher:hover { background: var(--primary); color: #fff; border-color: var(--primary); }



/* ===================================================
   MOBILE NAV OVERLAY (close on outside tap)
=================================================== */
/* ── Mobile Nav Drawer — מוסתר בדסקטופ, נראה רק במובייל ── */
.mobile-nav-drawer {
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav-drawer {
    display: block;  /* הוצג ע"י ה-media query — ה-right:-100% מסתיר אותו */
  }
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-overlay.active {
  display: block;
}

/* ===================================================
   FOCUS & ACCESSIBILITY
=================================================== */
/* Prevent double-tap zoom on all interactive elements */
a, button, input, select, textarea, label,
[role="button"], [onclick] {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--primary-lt);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}


/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .deals-grid  { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}


@media (max-width: 768px) {
  :root { --nav-h: 86px; }
  .container { padding: 0 16px; }

  .logo-img { height: 70px; max-height: 70px; }

  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-h); right: 0; left: 0;
    background: #fff; padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    gap: 2px; box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .nav-links a { border-radius: var(--radius-sm); padding: 12px 16px; font-size: 1rem; }
  .nav-links a::before { display: none; }
  .nav-links.open { display: flex; z-index: 201; }

  /* ── Hamburger לצד ימין: order -1 בגלל RTL ── */
  .nav-toggle {
    display: flex;
    order: -1;
  }

  /* ── Mobile Drawer מצד ימין ── */
  .mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 10001;
    overflow-y: auto;
    padding: 0;
    box-shadow: -4px 0 24px rgba(0,0,0,0.18);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-nav-drawer.open {
    right: 0;
  }
  .mobile-nav-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--primary);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .mobile-nav-drawer__title {
    font-size: 1.1rem;
    font-weight: 800;
  }
  .mobile-nav-drawer__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-links-list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
  }
  .nav-links-list > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-radius: 0;
    transition: background 0.2s;
  }
  .nav-links-list > li > a:hover,
  .nav-links-list > li > a:active {
    background: rgba(0,53,128,0.05);
    color: var(--primary);
  }
  .nav-links-list .has-dropdown > a {
    justify-content: space-between;
  }
  .nav-links-list .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    display: none;
    background: #f5f7fa;
    padding: 4px 0;
    border-radius: 0;
    min-width: unset;
  }
  .nav-links-list .has-dropdown.active .dropdown-menu {
    display: block;
  }
  .nav-links-list .has-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }
  .nav-links-list .dropdown-menu li a {
    padding: 11px 32px;
    font-size: 0.93rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s;
  }

  .deals-section  { padding: 36px 0; }
  .deals-grid     { grid-template-columns: 1fr; gap: 20px; }
  .why-us         { padding: 36px 0; }
  .section        { padding: 36px 0; }
  .features-grid  { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-card   { padding: 28px 20px; }
  .destinations   { padding: 36px 0; }
  .contact-section{ padding: 36px 0; }
  .form-row       { flex-direction: column; }
  .footer-grid    { grid-template-columns: 1fr; gap: 30px; }
  .footer         { padding-top: 48px; }
  .trust-logos    { gap: 20px; }
  .back-to-top    { bottom: 80px; right: 14px; left: auto; width: 42px; height: 42px; }

  .lang-switcher  { margin-inline-end: 4px; font-size: 0.78rem; padding: 0 10px; height: 30px; }

  .hero-search .search-box { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-search .search-field { min-width: 100%; }
  .hero-search .btn-search { width: 100%; justify-content: center; padding: 13px; }
}


@media (max-width: 480px) {
  .hero { min-height: 360px; }
  .hero-title { font-size: 1.6rem; }
  .hero-content { padding-top: calc(var(--nav-h) + 16px); padding-left: 16px; padding-right: 16px; }
  .btn-hero { padding: 14px 28px; font-size: 1rem; }

  .hero-badges { gap: 0; flex-wrap: nowrap; }
  .hero-badge { font-size: 0.74rem; padding: 0.45rem 0.75rem; }

  .deals-section { padding: 28px 0; }
  .section       { padding: 28px 0; }
  .deals-grid    { gap: 16px; }
  .card-img-wrap { height: 185px; }

  .dest-grid  { grid-template-columns: repeat(2, 1fr); }
  .dest-card  { height: 130px; }

  .features-grid { grid-template-columns: 1fr; }

  .section-header        { margin-bottom: 20px; }
  .section-header h2     { font-size: 1.5rem; font-weight: 900; color: #003580; }
  .section-header h2::after { width: 80%; }

  .footer-grid { grid-template-columns: 1fr; }
  .back-to-top { bottom: 78px; right: 12px; left: auto; }
}


@media (max-width: 360px) {
  .dest-grid  { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.6rem; }
  .price-now  { font-size: 1.35rem; }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE HORIZONTAL SCROLL — יעדים פופולריים (≤ 768px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .destinations .container { overflow: visible; }

  .dest-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    padding: 8px 16px 16px 16px !important;
    margin: 0 -16px !important;
    grid-template-columns: unset !important;
  }
  .dest-grid::-webkit-scrollbar { display: none !important; }

  .dest-card {
    flex: 0 0 52vw !important;
    max-width: 200px !important;
    min-width: 150px !important;
    height: 160px !important;
    scroll-snap-align: start !important;
    border-radius: 14px !important;
  }
}


/* ===================================================
   FOOTER — MOBILE ACCORDION (mobile only)
=================================================== */

/* ── Accordion button — hidden on desktop ── */
.footer-acc-btn {
  display: none;
}

/* ── Accordion body — always visible on desktop ── */
.footer-acc-body {
  display: block;
}

/* ── Mobile locale row (flag + currency) — hidden on desktop ── */
.footer-mobile-locale {
  display: none;
}

@media (max-width: 768px) {

  /* Hide the brand col's h4 title on mobile (it has no accordion) */
  .footer-col-brand h4 { display: none; }

  /* ── Accordion button visible on mobile ── */
  .footer-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 0;
    cursor: pointer;
    text-align: right;
    direction: rtl;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s;
  }

  .footer-acc-btn:hover { color: #94A3B8; }

  .footer-acc-btn i {
    font-size: 0.85rem;
    color: #64748B;
    transition: transform 0.28s ease;
    flex-shrink: 0;
  }

  .footer-acc-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  /* ── Accordion body — collapsed by default on mobile ── */
  .footer-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
  }

  .footer-acc-body ul {
    padding-bottom: 16px;
    gap: 14px;
  }

  /* ── footer-grid on mobile: single column, no gap between cols ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding-bottom: 0;
    border-bottom: none;
  }

  /* Brand col stays normal, no border-top */
  .footer-col-brand {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0;
  }

  /* Each accordion col: remove default h4 margin (button replaces it) */
  .footer-col-accordion {
    padding: 0;
  }
  .footer-col-accordion h4 {
    display: none;
  }

  /* Last accordion col bottom border */
  .footer-col-accordion:last-child .footer-acc-btn {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* ── Mobile locale row ── */
  .footer-mobile-locale {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 0 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-locale-flag {
    font-size: 1.8rem;
    line-height: 1;
  }

  .footer-locale-currency {
    color: #CBD5E1;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  /* footer-bottom stays centered */
  .footer-bottom {
    padding: 20px 0 24px;
  }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE CATEGORY STRIP  (≤ 768px)
   Horizontal scrollable row of category pills below the header
══════════════════════════════════════════════════════════════ */
.mobile-category-strip {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  /* ── Category Strip ── */
  .mobile-category-strip {
    display: block;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .mobile-category-strip__inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-category-strip__inner::-webkit-scrollbar {
    display: none;
  }
  .mob-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Heebo', sans-serif;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.18s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .mob-cat-btn i {
    font-size: 0.78rem;
  }
  .mob-cat-btn.active,
  .mob-cat-btn:active {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 10px rgba(230,126,34,0.4);
  }

  /* ══════════════════════════════════════════════════════════════
     MOBILE HOTEL / DEAL CARDS  (≤ 768px)
     Horizontal swipe carousel — Booking.com style
  ══════════════════════════════════════════════════════════════ */

  /* ── Wrapper: allow overflow to escape .container padding ── */
  .deals-section .container {
    overflow: visible;
  }

  /* ── The grid becomes a horizontal scroll track ── */
  .deals-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    padding: 8px 16px 16px 16px !important;
    margin: 0 -16px !important; /* bleed past container edges */
  }
  .deals-grid::-webkit-scrollbar {
    display: none !important;
  }

  /* ── Each card: fixed width, snaps into place ── */
  .deal-card {
    flex: 0 0 78vw !important;       /* ~78% of viewport width */
    max-width: 300px !important;
    min-width: 240px !important;
    scroll-snap-align: start !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.11) !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    border: 1px solid rgba(0,0,0,0.07) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }
  .deal-card:active {
    transform: scale(0.97) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10) !important;
  }

  /* ── Image: wide, tall enough to feel premium ── */
  .card-img-wrap {
    height: 175px !important;
    width: 100% !important;
    flex-shrink: 0 !important;
  }
  .card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* ── Card body ── */
  .card-body {
    padding: 13px 14px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    flex: 1 !important;
  }

  /* Hotel / route name */
  .card-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    line-height: 1.3 !important;
    margin: 8px 0 6px 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Stars */
  .card-stars {
    display: flex !important;
    gap: 2px !important;
  }
  .card-stars .fa-star {
    font-size: 0.8rem !important;
    color: #f39c12 !important;
  }
  .card-stars .fa-star.empty {
    color: #cbd5e1 !important;
  }

  /* Tags */
  .card-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
  }
  .tag {
    font-size: 0.74rem !important;
    padding: 3px 8px !important;
  }

  /* Price block */
  .card-price {
    display: flex !important;
    align-items: baseline !important;
    gap: 7px !important;
    flex-wrap: wrap !important;
    margin-top: auto !important;
    padding-top: 8px !important;
    border-top: 1px solid #f1f5f9 !important;
  }
  .price-now {
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    color: #0f172a !important;
  }
  .price-orig {
    font-size: 0.8rem !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
  }
  .price-label {
    font-size: 0.72rem !important;
    color: #94a3b8 !important;
  }

  /* Book button — full width inside card */
  .btn-book {
    width: 100% !important;
    padding: 11px 14px !important;
    font-size: 0.88rem !important;
    border-radius: 9px !important;
    justify-content: center !important;
    margin-top: 3px !important;
    background: #0f172a !important;
  }}

  /* Location tag on image */
  .card-location {
    font-size: 0.82rem !important;
    bottom: 10px !important;
    right: 12px !important;
  }

  /* ── Swipe hint arrow (fade in once) ── */
  .deals-section::after {
    content: '';
    display: none; /* JS adds visible class */
  }

/* ══════════════════════════════════════════════════════════════
   MOBILE — Section headers right-aligned + footer currency (≤768px)
══════════════════════════════════════════════════════════════ */

/* Footer currency dropdown — hidden on desktop */
.footer-mobile-locale { display: none; }
.ftr-cur-menu         { display: none; }

@media (max-width: 768px) {

  /* ── כותרות סקשנים — יישור לימין ── */
  .section-header {
    text-align: right !important;
  }
  .section-header h2::after {
    margin: 10px 0 0 0 !important;
  }
  .section-sub {
    text-align: right !important;
  }

  /* ── עטיפת הבורר ── */
  .footer-mobile-locale {
    display: block;
    position: relative;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  /* ── כפתור הטריגר ── */
  .ftr-cur-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.07);
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    text-align: right;
    direction: rtl;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.18s, border-color 0.18s;
  }
  .ftr-cur-trigger:active {
    background: transparent;
  }
  .ftr-cur-flag  { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
  .ftr-cur-label { flex: 1; }
  .ftr-cur-arrow {
    font-size: 0.75rem;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.22s ease;
  }

  /* ── תפריט הבחירה ── */
  .ftr-cur-menu {
    display: none;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    bottom: calc(100% - 16px);
    right: 20px;
    left: 20px;
    background: #1e293b;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
    z-index: 500;
    overflow: hidden;
  }
  .ftr-cur-menu.open {
    display: flex;
  }

  /* ── שורת אפשרות ── */
  .ftr-cur-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    direction: rtl;
    text-align: right;
    width: 100%;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .ftr-cur-opt:active,
  .ftr-cur-opt:hover  { background: rgba(255,255,255,0.07); }
  .ftr-cur-opt.active {
    background: rgba(230,126,34,0.18);
    color: #f39c12;
  }
  .ftr-cur-opt-flag { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
  .ftr-cur-opt-sym  { font-size: 1rem; font-weight: 800; min-width: 22px; }
  .ftr-cur-opt-name { flex: 1; font-weight: 600; }
  .ftr-cur-opt-code { font-size: 0.78rem; color: #64748b; font-weight: 700; }
  .ftr-cur-opt.active .ftr-cur-opt-code { color: #e67e22; }
}


/* ═══════════════════════════════════════════════════
   CATEGORY CARDS STRIP
═══════════════════════════════════════════════════ */
.cat-cards-section {
  background: #f5f7fa;
  padding: 28px 0 24px;
  border-bottom: 1px solid #e8edf3;
}

.cat-cards-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px 16px;
  min-width: 110px;
  max-width: 140px;
  flex: 1 1 110px;
  text-decoration: none;
  color: #1e293b;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1.5px solid #e8edf3;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.cat-card:hover {
  transform: scale(1.06) translateY(-3px);
  background: #fff8f3;
  box-shadow: 0 8px 28px rgba(230,126,34,0.18);
  border-color: #f5c09a;
}

.cat-card.active {
  background: linear-gradient(135deg, #fff4eb, #fff);
  border-color: #e67e22;
  box-shadow: 0 6px 22px rgba(230,126,34,0.25);
  transform: scale(1.06) translateY(-3px);
}

.cat-card__icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  transition: transform 0.22s ease;
}

.cat-card:hover .cat-card__icon,
.cat-card.active .cat-card__icon {
  transform: scale(1.12);
}

.cat-card__label {
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  color: #374151;
  line-height: 1.3;
  font-family: 'Heebo', sans-serif;
  transition: color 0.22s;
}

.cat-card:hover .cat-card__label,
.cat-card.active .cat-card__label {
  color: #e67e22;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cat-cards-row {
    gap: 10px;
  }
  .cat-card {
    min-width: 90px;
    padding: 14px 14px 12px;
  }
  .cat-card__icon { font-size: 1.75rem; }
  .cat-card__label { font-size: 0.78rem; }
}

@media (max-width: 600px) {
  .cat-cards-section { padding: 16px 0 14px; }
  .cat-cards-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 10px;
    padding: 4px 16px 10px 16px;
    margin: 0 -16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-cards-row::-webkit-scrollbar { display: none; }
  .cat-card {
    flex: 0 0 auto;
    min-width: 82px;
    max-width: 95px;
    padding: 12px 10px 10px;
    border-radius: 14px;
  }
  .cat-card__icon { font-size: 1.6rem; }
  .cat-card__label { font-size: 0.74rem; }
}


/* ═══════════════════════════════════════════════════
   DYNAMIC CATEGORY SECTIONS
═══════════════════════════════════════════════════ */
.cat-section {
  background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
  padding: 44px 0 50px;
  border-top: 3px solid #f39c12;
  overflow: visible;
}

.cat-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.cat-section__header h2 {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #003580;
  position: relative;
}

.cat-section__header h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 60%;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold), var(--primary-lt));
  background-size: 250% auto;
  animation: shimmer 3s linear infinite;
}

.cat-section__emoji {
  font-size: 1.8rem;
  line-height: 1;
  margin-inline-end: 8px;
}

.cat-section__close { display: none; }

/* Spinner */
.cat-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 0;
  color: #e67e22;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
}
.cat-spinner i {
  font-size: 1.6rem;
  color: #e67e22;
}

/* Empty / error state inside category section */
.cat-empty {
  text-align: center;
  padding: 52px 20px;
  color: #94a3b8;
  grid-column: 1 / -1;
}
.cat-empty i {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.cat-empty p {
  font-size: 0.95rem;
  font-weight: 600;
}

/* "More" text-link — inside section header, pushed to the left */
.cat-more-wrap {
  margin-inline-start: auto;
  flex-shrink: 0;
}
.cat-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: none;
  background: none;
  color: #00a8ff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Heebo', sans-serif;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.cat-more-btn:hover {
  color: var(--accent);
  opacity: 0.85;
}
.cat-more-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.cat-more-btn:hover i { transform: translateX(-3px); }

@media (max-width: 768px) {
  .cat-more-btn { font-size: 1rem; }
}

/* Show-more button */
.cat-show-more-wrap {
  text-align: center;
  margin-top: 28px;
}
.cat-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  border-radius: 50px;
  border: 2px solid #e67e22;
  background: #fff;
  color: #e67e22;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: all 0.22s;
  -webkit-tap-highlight-color: transparent;
}
.cat-show-more-btn:hover {
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,126,34,0.35);
}
.cat-show-more-btn i {
  transition: transform 0.2s;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cat-section__header h2 { font-size: 1.2rem; color: #003580; }
  .cat-section__header h2::after { width: 80%; }
  .cat-section__emoji { font-size: 1.4rem; }

  /* Same as .deals-section .container */
  .cat-section .container {
    overflow: visible;
  }

  /* Same as .deals-grid mobile — margin bleed past container edges */
  .cat-deals-grid.deals-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    padding: 8px 16px 16px 16px !important;
    margin: 0 -16px !important;
    grid-template-columns: unset !important;
  }
  .cat-deals-grid.deals-grid::-webkit-scrollbar { display: none !important; }
}

/* ═══════════════════════════════════════════════════
   SECTION WHITE BLOCKS — בלוק לבן עצמאי לכל סקציה
═══════════════════════════════════════════════════ */
.deals-section,
.cat-section,
.why-us,
#destinations,
.destinations,
.trust-section,
.trip-planner-section,
.blog-preview,
.trending-section,
.contact-section {
  background: #ffffff !important;
  box-shadow: 0 0 32px 6px rgba(0, 53, 128, 0.16);
  border-radius: 12px;
  border-top: none !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  margin-left: 32px;
  margin-right: 32px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

/* Desktop: 80% width centered white block */
@media (min-width: 1025px) {
  .deals-section,
  .cat-section,
  .why-us,
  #destinations,
  .destinations,
  .trust-section,
  .trip-planner-section,
  .blog-preview,
  .trending-section,
  .contact-section {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.deals-section::before, .deals-section::after,
.cat-section::before, .cat-section::after,
.trip-planner-section::before, .trip-planner-section::after,
.why-us::before, .why-us::after,
#destinations::before, #destinations::after,
.trust-section::before, .trust-section::after,
.blog-preview::before, .blog-preview::after,
.trending-section::before, .trending-section::after,
.contact-section::before, .contact-section::after {
  display: none !important;
}

.deals-section .section-header,
.cat-section .section-header,
.why-us .section-header,
#destinations .section-header,
.trust-section .section-header,
.trip-planner-section .section-header,
.blog-preview .section-header,
.trending-section .section-header,
.contact-section .section-header {
  margin-bottom: 16px !important;
}

@media (max-width: 1024px) {
  .deals-section, .cat-section, .why-us, #destinations, .destinations,
  .trust-section, .trip-planner-section, .blog-preview, .trending-section, .contact-section {
    width: auto;
    margin-left: 0;
    margin-right: 16px;
    border-radius: 0 12px 12px 0;
  }
}

@media (max-width: 768px) {
  .deals-section, .cat-section, .why-us, #destinations, .destinations,
  .trust-section, .trip-planner-section, .blog-preview, .trending-section, .contact-section {
    width: auto;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 22px 4px rgba(0, 53, 128, 0.14);
    margin-left: 0;
    margin-right: 10px;
    margin-bottom: 14px;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

/* ═══════════════════════════════════════════════════
   DESTINATIONS — כיתוב בתוך התמונה, במרכז
═══════════════════════════════════════════════════ */

#destinations .dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  display: block;
  background: transparent;   /* ← לא שחור */
  height: 180px;
  flex-shrink: 0;
}

#destinations .dest-card img {
  width: 100%;
  height: 100%;              /* ← ממלא את גובה הכרטיס תמיד */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.88;
}

#destinations .dest-card:hover img {
  transform: scale(1.08);
  opacity: 0.75;
}

#destinations .dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.18) 0%, rgba(0,20,70,0.52) 100%);
  border-radius: 14px;
  pointer-events: none;
  display: block !important;
}

#destinations .dest-card .dest-info {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 12px !important;
  background: transparent !important;
  z-index: 3;
}

#destinations .dest-card .dest-name {
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.75) !important;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

#destinations .dest-card .dest-sub {
  display: none !important;
}

/* מובייל — גובה זהה לכרטיס ולתמונה, ללא שחור */
@media (max-width: 768px) {
  #destinations .dest-card {
    height: 140px !important;
    background: transparent !important;
    min-height: unset !important;
    max-height: 140px !important;
  }
  #destinations .dest-card img {
    height: 100% !important;
    max-height: 140px !important;
  }
  #destinations .dest-card .dest-name {
    font-size: 1rem !important;
  }
}


/* ==========================================================================
   Skeleton Loading Animation for API Deals
   ========================================================================== */
@keyframes loadingShimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    animation: loadingShimmer 1.5s infinite linear;
    border-radius: 4px;
}

.skeleton-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    min-height: 350px;
}

.skeleton-img { height: 200px; width: 100%; border-radius: 8px; }
.skeleton-title { height: 24px; width: 60%; }
.skeleton-text { height: 16px; width: 100%; }
.skeleton-button { height: 45px; width: 100%; border-radius: 8px; margin-top: auto; }


/* Wider Deals Container on Desktop */
@media (min-width: 1025px) {
    .deals-section .container,
    .cat-section .container,
    .trip-planner-section .container,
    #destinations .container,
    .blog-preview .container {
        max-width: 98% !important; /* expands almost to the edges */
        width: 100%;
    }
}


/* ==========================================================================
   NAVIGATION UPGRADES (DROPDOWNS & BOTTOM BAR)
   ========================================================================== */

/* --- Dropdowns Desktop --- */
.has-dropdown {
    position: relative;
}
.has-dropdown > a {
    display: flex !important;
    align-items: center;
    gap: 6px;
}
.dropdown-icon {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    min-width: 230px;
    box-shadow:
      0 8px 32px rgba(0,53,128,0.13),
      0 2px 8px rgba(0,0,0,0.07),
      0 0 0 1px rgba(0,53,128,0.07);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 1000;
    list-style: none;
    margin: 0;
    border: 1px solid #e4eaf5;
    overflow: hidden;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Blue top accent stripe */
.dropdown-menu::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-lt), #38bdf8);
    margin-bottom: 6px;
}
.dropdown-menu li {
    margin: 0;
    padding: 0;
}
.dropdown-menu li a {
    display: flex !important;
    align-items: center;
    gap: 11px;
    padding: 11px 20px !important;
    color: #1e293b !important;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 !important;
    transition: background 0.15s ease, color 0.15s ease, padding-inline-start 0.18s;
}
.dropdown-menu li a i {
    font-size: 0.9rem;
    color: var(--primary);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(0,53,128,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}
.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(0,53,128,0.05), transparent);
    color: var(--primary) !important;
    padding-inline-start: 24px !important;
}
.dropdown-menu li a:hover i {
    background: var(--primary);
    color: #fff;
}

/* --- Mobile Nav Modifications --- */
@media (max-width: 768px) {
    body {
        padding-bottom: 75px !important; /* Space for bottom nav */
    }
    .has-dropdown > a {
        justify-content: space-between;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; /* Hide by default in mobile */
        background: #f5f7fa;
        padding: 5px 0;
        margin-top: 10px;
        border-radius: 8px;
        width: 100%;
    }
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    .has-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Hide the old mobile category strip to reduce clutter */
    .mobile-category-strip {
        display: none !important;
    }
}

/* --- Bottom Navigation Bar --- */
.bottom-nav { display: none !important; }

.nav-title-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ==========================================================================
   MAKE ENTIRE DEAL CARD CLICKABLE
   ========================================================================== */
.deal-card {
    position: relative; /* ensures absolute overlay stays inside */
}
.deal-card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-decoration: none;
    cursor: pointer;
    background: transparent; /* transparent clickable area */
}
.btn-book {
    position: relative;
    z-index: 6; /* keeps button hoverable/clickable */
}



/* ================================================================
   PRIME HOLIDAYS – Wishlist, Toast & Fixes  (prime-wishlist.js v2)
   ================================================================ */

/* ── 1. Heart / Wishlist button — TOP-LEFT of card image ── */
.ph-wl-btn {
    position: absolute;
    top:   10px;
    left:  10px;
    right: auto;
    z-index: 20;
    background: rgba(255,255,255,0.93);
    border: none;
    border-radius: 50%;
    width:  38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), background 0.18s;
    -webkit-tap-highlight-color: transparent;
}
.ph-wl-btn:hover {
    transform: scale(1.12);
    background: #fff0f0;
}
.ph-wl-btn i {
    font-size: 1rem;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.18s;
}
.ph-wl-btn.saved {
    background: #fff0f0;
}
.ph-wl-btn.saved i {
    color: #ef4444;
}
@keyframes ph-heartbeat {
    0%   { transform: scale(1.35); }
    50%  { transform: scale(1.1);  }
    100% { transform: scale(1);    }
}
.ph-wl-btn.saved {
    animation: ph-heartbeat 0.3s ease forwards;
}

/* ── 2. Remove WhatsApp icon from deal cards (still shows in footer) ── */
.deal-card a[href*="wa.me"],
.deal-card a[href*="whatsapp"],
.deal-card .btn-whatsapp,
.deal-card [class*="whatsapp"] {
    display: none !important;
}

/* ── 3. Toast notification system ── */
#ph-toast-wrap {
    position: fixed;
    bottom: 28px;
    left:   20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.ph-toast {
    background: #1e293b;
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: 'Heebo', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22,1,0.36,1);
    pointer-events: none;
    max-width: 280px;
}
.ph-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ── 4. Bottom-nav: support 5 items on mobile ── */
@media (max-width: 768px) {
}

/* ══════════════════════════════════════════════════════════════
   PRIME HOLIDAYS — v4.0 additions
   AI Deal Search Bar + Dashboard improvements
══════════════════════════════════════════════════════════════ */

/* ── AI Deal Search Bar (in-page, deals section) ───────────── */
.ai-deal-searchbar {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 22px 14px;
  margin-bottom: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: box-shadow .2s;
}
.ai-deal-searchbar:focus-within {
  box-shadow: 0 6px 32px rgba(124,58,237,.12);
  border-color: #c4b5fd;
}
.ai-dsb-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.ai-dsb-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color .2s, box-shadow .2s;
}
.ai-dsb-input-wrap:focus-within {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,.1);
  background: #fff;
}
.ai-dsb-icon { color: #94a3b8; font-size: .92rem; flex-shrink: 0; }
.ai-dsb-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Heebo', sans-serif;
  font-size: .96rem;
  color: #1e293b;
  outline: none;
  padding: 13px 0;
}
.ai-dsb-input::placeholder { color: #94a3b8; }
.ai-dsb-clear {
  background: none; border: none; color: #94a3b8;
  cursor: pointer; font-size: .82rem; padding: 4px;
  transition: color .15s; display: none;
}
.ai-dsb-clear:hover { color: #ef4444; }
.ai-dsb-actions { display: flex; gap: 8px; flex-shrink: 0; }
.ai-dsb-btn {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: #fff; border: none; border-radius: 12px;
  padding: 11px 24px; font-size: .92rem; font-weight: 700;
  cursor: pointer; font-family: 'Heebo', sans-serif;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 3px 14px rgba(230,126,34,.38);
  white-space: nowrap;
}
.ai-dsb-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,126,34,.52); }
.ai-dsb-toggle-btn {
  display: none !important; /* AI is now always-on — button hidden */
}
._ai-dsb-toggle-btn-styles {
  display: flex; align-items: center; gap: 6px;
  background: #f5f3ff; color: #5b21b6;
  border: 1.5px solid #ede9fe; border-radius: 12px;
  padding: 10px 16px; font-size: .86rem; font-weight: 700;
  cursor: pointer; font-family: 'Heebo', sans-serif;
  transition: all .2s; white-space: nowrap;
}
.ai-dsb-toggle-btn.ai-on {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff; border-color: transparent;
  box-shadow: 0 3px 14px rgba(79,70,229,.38);
}
.ai-dsb-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ai-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 15px; border-radius: 50px;
  border: 1.5px solid #e2e8f0; background: #fff;
  color: #475569; font-size: .82rem; font-weight: 600;
  cursor: pointer; font-family: 'Heebo', sans-serif;
  transition: all .18s; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.ai-chip:hover { border-color: #e67e22; color: #e67e22; transform: translateY(-1px); }
.ai-chip.active {
  background: linear-gradient(135deg, #e67e22, #f39c12);
  border-color: transparent; color: #fff;
  box-shadow: 0 3px 12px rgba(230,126,34,.32);
}
.ai-dsb-status {
  margin-top: 12px; padding: 9px 16px;
  background: #f5f3ff; border-radius: 10px;
  font-size: .79rem; color: #5b21b6; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  animation: fadeInUp .25s ease;
}
@keyframes fadeInUp { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }
@media (max-width: 640px) {
  .ai-dsb-inner { flex-wrap: wrap; }
  .ai-dsb-input-wrap { width: 100%; }
  .ai-dsb-actions { width: 100%; }
  .ai-dsb-btn { flex: 1; justify-content: center; }
  .ai-dsb-toggle-btn { flex: 0 0 auto; }
  .ai-dsb-chips {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
    padding: 2px 0 8px; margin: 0 -22px; padding-left: 22px; padding-right: 22px;
  }
  .ai-dsb-chips::-webkit-scrollbar { display: none; }
  .ai-chip { flex-shrink: 0; }
}

/* ── Section animation on card reveal ─────────────────────── */
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ── Dashboard: AI settings card status dot ───────────────── */
.ai-status-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  margin-inline-end: 6px;
  vertical-align: middle;
}
.ai-status-dot.on  { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.ai-status-dot.off { background: #94a3b8; }


/* ── Mobile Inline Guests Row ── */
.mobile-guests-row {
  display: none; /* hidden on desktop */
}
.desktop-only-sep,
.desktop-guests {
  /* shown on desktop by default */
}

@media (max-width: 650px) {
  /* Hide desktop guests field and its separator */
  .desktop-only-sep,
  .desktop-guests {
    display: none !important;
  }

  /* Show mobile guests row — full width row below date */
  .mobile-guests-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.95);
    padding: 0 8px;
    height: 52px;
    flex: 0 0 100%;
    width: 100%;
    order: 3;
    gap: 4px;
  }
  .mg-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 1px;
  }
  .mg-label {
    font-size: 0.52rem;
    font-weight: 700;
    color: #94a3b8;
    text-align: center;
    line-height: 1;
  }
  .mg-counter {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .mg-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s, border-color 0.15s;
    padding: 0;
    font-family: var(--font, Heebo, sans-serif);
  }
  .mg-btn:active {
    background: #e67e22;
    border-color: #e67e22;
    color: #fff;
  }
  .mg-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }
  .mg-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1e293b;
    min-width: 18px;
    text-align: center;
  }
  .mg-sep {
    width: 1px;
    height: 30px;
    background: #e2e8f0;
    flex-shrink: 0;
  }

  /* Date field takes full second row on mobile */
  .hero-search-unified #advDateField {
    flex: 1 1 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    order: 2;
  }
}

/* ── FAB Chat Tooltip ── */
#ph-fab-hint {
  display: inline-flex;
  align-items: center;

  position: fixed;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 8px 32px rgba(79,70,229,0.45), 0 2px 8px rgba(0,0,0,0.15);
  white-space: normal;
  word-break: keep-all;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px) scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 99998;
  font-family: "Heebo", sans-serif;
  direction: rtl;
  width: max-content;
  max-width: 220px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(255,255,255,0.18);
}
#ph-fab-hint::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
#ph-fab-hint::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  border: 8px solid transparent;
  border-top-color: #7c3aed;
  border-bottom: 0;
  filter: drop-shadow(0 2px 4px rgba(79,70,229,0.3));
}
#ph-fab-hint.ph-hint-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── FAB Scale Pulse Animation ── */
@keyframes fabScalePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.07); }
}
.ph-fab-scale-pulse {
  animation: fabScalePulse 0.7s ease-in-out !important;
}

/* ══════════════════════════════════════════════════════════════
   FAVORITES PAGE
   ══════════════════════════════════════════════════════════════ */
.fav-page { background: linear-gradient(180deg,#fff8f3 0%,#f8fafc 100%); min-height:100vh; padding-bottom:60px; }
.fav-hero { background:linear-gradient(135deg,#003580 0%,#1e3a5f 60%,#e67e22 100%); padding:52px 0 44px; text-align:center; color:#fff; }
.fav-hero h1 { font-size:2rem; font-weight:900; color:#fff; margin-bottom:10px; display:flex; align-items:center; justify-content:center; gap:12px; }
.fav-hero p { font-size:1rem; color:rgba(255,255,255,.85); max-width:520px; margin:0 auto; line-height:1.6; }
.fav-breadcrumb { display:flex; align-items:center; gap:8px; font-size:.82rem; color:#94a3b8; padding:14px 0 0; flex-wrap:wrap; }
.fav-breadcrumb a { color:#94a3b8; text-decoration:none; transition:color .2s; }
.fav-breadcrumb a:hover { color:#e67e22; }
.fav-breadcrumb .bc-sep { color:#cbd5e1; }
.fav-breadcrumb .bc-current { color:#475569; font-weight:600; }
.fav-section { padding:44px 0 60px; }
.fav-toolbar { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-bottom:28px; background:#fff; border:1.5px solid #e2e8f0; border-radius:14px; padding:14px 22px; box-shadow:0 2px 10px rgba(0,0,0,.05); }
.fav-toolbar-left { display:flex; align-items:center; gap:10px; font-size:1rem; font-weight:700; color:#003580; }
.fav-toolbar-left i { color:#e67e22; }
.fav-total { background:linear-gradient(135deg,#e67e22,#f39c12); color:#fff; font-size:.75rem; font-weight:800; padding:2px 10px; border-radius:20px; min-width:24px; text-align:center; }
.btn-clear-all { display:inline-flex; align-items:center; gap:7px; padding:9px 18px; border-radius:50px; border:1.5px solid #fca5a5; background:#fff; color:#dc2626; font-size:.85rem; font-weight:700; cursor:pointer; font-family:Heebo,sans-serif; transition:all .2s; }
.btn-clear-all:hover { background:#fee2e2; border-color:#ef4444; }
#favGrid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.btn-fav-remove { position:absolute; top:10px; left:10px; z-index:20; width:32px; height:32px; border-radius:50%; border:none; background:rgba(255,255,255,.9); color:#ef4444; font-size:.85rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s,transform .2s; box-shadow:0 2px 8px rgba(0,0,0,.15); }
.btn-fav-remove:hover { background:#ef4444; color:#fff; transform:scale(1.12); }
.fav-removing { animation:favRemove .32s ease forwards; }
@keyframes favRemove { to { opacity:0; transform:scale(.88) translateY(-8px); } }
.fav-empty { grid-column:1/-1; text-align:center; padding:60px 20px; color:#94a3b8; }
.fav-empty i { font-size:3.5rem; margin-bottom:20px; display:block; color:#e2e8f0; }
.fav-empty h2 { font-size:1.3rem; font-weight:800; color:#334155; margin-bottom:10px; }
.fav-empty p { font-size:.92rem; line-height:1.7; max-width:400px; margin:0 auto 24px; }
.btn-go { display:inline-flex; align-items:center; gap:8px; padding:13px 32px; border-radius:50px; background:linear-gradient(135deg,#e67e22,#f39c12); color:#fff; font-size:1rem; font-weight:800; text-decoration:none; transition:transform .2s,box-shadow .2s; box-shadow:0 4px 16px rgba(230,126,34,.4); }
.btn-go:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(230,126,34,.5); }
.fav-loading-wrap { grid-column:1/-1; text-align:center; padding:60px 20px; color:#94a3b8; font-size:1rem; font-weight:600; }
.fav-loading-wrap i { font-size:2rem; margin-bottom:16px; display:block; color:#e67e22; }
.fav-error { grid-column:1/-1; text-align:center; padding:60px 20px; color:#dc2626; }
@media(max-width:1200px){#favGrid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:860px) {#favGrid{grid-template-columns:repeat(2,1fr);gap:14px}}
@media(max-width:600px) {#favGrid{grid-template-columns:1fr;gap:14px}.fav-hero h1{font-size:1.4rem}.fav-toolbar{padding:12px 16px}}

/* ═══════════════════════════════════════════════════════════════
   BOTTOM NAV — Mobile bar (fixes for favorites page)
   ═══════════════════════════════════════════════════════════════ */
.bottom-nav {
  transition: transform 0.28s ease;
}
@media (max-width: 768px) {
  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: Heebo, sans-serif;
    padding: 4px 2px;
    -webkit-tap-highlight-color: transparent;
    transition: color .2s;
  }
  .bottom-nav-item i {
    font-size: 1.15rem;
  }
  .bottom-nav-item:hover,
  .bottom-nav-item.active {
    color: #003580;
  }
  /* Push page content above bottom nav */
  .fav-page,
  body > footer {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE DRAWER — accordion dropdown fix
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .mobile-nav-drawer .nav-links-list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
  }
  .mobile-nav-drawer .nav-links-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    gap: 8px;
  }
  .mobile-nav-drawer .nav-links-list > li > a:hover {
    background: #f8fafc;
    color: #003580;
  }
  /* Dropdown inside drawer — hidden by default */
  .mobile-nav-drawer .dropdown-menu {
    display: none !important;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
  }
  /* Show when parent has .active */
  .mobile-nav-drawer .has-dropdown.active .dropdown-menu {
    display: block !important;
  }
  .mobile-nav-drawer .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    border-bottom: 1px solid #e9eef5;
  }
  .mobile-nav-drawer .dropdown-menu li a:hover {
    background: #eef2ff;
    color: #003580;
  }
  /* Rotate chevron when open */
  .mobile-nav-drawer .has-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }
  .mobile-nav-drawer .dropdown-icon {
    transition: transform 0.2s ease;
    margin-inline-start: auto;
    font-size: 0.75rem;
    color: #94a3b8;
  }
  .mobile-nav-drawer .nav-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO — Unified inner-page hero banner (all non-index pages)
   Matches contact.php hero style for design consistency
═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #003580 0%, #0057b8 50%, #0078d4 100%);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230,126,34,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .03em;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 2. Fix navbar on inner pages (no hero-wrapper):
      Make it sticky so it stays visible on scroll */
.navbar.scrolled {
  position: sticky !important;
  top: 0 !important;
}

/* 3. Remove bottom-nav permanently */
.bottom-nav,
.bottom-nav * { display: none !important; }

/* ═══════════════════════════════════════════════════════════════
   PAGE BREADCRUMB — improved design for inner pages
═══════════════════════════════════════════════════════════════ */
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.page-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 700;
}
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb a i { font-size: 0.75rem; }
.page-breadcrumb__sep {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  line-height: 1;
}
.page-breadcrumb__current {
  color: #fff;
  font-weight: 700;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR INTEGRATED INTO HERO (index.php only)
   .hero-wrapper positions navbar absolutely over the hero image
═══════════════════════════════════════════════════════════════ */

/* When navbar is inside hero-wrapper: make it absolute over hero */
.navbar.navbar--sticky {
  position: sticky !important;
  top: 0 !important;
}




/* ═══════════════════════════════════════════════════════════════════
   MOBILE NAVBAR v7 — Premium Travel Design
═══════════════════════════════════════════════════════════════════ */

/* ── Hamburger ─────────────────────────────────────────────────── */
.nav-toggle {
  display:none; flex-direction:column; justify-content:center;
  align-items:center; width:44px; height:44px; background:none;
  border:1.5px solid rgba(0,53,128,.18); border-radius:10px;
  cursor:pointer; padding:0; gap:5px; flex-shrink:0;
  transition:border-color .2s, background .2s;
}
.nav-toggle:hover { border-color:var(--primary); background:rgba(0,53,128,.05); }
.nav-toggle .bar { display:block; height:2.5px; border-radius:3px; background:var(--primary);
  transition:transform .35s cubic-bezier(.4,0,.2,1), opacity .22s, width .22s; transform-origin:center; }
.nav-toggle .bar1, .nav-toggle .bar3 { width:20px; }
.nav-toggle .bar2 { width:12px; }
.nav-toggle.active .bar1 { transform:translateY(7.5px) rotate(45deg); }
.nav-toggle.active .bar2 { opacity:0; transform:scaleX(0); }
.nav-toggle.active .bar3 { transform:translateY(-7.5px) rotate(-45deg); }

/* ── Overlay ───────────────────────────────────────────────────── */
.mobile-nav-overlay {
  display:none; position:fixed; inset:0; background:rgba(0,0,0,.52);
  z-index:10000; backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px);
}
.mobile-nav-overlay.visible { display:block; animation:fadeOverlay .28s ease forwards; }
@keyframes fadeOverlay { from{opacity:0} to{opacity:1} }

@media (max-width:900px) {
  .nav-toggle { display:flex; }
  .nav-links  { display:none !important; }

  /* ── Drawer ── */
  .mobile-nav-drawer {
    display:flex; flex-direction:column; position:fixed; top:0;
    width:min(86vw,340px); height:100%; background:#fff;
    z-index:10001; overflow-y:auto; overflow-x:hidden;
    transition:transform .4s cubic-bezier(.4,0,.2,1); will-change:transform;
  }
  [dir="rtl"] .mobile-nav-drawer { right:0; left:auto; transform:translateX(105%); box-shadow:-4px 0 36px rgba(0,0,0,.18); }
  [dir="ltr"] .mobile-nav-drawer { left:0; right:auto; transform:translateX(-105%); box-shadow:4px 0 36px rgba(0,0,0,.18); }
  .mobile-nav-drawer.open { transform:translateX(0) !important; }

  /* ════════════════════════════════════════════
     DRAWER HEADER — Premium brand wordmark
  ════════════════════════════════════════════ */
  .mobile-nav-drawer__header {
    display:flex; align-items:center; justify-content:center;
    padding:20px 18px; flex-shrink:0; position:sticky; top:0; z-index:2;
    background:linear-gradient(135deg, #001a45 0%, #003580 45%, #0060c7 100%);
    border-bottom:1px solid rgba(255,255,255,.08);
    position: relative;
  }
  .mobile-nav-drawer__logo {
    display:flex; align-items:center; gap:12px; text-decoration:none;
    flex: 1; justify-content: center;
  }
  /* Override the inline style height on the logo image */
  .mobile-nav-drawer__logo .drawer-logo-img,
  .drawer-logo-img {
    height: 72px !important;
    max-width: 200px !important;
    object-fit: contain;
  }

  /* Globe icon badge */
  .drawer-brand-icon {
    width:38px; height:38px; border-radius:11px; flex-shrink:0;
    background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.22);
    display:flex; align-items:center; justify-content:center;
    font-size:1.15rem; color:#fff;
  }
  .drawer-brand-text { display:flex; flex-direction:column; gap:1px; }
  .drawer-brand-name {
    font-size:.95rem; font-weight:900; color:#fff;
    letter-spacing:.01em; line-height:1.15;
  }
  .drawer-brand-tag {
    font-size:.66rem; font-weight:600; color:rgba(255,255,255,.6);
    text-transform:uppercase; letter-spacing:.08em;
  }
  .mobile-nav-drawer__close {
    width:36px; height:36px; border-radius:10px; cursor:pointer;
    background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.22);
    color:#fff; font-size:.95rem; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    transition:background .2s, transform .28s;
    position: absolute;
    inset-inline-end: 16px;
    top: 50%; transform: translateY(-50%);
  }
  .mobile-nav-drawer__close:hover { background:rgba(255,255,255,.25); transform: translateY(-50%) rotate(90deg); }

  /* ════════════════════════════════════════════
     CATEGORY CARDS — Real photo backgrounds
     Vivid colors, cinematic Ken Burns, no bounce
  ════════════════════════════════════════════ */
  .drawer-categories {
    display:grid; grid-template-columns:1fr 1fr;
    gap:10px; padding:14px; background:linear-gradient(160deg, #050d1a 0%, #001a3d 100%); flex-shrink:0;
    opacity:0; transform:translateY(-6px);
    transition:opacity .3s .04s ease, transform .3s .04s ease;
  }
  .mobile-nav-drawer.open .drawer-categories { opacity:1; transform:translateY(0); }

  .drawer-cat-card {
    position:relative; display:flex; flex-direction:column;
    align-items:flex-start; justify-content:flex-end;
    padding:14px 13px; border-radius:14px;
    text-decoration:none; min-height:118px; overflow:hidden; cursor:pointer;
    border:1.5px solid rgba(255,255,255,.1);
    transition:transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
  }
  .drawer-cat-card:active { transform:scale(.97); }
  .drawer-cat-card:hover  { transform:translateY(-3px) scale(1.01); box-shadow:0 16px 40px rgba(0,0,0,.5) !important; }

  /* Background div with Ken Burns */
  .drawer-cat-card .card-bg {
    position:absolute; inset:0; border-radius:13px;
    background-size:115%; background-position:center;
    animation:kenBurns 14s ease-in-out infinite alternate;
    transition:background-size .5s ease;
  }
  .drawer-cat-card:hover .card-bg { animation-play-state:paused; background-size:125%; }
  @keyframes kenBurns {
    0%   { background-size:115%; background-position:50% 50%; }
    100% { background-size:132%; background-position:60% 42%; }
  }
  /* Staggered start so cards animate independently */
  .drawer-cat-card--flights  .card-bg { animation-delay:0s; }
  .drawer-cat-card--hotels   .card-bg { animation-delay:-3.5s; }
  .drawer-cat-card--packages .card-bg { animation-delay:-7s; }
  .drawer-cat-card--lastmin  .card-bg { animation-delay:-10.5s; }

  /* High-quality Unsplash images — crisp travel photography */
  .drawer-cat-card--flights  .card-bg { background-image:url('https://images.unsplash.com/photo-1569154941061-e231b4725ef1?w=900&q=100&fit=crop&auto=format&sat=20&sharp=15'); }
  .drawer-cat-card--hotels   .card-bg { background-image:url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=900&q=100&fit=crop&auto=format&sat=15&sharp=15'); }
  .drawer-cat-card--packages .card-bg { background-image:url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=900&q=100&fit=crop&auto=format&sat=20&sharp=15'); }
  .drawer-cat-card--lastmin  .card-bg { background-image:url('https://images.unsplash.com/photo-1530521954074-e64f6810b32d?w=900&q=100&fit=crop&auto=format&sat=20&sharp=15'); }

  /* Dark cinematic overlay — sharper, more vivid */
  .drawer-cat-card::after {
    content:''; position:absolute; inset:0; border-radius:14px; z-index:1;
    background:linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.0) 100%);
  }

  /* Vivid color accent stripe at bottom */
  .drawer-cat-card::before {
    content:''; position:absolute; bottom:0; inset-inline:0; height:4px; z-index:3;
    border-radius:0 0 14px 14px;
  }
  .drawer-cat-card--flights::before  { background:linear-gradient(90deg,#38bdf8,#2563eb); box-shadow:0 0 16px rgba(56,189,248,.85); }
  .drawer-cat-card--hotels::before   { background:linear-gradient(90deg,#c084fc,#f472b6); box-shadow:0 0 16px rgba(192,132,252,.85); }
  .drawer-cat-card--packages::before { background:linear-gradient(90deg,#fb923c,#f59e0b); box-shadow:0 0 16px rgba(251,146,60,.85); }
  .drawer-cat-card--lastmin::before  { background:linear-gradient(90deg,#4ade80,#2dd4bf); box-shadow:0 0 16px rgba(74,222,128,.85); }

  /* Box shadows — vivid per-card */
  .drawer-cat-card--flights  { box-shadow:0 8px 32px rgba(37,99,235,.55); }
  .drawer-cat-card--hotels   { box-shadow:0 8px 32px rgba(192,132,252,.55); }
  .drawer-cat-card--packages { box-shadow:0 8px 32px rgba(251,146,60,.55); }
  .drawer-cat-card--lastmin  { box-shadow:0 8px 32px rgba(74,222,128,.55); }

  /* Gloss sweep — subtle, professional */
  .card-shine {
    position:absolute; inset:0; z-index:2; border-radius:13px; pointer-events:none;
    background:linear-gradient(110deg, transparent 36%, rgba(255,255,255,.09) 50%, transparent 64%);
    background-size:300% 100%; background-position:200% 0;
    animation:glossSweep 8s ease-in-out infinite;
  }
  .drawer-cat-card--hotels   .card-shine { animation-delay:2s; }
  .drawer-cat-card--packages .card-shine { animation-delay:4s; }
  .drawer-cat-card--lastmin  .card-shine { animation-delay:6s; }
  @keyframes glossSweep {
    0%,40%  { background-position:200% 0; }
    68%     { background-position:-100% 0; }
    100%    { background-position:-100% 0; }
  }

  /* Badge */
  .cat-badge {
    position:absolute; top:9px; inset-inline-end:9px; z-index:4;
    background:rgba(0,0,0,.4); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
    color:#fff; font-size:.58rem; font-weight:800; letter-spacing:.07em;
    padding:3px 8px; border-radius:20px;
    border:1px solid rgba(255,255,255,.2); white-space:nowrap; text-transform:uppercase;
  }
  /* Vivid badge accents */
  .drawer-cat-card--flights  .cat-badge { border-color:rgba(0,198,255,.5); color:#a5d8ff; }
  .drawer-cat-card--hotels   .cat-badge { border-color:rgba(168,85,247,.5); color:#e9d5ff; }
  .drawer-cat-card--packages .cat-badge { border-color:rgba(249,115,22,.5); color:#fed7aa; }
  .drawer-cat-card--lastmin  .cat-badge { border-color:rgba(34,197,94,.5); color:#bbf7d0; }

  /* Category icon */
  .cat-icon {
    position:relative; z-index:3; font-size:1.6rem; color:#fff; margin-bottom:6px;
    filter:drop-shadow(0 2px 10px rgba(0,0,0,.8));
  }
  /* Card text */
  .drawer-cat-card > span:last-child {
    position:relative; z-index:3; font-size:.82rem; font-weight:900;
    color:#fff; text-shadow:0 2px 8px rgba(0,0,0,.95); line-height:1.2;
  }

  /* ════════════════════════════════════════════
     NAV LINKS LIST — Redesigned bold style
  ════════════════════════════════════════════ */
  .nav-links-list { list-style:none; padding:6px 0 24px; margin:0; flex:1; background:linear-gradient(180deg, #f0f6ff 0%, #fafcff 60%, #fff 100%); }
  .nav-links-list > li { opacity:0; transition:opacity .3s ease, transform .3s ease; }
  [dir="rtl"] .nav-links-list > li { transform:translateX(18px); }
  [dir="ltr"] .nav-links-list > li { transform:translateX(-18px); }
  .mobile-nav-drawer.open .nav-links-list > li { opacity:1; transform:translateX(0); }
  .mobile-nav-drawer.open .nav-links-list > li:nth-child(1) { transition-delay:.08s; }
  .mobile-nav-drawer.open .nav-links-list > li:nth-child(2) { transition-delay:.14s; }
  .mobile-nav-drawer.open .nav-links-list > li:nth-child(3) { transition-delay:.20s; }
  .mobile-nav-drawer.open .nav-links-list > li:nth-child(4) { transition-delay:.26s; }
  .mobile-nav-drawer.open .nav-links-list > li:nth-child(5) { transition-delay:.32s; }
  .mobile-nav-drawer.open .nav-links-list > li:nth-child(6) { transition-delay:.38s; }
  .mobile-nav-drawer.open .nav-links-list > li:nth-child(7) { transition-delay:.44s; }

  /* Link base — upgraded */
  .nav-links-list > li > a {
    display:flex; align-items:center; gap:13px;
    padding:14px 20px; font-size:1rem; font-weight:800; color:#0f172a;
    text-decoration:none; border-bottom:1px solid #e8eef6;
    position:relative; transition:background .18s, color .18s, padding-inline-start .2s;
    letter-spacing:-.01em;
  }
  [dir="rtl"] .nav-links-list > li > a { flex-direction:row; justify-content:flex-start; }
  [dir="ltr"] .nav-links-list > li > a { flex-direction:row; justify-content:flex-start !important; }

  /* Accent bar — thicker, more vivid */
  .nav-links-list > li > a::before {
    content:''; position:absolute; inset-block:8px; inset-inline-start:0;
    width:4px; border-radius:0 4px 4px 0;
    background:linear-gradient(180deg,#f59e0b,#f97316);
    opacity:0; transform:scaleY(0); transition:opacity .18s, transform .2s;
  }
  .nav-links-list > li > a:hover::before { opacity:1; transform:scaleY(1); }
  .nav-links-list > li > a:hover { background:rgba(245,158,11,.07); color:#b45309; padding-inline-start:24px; }
  /* Icons — uniform professional blue, no colorful per-item overrides */
  .nav-links-list > li > a i:not(.dropdown-icon) {
    width:20px; height:20px;
    display:flex; align-items:center; justify-content:center;
    font-size:.88rem; color:var(--primary); flex-shrink:0;
    background: none;
    box-shadow: none;
  }

  /* Title wrap */
  .nav-links-list .nav-title-wrap { display:flex; align-items:center; gap:12px; flex:1; }
  [dir="rtl"] .nav-links-list .nav-title-wrap { flex-direction:row; }
  [dir="ltr"] .nav-links-list .nav-title-wrap { flex-direction:row; }

  /* Chevron */
  .nav-links-list .dropdown-icon { margin-inline-start:auto; font-size:.68rem; color:#94a3b8; flex-shrink:0; transition:transform .28s; }
  .nav-links-list .has-dropdown.active .dropdown-icon { transform:rotate(180deg); }

  /* Sub-menu — improved */
  .nav-links-list .dropdown-menu { display:none; list-style:none; margin:0; padding:4px 0; background:#f8fafc; border-inline-start:4px solid #f59e0b; margin-inline-start:20px; }
  .nav-links-list .has-dropdown.active .dropdown-menu { display:block; animation:subMenuIn .22s ease; }
  @keyframes subMenuIn { from{opacity:0;transform:translateY(-4px)} to{opacity:1;transform:translateY(0)} }
  .nav-links-list .dropdown-menu li a {
    display:flex; align-items:center; gap:10px; padding:11px 18px;
    font-size:.88rem; font-weight:700; color:#334155; text-decoration:none;
    border-bottom:1px solid #eef2f7; transition:color .15s, background .15s;
  }
  [dir="ltr"] .nav-links-list .dropdown-menu li a { justify-content:flex-start !important; }
  .nav-links-list .dropdown-menu li a:hover { color:#b45309; background:rgba(245,158,11,.06); }
  .nav-links-list .dropdown-menu li a i { width:18px; text-align:center; color:#0057b8; flex-shrink:0; }

  /* Favorites — keep red icon color, no background */
  .nav-links-list li a[href*="favorites"] i:not(.dropdown-icon) { color:#ef4444 !important; background:none !important; box-shadow:none !important; }
  .nav-links-list li a[href*="favorites"]:hover { background:rgba(239,68,68,.04); color:#dc2626; }

  /* Contact CTA */
  .nav-links-list li a[href*="contact.php"] {
    margin:14px 16px 10px; background:linear-gradient(135deg,#003580,#0057b8);
    color:#fff !important; border-radius:12px; padding:13px 20px;
    justify-content:center !important; font-size:.94rem; font-weight:800;
    border-bottom:none; box-shadow:0 5px 20px rgba(0,53,128,.35);
    overflow:hidden; flex-direction:row !important;
  }
  .nav-links-list li a[href*="contact.php"]::before { display:none; }
  .nav-links-list li a[href*="contact.php"] i:not(.dropdown-icon) {
    background: rgba(255,255,255,0.2) !important;
    box-shadow: none !important;
    color:#fff !important;
  }
  .nav-links-list li a[href*="contact.php"]:hover {
    background:linear-gradient(135deg,#002868,#0060c7) !important;
    padding-inline-start: 20px !important;
    color:#fff !important;
  }
}


/* ── Desktop CTA ─────────────────────────────────────────────────── */
.nav-cta-btn {
  display:inline-flex; align-items:center; gap:7px; padding:9px 18px;
  background:linear-gradient(135deg,#003580,#0057b8); color:#fff !important;
  font-weight:800; font-size:.88rem; border-radius:10px; text-decoration:none;
  position:relative; overflow:hidden; box-shadow:0 4px 16px rgba(0,53,128,.28);
  transition:transform .2s, box-shadow .2s; white-space:nowrap;
}
.nav-cta-btn:hover { transform:translateY(-2px); box-shadow:0 8px 26px rgba(0,53,128,.4); }

/* ── bottom-nav off ───────────────────────────────────────────────── */
.bottom-nav,.bottom-nav * { display:none !important; }

/* ══════════════════════════════════════════════════════════════
   LTR (English) COMPREHENSIVE — beats all hardcoded RTL rules
══════════════════════════════════════════════════════════════ */
[dir="ltr"] * { direction:ltr; }
[dir="ltr"] h1,[dir="ltr"] h2,[dir="ltr"] h3,
[dir="ltr"] h4,[dir="ltr"] h5,[dir="ltr"] h6 { text-align:left !important; }
[dir="ltr"] p, [dir="ltr"] li, [dir="ltr"] span,
[dir="ltr"] label { text-align:left !important; }
[dir="ltr"] .section-header  { text-align:left !important; }
[dir="ltr"] .section-header h2 { text-align:left !important; }
[dir="ltr"] .section-header h2::after { margin:10px 0 0 0 !important; }
[dir="ltr"] .section-sub     { text-align:left !important; }
[dir="ltr"] .section-title   { text-align:left !important; }
[dir="ltr"] input,[dir="ltr"] textarea,[dir="ltr"] select { direction:ltr !important; text-align:left !important; }
[dir="ltr"] input::placeholder,[dir="ltr"] textarea::placeholder { text-align:left !important; }
[dir="ltr"] .form-control    { direction:ltr !important; text-align:left !important; }
[dir="ltr"] .footer-col      { text-align:left !important; }
[dir="ltr"] .footer-links li a { justify-content:flex-start !important; }
[dir="ltr"] .nav-links-list > li > a { justify-content:flex-start !important; }
[dir="ltr"] .section-header-inline { direction:ltr !important; text-align:left !important; }

/* ═══════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}
.cookie-banner--visible {
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner--hiding {
  transform: translateY(110%) !important;
  opacity: 0;
  transition: transform .42s ease, opacity .38s ease;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -8px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* RTL layout */
[dir="rtl"] .cookie-banner__inner { direction: rtl; flex-direction: row; }
[dir="ltr"] .cookie-banner__inner { direction: ltr; flex-direction: row; }

/* Shield icon */
.cookie-banner__icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #003580, #0072ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  box-shadow: 0 4px 14px rgba(0, 114, 255, .35);
}

/* Text area */
.cookie-banner__body { flex: 1; min-width: 0; }

.cookie-banner__text {
  font-size: .82rem; line-height: 1.6;
  color: rgba(255, 255, 255, .75);
  margin: 0; display: inline;
  text-align: start;
}
[dir="ltr"] .cookie-banner__text { text-align: left !important; }

.cookie-banner__link {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .18s;
}
.cookie-banner__link:hover { color: #93c5fd; }

/* Accept button */
.cookie-banner__btn {
  flex-shrink: 0;
  padding: 10px 26px;
  background: linear-gradient(135deg, #003580, #0072ff);
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 114, 255, .35);
  transition: transform .18s, box-shadow .18s, background .18s;
  position: relative; overflow: hidden;
}
.cookie-banner__btn::after {
  content: '';
  position: absolute; top: -50%; left: -60%;
  width: 35%; height: 200%;
  background: rgba(255,255,255,.18);
  transform: skewX(-20deg);
  animation: cookieBtnShimmer 3s 1.5s infinite;
}
@keyframes cookieBtnShimmer {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}
.cookie-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 114, 255, .45);
}
.cookie-banner__btn:active { transform: scale(.97); }

/* Mobile */
@media (max-width: 600px) {
  .cookie-banner__inner  { padding: 14px 16px; gap: 12px; }
  .cookie-banner__icon   { display: none; }
  .cookie-banner__text   { font-size: .8rem; }
  .cookie-banner__btn    { width: 100%; padding: 12px; text-align: center; }
}

/* ═══════════════════════════════════════════
   SEARCH ENGINE — Orange/Amber glowing pulse
   (supplements existing hero-search-unified rules)
═══════════════════════════════════════════ */
@keyframes searchGlowPulse {
  0%, 100% { box-shadow:
    0 0 0 4px rgba(245,158,11,0.55),
    0 0 0 8px rgba(245,158,11,0.2),
    0 0 36px rgba(245,158,11,0.35),
    0 8px 40px rgba(0,0,0,0.32); }
  50%       { box-shadow:
    0 0 0 4px rgba(245,158,11,0.75),
    0 0 0 10px rgba(245,158,11,0.28),
    0 0 52px rgba(245,158,11,0.55),
    0 8px 40px rgba(0,0,0,0.32); }
}
/* Desktop: animated glow on the unified bar itself */
@media (min-width: 901px) {
  .hero-search-unified {
    animation: searchGlowPulse 3s ease-in-out 1.2s infinite !important;
  }
}
/* Mobile: animated glow on the destination input wrapper */
@media (max-width: 900px) {
  @keyframes mobileSearchGlow {
    0%, 100% { box-shadow:
      0 0 0 3px rgba(245,158,11,0.5),
      0 0 0 6px rgba(245,158,11,0.18),
      0 0 22px rgba(245,158,11,0.3),
      0 4px 18px rgba(0,0,0,0.18); }
    50% { box-shadow:
      0 0 0 3px rgba(245,158,11,0.72),
      0 0 0 8px rgba(245,158,11,0.26),
      0 0 34px rgba(245,158,11,0.48),
      0 4px 18px rgba(0,0,0,0.18); }
  }
  .hero-search-unified .search-box-wrapper {
    animation: mobileSearchGlow 3s ease-in-out 1.4s infinite;
  }
}

/* Visually hidden utility (for accessible headings) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ====================================================
   GUIDES DISCOVER SLIDER — גלה יעדים וחופשות
   ==================================================== */
.guides-discover-section {
  padding: 44px 0 52px;
  background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
}
.guides-discover-section .container {
  max-width: 1480px;
  padding: 0 16px;
}

/* ── Slider wrapper with arrows ── */
.gd-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ── Arrow buttons ── */
.gd-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #fff;
  color: #003580;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 18px rgba(0,53,128,0.10);
  z-index: 5;
  font-family: inherit;
}
.gd-arrow:hover:not(:disabled) {
  background: linear-gradient(135deg, #003580, #0057b8);
  color: #fff;
  border-color: #003580;
  box-shadow: 0 8px 28px rgba(0,53,128,0.32);
  transform: scale(1.1);
}
.gd-arrow:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
  box-shadow: none;
}
/* RTL: flip arrow icons visually */
[dir="rtl"] .gd-arrow-prev i,
[dir="rtl"] .gd-arrow-next i {
  transform: scaleX(-1);
}


/* ── Scroll track ── */
.gd-track {
  flex: 1;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px 18px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.gd-track::-webkit-scrollbar { display: none; }

/* ── Individual card ── */
.gd-card {
  flex: 0 0 calc(16.666% - 11px);
  min-width: 155px;
  max-width: 250px;
  scroll-snap-align: start;
}

.gd-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gd-card-link:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(0,53,128,0.18);
}

/* ── Image area ── */
.gd-card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.gd-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* 5-second hover zoom animation */
  transition: transform 5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gd-card-link:hover .gd-card-img img {
  transform: scale(1.14) translateY(-6px) translateX(3px);
}

/* ── Gradient overlay ── */
.gd-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.15) 40%,
    transparent 100%);
  pointer-events: none;
}

/* ── Country/city badge ── */
/* .gd-card-badge removed */

/* ── 2-line description ON the image ── */
.gd-card-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 12px 14px;
  z-index: 3;
  pointer-events: none;
}
.gd-desc-1, /* .gd-desc-2 removed */
.gd-desc-1 {
  font-family: 'Heebo', sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.65),
    0 2px 8px rgba(0,0,0,0.45);
}
/* .gd-desc-2 removed — single description line */

/* ── Card footer: title + button ── */
/* .gd-card-footer removed — text is now on image */
.gd-card-title {
  font-family: 'Heebo', sans-serif;
  font-size: 1.0rem;
  font-weight: 800; /* ExtraBold */
  color: #fff;
  line-height: 1.3;
  margin: 0 0 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.60),
    0 2px 10px rgba(0,0,0,0.40);
}

/* ── "View Guide" button ── */
/* .gd-view-btn removed */

/* ── Dots ── */
/* .gd-dots removed */
/* .gd-dot removed */


/* ── Responsive ── */
@media (max-width: 900px) {
  .gd-card {
    flex: 0 0 calc(40% - 10px);
    max-width: 210px;
  }
}

@media (max-width: 768px) {
  .guides-discover-section .container { overflow: visible; }
  .gd-slider-wrap { gap: 0; }
  .gd-arrow { display: none; }
  .gd-track {
    margin: 0 -16px;
    padding: 8px 16px 16px;
    gap: 10px;
  }
  .gd-card {
    flex: 0 0 46vw;
    max-width: 200px;
    min-width: 150px;
  }
  .gd-card-img { height: 320px; }
  .gd-card-gradient {
    background: linear-gradient(to top,
      rgba(0,0,0,0.82) 0%,
      rgba(0,0,0,0.25) 45%,
      transparent 100%);
  }
  .gd-card-text-overlay {
    padding: 16px 10px 14px;
  }
  .gd-card-title { font-size: 0.90rem; }
  .gd-desc-1 { font-size: 0.72rem; color: #fff; }
}

@media (max-width: 480px) {
  .gd-card-img { height: 300px; }
  .gd-card-title { font-size: 0.88rem; }
  .gd-desc-1 { font-size: 0.70rem; color: #fff; }
}


/* Guides discover section — centered heading */
.guides-discover-header {
  text-align: center;
  margin-bottom: 28px;
}
.guides-discover-header {
  text-align: center !important;
}
.guides-discover-header h2 {
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  font-weight: 900;
  color: #003580;
  margin: 0 auto;
  line-height: 1.3;
  text-align: center !important;
  width: 100%;
  display: block;
}

