/* ===== TripZoon styles ===== */
:root {
  --primary: #F47B20;
  --primary-dark: #E5562A;
  --primary-soft: #FEEBD8;
  --secondary: #1B5E7E;
  --secondary-dark: #114155;
  --gold: #F2B43C;
  --navy: #1B3A6B;
  --cream: #FFF7EC;
  --ink: #1A1A1A;
  --ink-2: #4a4a4a;
  --line: #ECE3D4;
  --shadow-sm: 0 4px 14px rgba(14,42,63,.06);
  --shadow-md: 0 10px 30px rgba(14,42,63,.10);
  --shadow-lg: 0 20px 50px rgba(14,42,63,.16);
  --radius: 18px;
  --radius-sm: 12px;
}

html, body { background: var(--cream); color: var(--ink); }
body {
  font-family: 'Cairo', 'Poppins', system-ui, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
body.lang-en { font-family: 'Poppins', 'Cairo', system-ui, sans-serif; direction: ltr; text-align: left; }
body.lang-ar { direction: rtl; text-align: right; }

h1,h2,h3,h4,h5 { font-weight: 800; letter-spacing: -.01em; color: var(--navy); }
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: .25rem; }
.section-eyebrow {
  display: inline-block;
  font-size: .82rem; font-weight: 700; color: var(--primary);
  background: var(--primary-soft); padding: .35rem .85rem; border-radius: 99px;
  margin-bottom: .75rem;
}
.section-sub { color: var(--ink-2); margin-bottom: 2rem; }

a { color: var(--secondary); }
a:hover { color: var(--primary); text-decoration: none; }

/* ===== Buttons ===== */
.btn { font-weight: 700; border-radius: 999px; padding: .65rem 1.4rem; transition: all .25s ease; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none; color: #fff;
  box-shadow: 0 6px 18px rgba(244,123,32,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(244,123,32,.4); background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-secondary { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--secondary); border-color: var(--secondary); }
.btn-outline-primary { color: var(--primary); border: 2px solid var(--primary); background: transparent; }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 1020;
  background: rgba(255,247,236,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand-logo {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--navy);
}
.brand-logo .logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 16px rgba(244,123,32,.35);
}
.brand-logo .brand-name { font-weight: 900; font-size: 1.35rem; letter-spacing: -.02em; }
.brand-logo .brand-name .accent { color: var(--primary); }

.site-nav { display: flex; gap: .25rem; }
.site-nav .nav-link {
  color: var(--navy); font-weight: 600; padding: .5rem .95rem !important;
  border-radius: 99px; transition: all .2s;
}
.site-nav .nav-link:hover { color: var(--primary); background: var(--primary-soft); }
.site-nav .nav-link.active { color: var(--primary); background: var(--primary-soft); }

.lang-toggle, .icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: inline-grid; place-items: center;
  font-weight: 700; color: var(--navy); transition: all .2s;
  cursor: pointer;
}
.lang-toggle:hover, .icon-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.lang-toggle { font-size: .8rem; width: auto; padding: 0 .85rem; border-radius: 99px; }

.mobile-menu-btn { display: none; }
@media (max-width: 991px) {
  .site-nav { display: none; }
  .mobile-menu-btn { display: inline-grid; }
  .site-nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; right: 0; left: 0;
    background: #fff; padding: 1rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
}

/* ===== Hero ===== */
.hero {
  position: relative; height: 640px; overflow: hidden;
  border-radius: 0 0 32px 32px;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.1s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,63,.15) 0%, rgba(14,42,63,.55) 70%, rgba(14,42,63,.75) 100%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
.hero-copy { display: none; }
.hero-copy.active { display: block; animation: heroIn .7s ease; }
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.16); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: .45rem 1rem; border-radius: 99px;
  font-size: .85rem; font-weight: 600;
  width: fit-content; margin-bottom: 1rem;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(244,123,32,.3); }
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
  margin-bottom: .8rem; line-height: 1.1; max-width: 720px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero p { font-size: 1.15rem; max-width: 560px; opacity: .95; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.hero-nav {
  position: absolute; bottom: 32px; z-index: 3;
  display: flex; align-items: center; gap: 1rem;
}
body.lang-ar .hero-nav { right: 32px; }
body.lang-en .hero-nav { left: 32px; }
.hero-dots { display: flex; gap: .5rem; }
.hero-dot {
  width: 32px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  transition: all .3s;
}
.hero-dot.active { background: var(--primary); width: 48px; }
.hero-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; cursor: pointer; backdrop-filter: blur(8px);
  display: grid; place-items: center; transition: all .2s;
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.05); }

/* Hero slide placeholders (gradient + city label) */
.hero-slide.slide-1 { background: linear-gradient(135deg, #1B5E7E 0%, #0E8C8E 50%, #F2B43C 100%); }
.hero-slide.slide-2 { background: linear-gradient(135deg, #F47B20 0%, #E5562A 50%, #8B2A1A 100%); }
.hero-slide.slide-3 { background: linear-gradient(135deg, #0E2A3F 0%, #1B5E7E 100%); }
.hero-slide .slide-label {
  position: absolute; bottom: 32px; opacity: .35;
  font-size: 8rem; font-weight: 900; color: #fff;
  letter-spacing: -.03em; line-height: 1; pointer-events: none;
}
body.lang-ar .hero-slide .slide-label { left: 32px; }
body.lang-en .hero-slide .slide-label { right: 32px; }

/* ===== Search bar ===== */
.search-wrap {
  position: relative; z-index: 10;
  margin-top: -56px; margin-bottom: 4rem;
}
.search-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: .5rem; align-items: stretch;
}
.search-field {
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  transition: background .2s;
  cursor: text;
}
.search-field:hover { background: var(--cream); }
.search-field label {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--ink-2); margin-bottom: .25rem;
}
.search-field input, .search-field select {
  width: 100%; border: none; background: transparent;
  font-size: .98rem; font-weight: 600; color: var(--navy);
  outline: none; padding: 0.2rem 0;
}
.search-field + .search-field { border-right: 1px solid var(--line); padding-right: 1rem; }
body.lang-en .search-field + .search-field { border-right: none; border-left: 1px solid var(--line); padding-right: 1rem; padding-left: 1rem; }
.search-card .btn-primary {
  border-radius: var(--radius-sm); padding: 0 1.6rem;
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .search-card { grid-template-columns: 1fr 1fr; }
  .search-field + .search-field { border: none; padding-right: 1rem; padding-left: 1rem; }
  .search-card .btn-primary { grid-column: 1 / -1; padding: .9rem; }
}

/* ===== Section / containers ===== */
.section { padding: 4rem 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2rem; gap: 2rem; flex-wrap: wrap;
}
.section-head .right { text-align: end; }

/* ===== Destination tiles ===== */
.dest-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.dest-grid > :first-child { grid-row: 1 / span 2; }
.dest-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: transform .3s;
  background-size: cover; background-position: center;
}
.dest-tile:hover { transform: translateY(-4px); }
.dest-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,42,63,.85) 100%);
}
.dest-tile .tile-content {
  position: absolute; bottom: 0; padding: 1.25rem; color: #fff; z-index: 2;
  width: 100%;
}
.dest-tile h4 { color: #fff; margin: 0; font-size: 1.4rem; }
.dest-tile .tile-meta { display: flex; justify-content: space-between; opacity: .9; font-size: .88rem; margin-top: .25rem; }
.dest-tile-1 { background: linear-gradient(135deg, #0E8C8E, #1B5E7E); }
.dest-tile-2 { background: linear-gradient(135deg, #F47B20, #E5562A); }
.dest-tile-3 { background: linear-gradient(135deg, #F2B43C, #E5562A); }
.dest-tile-4 { background: linear-gradient(135deg, #1B5E7E, #0E2A3F); }
.dest-tile-5 { background: linear-gradient(135deg, #8B2A1A, #F47B20); }
@media (max-width: 767px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .dest-grid > :first-child { grid-row: auto; grid-column: 1 / -1; }
}

/* ===== Cards (hotel / package) ===== */
.card-shell {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all .3s; height: 100%;
  display: flex; flex-direction: column;
}
.card-shell:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media {
  position: relative; height: 220px;
  background-size: cover; background-position: center;
}
.card-media::after {
  content: 'صورة'; position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.4); font-size: .8rem;
  font-family: 'Cairo', monospace; letter-spacing: .1em;
}
.card-media-1 { background: linear-gradient(135deg, #0E8C8E, #1B5E7E); }
.card-media-2 { background: linear-gradient(135deg, #F47B20, #F2B43C); }
.card-media-3 { background: linear-gradient(135deg, #1B5E7E, #0E2A3F); }
.card-media-4 { background: linear-gradient(135deg, #E5562A, #8B2A1A); }
.card-media-5 { background: linear-gradient(135deg, #F2B43C, #F47B20); }
.card-media-6 { background: linear-gradient(135deg, #0E2A3F, #1B5E7E); }
.card-media-7 { background: linear-gradient(135deg, #0E8C8E, #F2B43C); }
.card-media-8 { background: linear-gradient(135deg, #8B2A1A, #E5562A); }

.card-badge {
  position: absolute; top: 12px; z-index: 2;
  background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 800;
  padding: .35rem .7rem; border-radius: 99px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
body.lang-ar .card-badge { right: 12px; }
body.lang-en .card-badge { left: 12px; }
.card-badge.hot { background: var(--primary); color: #fff; }

.card-fav {
  position: absolute; top: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none;
  display: grid; place-items: center; cursor: pointer;
  color: var(--ink-2); transition: all .2s;
}
body.lang-ar .card-fav { left: 12px; }
body.lang-en .card-fav { right: 12px; }
.card-fav:hover, .card-fav.on { color: var(--primary); transform: scale(1.1); }

.card-body { padding: 1.1rem 1.2rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.card-loc { color: var(--ink-2); font-size: .85rem; margin-bottom: .3rem; display: flex; align-items: center; gap: .35rem; }
.card-loc svg { color: var(--primary); }
.card-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.card-stars { color: var(--gold); font-size: .9rem; margin-bottom: .35rem; }
.card-rating { display: flex; align-items: center; gap: .35rem; font-size: .85rem; color: var(--ink-2); margin-bottom: .8rem; }
.card-rating .score { background: var(--secondary); color: #fff; padding: .15rem .5rem; border-radius: 6px; font-weight: 700; font-size: .8rem; }
.card-feats { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .85rem; }
.card-feats .chip {
  background: var(--cream); color: var(--ink-2);
  font-size: .72rem; padding: .25rem .55rem; border-radius: 6px;
}
.card-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: .5rem; border-top: 1px dashed var(--line); }
.price { display: flex; flex-direction: column; }
.price .old { font-size: .8rem; color: var(--ink-2); text-decoration: line-through; }
.price .num { font-size: 1.35rem; font-weight: 900; color: var(--primary); line-height: 1; }
.price .per { font-size: .75rem; color: var(--ink-2); }
.card-foot .btn { padding: .45rem 1rem; font-size: .85rem; }

/* ===== Slider (hotels / packages) ===== */
.slider-wrap { position: relative; }
.slider-track {
  display: flex; gap: 1.2rem;
  transition: transform .55s cubic-bezier(.23,1,.32,1);
}
.slider-viewport { overflow: hidden; padding: .5rem; margin: -.5rem; }
.slider-slide { flex: 0 0 calc(25% - .9rem); min-width: 0; }
@media (max-width: 1199px) { .slider-slide { flex: 0 0 calc(33.333% - .8rem); } }
@media (max-width: 767px)  { .slider-slide { flex: 0 0 calc(50% - .6rem); } }
@media (max-width: 575px)  { .slider-slide { flex: 0 0 100%; } }

.slider-controls { display: flex; gap: .4rem; }
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  color: var(--navy); cursor: pointer;
  display: grid; place-items: center; transition: all .2s;
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.slider-arrow:disabled { opacity: .4; cursor: not-allowed; }

/* ===== Offers band ===== */
.offers-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--secondary) 100%);
  border-radius: 28px; padding: 3rem; color: #fff;
  position: relative; overflow: hidden;
}
.offers-band::before, .offers-band::after {
  content: ''; position: absolute; border-radius: 50%;
}
.offers-band::before {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(244,123,32,.4), transparent 60%);
  top: -80px; right: -80px;
}
.offers-band::after {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(242,180,60,.3), transparent 60%);
  bottom: -60px; left: -60px;
}
.offers-band > * { position: relative; z-index: 2; }
.offers-band h2 { color: #fff; font-size: 2.2rem; }
.offers-band p { opacity: .9; max-width: 480px; }
.countdown { display: flex; gap: .8rem; margin: 1.5rem 0; }
.countdown-box {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px; padding: .8rem 1rem; min-width: 72px; text-align: center;
}
.countdown-box .num { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.countdown-box .lbl { font-size: .72rem; opacity: .75; margin-top: .25rem; }

/* ===== Features strip ===== */
.feature-tile {
  background: #fff; border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: all .25s; height: 100%;
}
.feature-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.feature-tile h5 { font-size: 1.05rem; margin-bottom: .3rem; }
.feature-tile p { color: var(--ink-2); font-size: .9rem; margin: 0; }

/* ===== Hotels page filters ===== */
.filters-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.5rem;
  position: sticky; top: 90px;
}
.filter-group { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border-bottom: none; }
.filter-group h6 { font-size: .92rem; font-weight: 800; margin-bottom: .8rem; color: var(--navy); }
.filter-check {
  display: flex; align-items: center; gap: .5rem; cursor: pointer;
  padding: .35rem 0; font-size: .92rem; color: var(--ink-2);
}
.filter-check input { accent-color: var(--primary); width: 16px; height: 16px; }
.filter-check .count { color: #aaa; font-size: .8rem; }
.filter-check:hover { color: var(--navy); }
.range-slider { -webkit-appearance: none; width: 100%; height: 4px; background: var(--line); border-radius: 4px; outline: none; }
.range-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); cursor: pointer; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--primary); }
.price-range-values { display: flex; justify-content: space-between; font-size: .82rem; color: var(--ink-2); margin-top: .5rem; }

.sort-bar {
  background: #fff; border-radius: var(--radius);
  padding: .75rem 1.2rem; box-shadow: var(--shadow-sm);
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.2rem; flex-wrap: wrap; gap: .8rem;
}
.sort-bar select {
  border: 1px solid var(--line); border-radius: 10px;
  padding: .45rem .8rem .6rem; font-size: .9rem; font-weight: 600;
  background: #fff; color: var(--navy); cursor: pointer; line-height: 1.5;
}

/* ===== Modal ===== */
.tz-modal-backdrop {
  position: fixed; inset: 0; background: rgba(14,42,63,.6);
  backdrop-filter: blur(6px); z-index: 1050;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.tz-modal-backdrop.show { display: flex; animation: fadeIn .25s; }
.tz-modal {
  background: #fff; border-radius: 24px;
  max-width: 880px; width: 100%;
  max-height: 90vh; overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  animation: slideUp .35s cubic-bezier(.23,1,.32,1);
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } }
.tz-modal-media {
  height: 260px; position: relative;
  background-size: cover; background-position: center;
}
.tz-modal-media .close-btn {
  position: absolute; top: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: none;
  display: grid; place-items: center; cursor: pointer;
  color: var(--navy);
}
body.lang-ar .tz-modal-media .close-btn { left: 16px; }
body.lang-en .tz-modal-media .close-btn { right: 16px; }
.tz-modal-body { padding: 1.8rem; overflow-y: auto; }
.tz-modal-body h3 { font-size: 1.6rem; margin-bottom: .35rem; }
.itinerary { margin-top: 1.2rem; }
.itinerary-day {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
}
.itinerary-day:last-child { border-bottom: none; }
.day-num {
  flex: 0 0 56px; height: 56px; border-radius: 14px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
  font-weight: 800; font-size: .78rem; text-align: center; line-height: 1.1;
}
.day-num .n { font-size: 1.4rem; }
.itinerary-day h6 { margin-bottom: .25rem; font-size: 1rem; }
.itinerary-day p { color: var(--ink-2); font-size: .9rem; margin: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy); color: #cbd5e0;
  padding: 4rem 0 1.5rem; margin-top: 5rem;
}
.site-footer h6 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; font-weight: 800; }
.site-footer a { color: #cbd5e0; display: block; padding: .25rem 0.6rem; font-size: .92rem; }
.site-footer a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; margin-top: 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .85rem;
}
.social-row { display: flex; gap: .6rem; margin-top: 1rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  display: grid; place-items: center; transition: all .2s;
}
.social-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ===== Page transitions ===== */
.page { display: none; }
.page.active { display: block; animation: pageIn .4s ease; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } }

/* ===== Inner page hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--secondary) 100%);
  color: #fff; padding: 3.5rem 0 4.5rem;
  position: relative; overflow: hidden;
  border-radius: 0 0 28px 28px;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(244,123,32,.3), transparent 60%);
  top: -100px; opacity: .8;
}
body.lang-ar .page-hero::before { left: -100px; }
body.lang-en .page-hero::before { right: -100px; }
.page-hero h1 { color: #fff; font-size: 2.5rem; }
.page-hero .breadcrumb-trail { opacity: .8; font-size: .9rem; }
.page-hero .breadcrumb-trail span + span::before { content: '›'; margin: 0 .5rem; opacity: .5; }

/* ===== Contact ===== */
.contact-card {
  background: #fff; border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all .25s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon {
  flex: 0 0 48px; height: 48px; border-radius: 14px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
}
.contact-card h6 { margin-bottom: .2rem; font-size: 1rem; }
.contact-card p { margin: 0; font-size: .9rem; color: var(--ink-2); }

.form-control-tz {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: .8rem 1rem .95rem; font-size: .95rem; background: #fff;
  transition: all .2s; font-family: inherit; line-height: 1.5;
}
.form-control-tz:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(244,123,32,.12); }
.form-label-tz { font-weight: 700; font-size: .88rem; margin-bottom: .35rem; color: var(--navy); }

/* Override Bootstrap form-control for Arabic fonts */
.form-control, select.form-control { padding-top: 0.5rem; padding-bottom: 0.65rem; line-height: 1.5; height: auto; }

/* ===== About ===== */
.stat-card {
  text-align: center; padding: 1.5rem 1rem;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-lbl { color: var(--ink-2); margin-top: .35rem; font-size: .9rem; font-weight: 600; }

/* ===== Toast ===== */
.tz-toast {
  position: fixed; bottom: 24px; z-index: 2000;
  background: var(--navy); color: #fff;
  padding: .85rem 1.4rem; border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .6rem;
  transform: translateY(120%); transition: transform .4s cubic-bezier(.23,1,.32,1);
  font-weight: 600;
}
body.lang-ar .tz-toast { left: 24px; }
body.lang-en .tz-toast { right: 24px; }
.tz-toast.show { transform: translateY(0); }
.tz-toast .check { color: var(--primary); }

/* ===== Utilities ===== */
.divider-dot { color: var(--line); margin: 0 .35rem; }
.text-primary-tz { color: var(--primary) !important; }
.bg-cream { background: var(--cream); }

/* RTL: flip directional arrow icons so they point the right way */
body.lang-ar .hero-arrow svg,
body.lang-ar .slider-arrow svg,
body.lang-ar .breadcrumb-trail span + span::before { transform: scaleX(-1); }
body.lang-ar .breadcrumb-trail span + span::before { display: inline-block; }

/* Hide scrollbars on slider */
.slider-viewport::-webkit-scrollbar { display: none; }

/* ===== Bilingual inline spans ===== */
/* Each text node: <span class="ar">عربي</span><span class="en">English</span> */
body.lang-ar .en { display: none !important; }
body.lang-en .ar { display: none !important; }

/* ===== Detail page ===== */
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: .6rem;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.detail-gallery .g-item {
  background-size: cover; background-position: center;
  position: relative; cursor: pointer; transition: transform .3s;
}
.detail-gallery .g-item:hover { transform: scale(1.02); }
.detail-gallery .g-item:first-child { grid-row: 1 / span 2; min-height: 380px; }
.detail-gallery .g-item::after {
  content: 'صورة'; position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.4); font-size: .85rem;
  font-family: 'Cairo', monospace; letter-spacing: .1em;
}
body.lang-en .detail-gallery .g-item::after { content: 'photo'; }
.detail-gallery .g-more {
  position: absolute; inset: 0; background: rgba(0,0,0,.4);
  display: grid; place-items: center; color: #fff;
  font-weight: 700; font-size: 1.1rem;
}
@media (max-width: 767px) {
  .detail-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 110px 110px; }
  .detail-gallery .g-item:first-child { grid-column: 1 / -1; grid-row: 1; min-height: 220px; }
}

.detail-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.detail-head h1 { font-size: 2rem; margin-bottom: .35rem; }
.detail-head .meta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; color: var(--ink-2); font-size: .92rem; }
.detail-head .meta-row .score { background: var(--secondary); color: #fff; padding: .25rem .55rem; border-radius: 6px; font-weight: 700; }

.detail-block {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.5rem 1.8rem; margin-bottom: 1.2rem;
}
.detail-block h4 { font-size: 1.2rem; margin-bottom: 1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.detail-block p { color: var(--ink-2); line-height: 1.9; }

.amen-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem;
}
@media (max-width: 575px) { .amen-grid { grid-template-columns: 1fr; } }
.amen-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem .9rem; background: var(--cream); border-radius: 12px;
  font-size: .92rem; font-weight: 600; color: var(--navy);
}
.amen-item .icon-bx {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
}

.room-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px dashed var(--line); gap: 1rem;
}
.room-row:last-child { border-bottom: none; }
.room-row h6 { margin-bottom: .25rem; }
.room-row .meta { color: var(--ink-2); font-size: .85rem; }
.room-row .room-price { text-align: end; }
.room-row .room-price .num { font-size: 1.2rem; font-weight: 900; color: var(--primary); }
.room-row .room-price .per { display: block; font-size: .72rem; color: var(--ink-2); }

.map-placeholder {
  height: 280px; border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(27,94,126,.12), rgba(244,123,32,.08)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(27,94,126,.06) 16px 17px),
    repeating-linear-gradient(-45deg, transparent 0 16px, rgba(244,123,32,.06) 16px 17px);
  display: grid; place-items: center;
  color: var(--secondary); font-weight: 700;
  border: 1px solid var(--line);
}

.review-strip {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.2rem; background: linear-gradient(135deg, var(--secondary), var(--navy));
  color: #fff; border-radius: var(--radius); margin-bottom: 1rem;
}
.review-strip .big-score {
  font-size: 2.6rem; font-weight: 900; line-height: 1;
}
.review-strip .label { font-weight: 700; }
.review-strip .sub { opacity: .85; font-size: .85rem; }

.review-bars { flex: 1; display: flex; flex-direction: column; gap: .35rem; }
.review-bar {
  display: flex; align-items: center; gap: .6rem; font-size: .82rem;
}
.review-bar .label-w { width: 80px; opacity: .9; }
.review-bar .bar-w { flex: 1; height: 6px; background: rgba(255,255,255,.18); border-radius: 4px; overflow: hidden; }
.review-bar .bar-fill { height: 100%; background: var(--primary); border-radius: 4px; }

.booking-widget {
  position: sticky; top: 90px;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 1.5rem;
}
.bw-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.bw-price .num { font-size: 1.8rem; font-weight: 900; color: var(--primary); }
.bw-price .per { color: var(--ink-2); font-size: .85rem; }
.bw-price .old { color: var(--ink-2); text-decoration: line-through; font-size: .9rem; }
.bw-field { padding: .65rem .9rem; border: 1.5px solid var(--line); border-radius: 12px; margin-bottom: .6rem; }
.bw-field label { display: block; font-size: .75rem; font-weight: 700; color: var(--ink-2); margin-bottom: .15rem; }
.bw-field input, .bw-field select { border: none; background: transparent; width: 100%; font-weight: 600; color: var(--navy); outline: none; padding: 0.2rem 0; }
.bw-summary { padding: 1rem 0; border-top: 1px dashed var(--line); margin-top: .8rem; }
.bw-summary .row-line { display: flex; justify-content: space-between; font-size: .9rem; color: var(--ink-2); padding: .2rem 0; }
.bw-summary .total { font-weight: 900; color: var(--navy); font-size: 1.05rem; padding-top: .5rem; margin-top: .5rem; border-top: 1px solid var(--line); }
.bw-summary .total .price-t { color: var(--primary); }

.tag {
  display: inline-block; font-size: .78rem; font-weight: 700;
  padding: .25rem .65rem; border-radius: 99px; background: var(--primary-soft); color: var(--primary);
  margin-right: .35rem; margin-left: .35rem;
}

/* Itinerary on detail page */
.detail-block .itinerary-day .day-num { background: var(--primary); color: #fff; }
.detail-block .itinerary-day .day-num span:last-child { opacity: .8; }

/* Clickable card title link */
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--primary); }

/* Empty state */
.empty-state {
  background: #fff; border-radius: var(--radius);
  padding: 3rem 2rem; text-align: center; color: var(--ink-2);
  border: 2px dashed var(--line);
}
