/* ==========================================================
   Arabian Adventure Safari — Desert Safari
   Typography: Fraunces (display) + Manrope (UI/body)
   Palette: deep night blue, desert gold, warm sand
   ========================================================== */

:root {
  --night: #14202e;        /* deep night blue */
  --night-2: #1d2d40;
  --gold: #d99a2b;         /* desert gold */
  --gold-dark: #b87e17;
  --sand: #f7f1e6;         /* warm sand background */
  --sand-2: #efe5d2;
  --white: #ffffff;
  --ink: #2b2b26;          /* body text */
  --muted: #6e6a5e;
  --green: #1eaa5c;        /* WhatsApp */
  --green-dark: #158a49;
  --radius: 18px;
  --shadow-sm: 0 4px 14px rgba(20, 32, 46, .08);
  --shadow-md: 0 14px 40px rgba(20, 32, 46, .14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--night); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h2 span { color: var(--gold); font-style: italic; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-dark);
}
.section-eyebrow.light { color: var(--gold); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-sub { color: var(--muted); margin-top: .9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); box-shadow: 0 8px 22px rgba(217, 154, 43, .38); }
.btn-gold:hover { box-shadow: 0 12px 30px rgba(217, 154, 43, .5); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--white); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }

/* ---------- Topbar ---------- */
.topbar { background: var(--night); color: rgba(255,255,255,.82); font-size: .8rem; padding: .45rem 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar i { color: var(--gold); margin-right: .35rem; }
.topbar-links { display: flex; gap: 1.4rem; }
.topbar-links a:hover { color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 241, 230, .94); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20,32,46,.07);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; }

.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: #fbf7ef;
  color: #14202e; font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(217,154,43,.22);
  border: 1.5px solid rgba(184,124,28,.28);
  transition: transform .3s ease;
}
.brand:hover .brand-mark { transform: rotate(12deg) scale(1.05); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 4px; }
.brand-text { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--night); line-height: 1.05; display: flex; flex-direction: column; }
.brand-text em { font-style: normal; font-size: .72rem; color: var(--gold-dark); font-weight: 700; letter-spacing: .25em; text-transform: uppercase; margin-top: .15rem; }
.brand.light .brand-text { color: var(--white); }
.brand.light .brand-mark { background: #fbf7ef; border-color: rgba(255,255,255,.55); color: #14202e; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a { font-weight: 600; font-size: .92rem; color: var(--night); position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s ease;
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--green); color: var(--white) !important; padding: .6rem 1.2rem; border-radius: 999px; transition: background .25s ease; }
.nav-cta:hover { background: var(--green-dark); }

/* ---------- Dropdown Menu ---------- */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: .35rem; cursor: pointer; text-decoration: none; }
.nav-dropdown-toggle i { font-size: .75rem; transition: transform .25s ease; }
.nav-dropdown:hover .nav-dropdown-toggle i { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border-radius: 12px; padding: .6rem 0;
  box-shadow: 0 10px 30px rgba(20,32,46,.15); border: 1px solid rgba(20,32,46,.08);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.dropdown-menu.show {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: flex !important; align-items: center; gap: .6rem;
  padding: .65rem 1.2rem !important; font-size: .88rem !important;
  color: var(--night) !important; font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { background: var(--sand); color: var(--gold-dark) !important; }
.dropdown-menu i { color: var(--gold-dark); font-size: .95rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--night); margin: 5px 0; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 65%;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,32,46,.88) 0%, rgba(20,32,46,.55) 45%, rgba(20,32,46,.15) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 6rem 0 5rem; max-width: 760px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-size: .82rem; font-weight: 700;
  padding: .45rem 1rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.hero-eyebrow i { color: var(--gold); }
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5.4vw, 4.2rem); margin: 1.2rem 0 1rem; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-sub { color: rgba(255,255,255,.88); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.hero-stats { display: flex; gap: 2.6rem; flex-wrap: wrap; margin-top: 3rem; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); line-height: 1.1; }
.hero-stats span { color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll a { color: rgba(255,255,255,.8); font-size: 1.1rem; animation: bounce 2s infinite; display: block; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--night); padding: 1.6rem 0; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .9rem; color: var(--white); }
.trust-item i { font-size: 1.5rem; color: var(--gold); }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ---------- Packages ---------- */
.packages { padding: 5.5rem 0; }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin: 0 0 2.4rem;
}
.filter-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .88rem;
  padding: .6rem 1.25rem; border-radius: 999px; cursor: pointer;
  background: var(--white); color: var(--night);
  border: 1.5px solid rgba(20,32,46,.14);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.filter-btn i { color: var(--gold-dark); transition: color .25s ease; }
.filter-btn:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); border-color: transparent;
  box-shadow: 0 8px 20px rgba(217,154,43,.35);
}
.filter-btn.active i { color: var(--white); }
.package-card.filtered-out { display: none; }
.packages-empty { text-align: center; color: var(--muted); padding: 2.5rem 0; font-weight: 600; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

.package-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.package-card:hover .card-media img { transform: scale(1.07); }

.card-badge {
  position: absolute; top: .9rem; left: .9rem;
  background: rgba(20,32,46,.85); color: var(--white);
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.badge-hot { background: linear-gradient(135deg, #e2542c, #c33d18); }

/* Sharp offer ribbon (e.g. Buy One Get One Free) */
.card-offer {
  position: absolute; left: 0; bottom: 1rem;
  background: linear-gradient(135deg, #e2542c, #c33d18); color: var(--white);
  font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: .5rem 1rem .5rem .9rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 50%, 100% 100%, 0 100%);
  box-shadow: 0 6px 18px rgba(195,61,24,.45);
  animation: offerFlash 2.2s ease-in-out infinite;
}
.card-offer i { margin-right: .3rem; color: #ffd98a; }
@keyframes offerFlash {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.badge-vip { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--night); }

.card-price {
  position: absolute; right: .9rem; bottom: -1px;
  background: var(--white); border-radius: 14px 14px 0 0;
  padding: .5rem 1rem .3rem; text-align: center; box-shadow: 0 -4px 14px rgba(20,32,46,.12);
}
.card-price small { display: block; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.card-price strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--night); line-height: 1.1; }
.card-price em { font-style: normal; font-size: .8rem; color: var(--gold-dark); font-weight: 700; }
.card-price .price-usd { display: block; font-size: .72rem; font-weight: 700; color: var(--muted); line-height: 1.2; }
.card-price .price-old { font-size: .95rem; color: #c0392b; margin-right: .25rem; opacity: .75; }

.card-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.3rem; margin-bottom: .9rem; }

.inclusions { flex: 1; display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.2rem; }
.inclusions li { position: relative; padding-left: 1.55rem; font-size: .88rem; color: var(--ink); }
.inclusions li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: .18rem; font-size: .7rem;
  color: var(--green); background: rgba(30,170,92,.12);
  width: 1.05rem; height: 1.05rem; border-radius: 50%;
  display: grid; place-items: center;
}

.card-actions { display: flex; gap: .6rem; }
.btn-book { flex: 1; background: var(--green); color: var(--white); padding: .8rem .6rem; font-size: .85rem; }
.btn-book:hover { background: var(--green-dark); }
.btn-online { flex: 1; background: var(--night); color: var(--white); padding: .8rem .6rem; font-size: .85rem; }
.btn-online:hover { background: var(--night-2); }
.btn-call { width: 48px; padding: .8rem 0; background: var(--night); color: var(--white); }
.btn-call:hover { background: var(--night-2); }
@media (min-width: 721px) and (max-width: 1024px), (max-width: 420px) {
  .card-actions { flex-direction: column; }
}

/* ---------- Experience ---------- */
.experience { background: var(--sand-2); padding: 5.5rem 0; }
.experience-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: center; }
.experience-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.experience-media img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.experience-tag {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: rgba(20,32,46,.85); color: var(--white); backdrop-filter: blur(6px);
  padding: .55rem 1.1rem; border-radius: 999px; font-size: .82rem; font-weight: 700;
}
.experience-tag i { color: var(--gold); margin-right: .4rem; }
.experience-copy h2 { margin: .7rem 0 1rem; }
.experience-copy > p { color: var(--muted); max-width: 520px; }

.timeline { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.4rem; }
.timeline li { display: flex; gap: 1.1rem; }
.timeline-dot {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--gold-dark); font-size: 1.05rem;
}
.timeline strong { color: var(--night); font-size: 1rem; }
.timeline p { color: var(--muted); font-size: .9rem; }

/* ---------- Gallery ---------- */
.gallery { padding: 5.5rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-grid figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.08); }

/* ---------- FAQ ---------- */
.faq { background: var(--sand-2); padding: 5.5rem 0; }
.faq-inner { display: grid; grid-template-columns: .9fr 1.3fr; gap: 3.5rem; align-items: start; }
.faq-head h2 { margin: .7rem 0 1rem; }
.faq-head p { color: var(--muted); margin-bottom: 1.6rem; }

.faq-list { display: flex; flex-direction: column; gap: .9rem; }
.faq-item {
  background: var(--white); border-radius: 14px; padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm); transition: box-shadow .3s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; list-style: none;
  font-weight: 700; color: var(--night); font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--gold-dark); transition: transform .3s ease; font-size: .85rem; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item p { margin-top: .8rem; color: var(--muted); font-size: .92rem; }

/* ---------- Booking section ---------- */
.booking {
  background: linear-gradient(120deg, var(--night) 0%, var(--night-2) 55%, #3a2a17 100%);
  padding: 5.5rem 0;
}
.booking-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem; align-items: center; }
.booking-copy h2 { color: var(--white); margin: .7rem 0 .9rem; }
.booking-copy > p { color: rgba(255,255,255,.8); max-width: 480px; }
.booking-copy > p strong { color: var(--gold); }

.booking-points { margin: 1.6rem 0; display: flex; flex-direction: column; gap: .7rem; }
.booking-points li { color: rgba(255,255,255,.88); font-size: .95rem; font-weight: 600; }
.booking-points i { color: var(--green); margin-right: .55rem; }

.booking-guarantee {
  display: inline-flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: .9rem 1.2rem; backdrop-filter: blur(4px);
}
.booking-guarantee i { font-size: 1.6rem; color: var(--gold); }
.booking-guarantee strong { display: block; color: var(--white); font-size: .95rem; }
.booking-guarantee span { color: rgba(255,255,255,.65); font-size: .8rem; }

.booking-form {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.form-head { text-align: center; margin-bottom: 1.4rem; }
.form-head h3 { font-size: 1.5rem; }
.form-head p { color: var(--muted); font-size: .85rem; margin-top: .3rem; }
.form-head p i { color: var(--green); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-row .field-code { grid-column: auto; }
.form-row:has(.field-code) { grid-template-columns: 130px 1fr; }
.form-field { margin-bottom: .95rem; display: flex; flex-direction: column; }
.form-field label { font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--night); margin-bottom: .35rem; }
.optional-tag { color: var(--muted); font-weight: 600; text-transform: none; letter-spacing: 0; }
.form-field input, .form-field select {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: .78rem .9rem; border-radius: 10px;
  border: 1.5px solid rgba(20,32,46,.16); background: #fbf9f4;
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
}
.form-field input:focus, .form-field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,154,43,.18);
}
.form-field input.invalid, .form-field select.invalid { border-color: #d43c22; box-shadow: 0 0 0 3px rgba(212,60,34,.12); }

.hidden-field { display: none !important; }

.btn-submit { width: 100%; font-size: 1.02rem; padding: 1rem; margin-top: .3rem; animation: submitPulse 2.6s infinite; }
@keyframes submitPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(217,154,43,.38); }
  50% { box-shadow: 0 8px 30px rgba(217,154,43,.65); }
}
.form-note { text-align: center; font-size: .8rem; color: var(--muted); margin-top: .8rem; }
.form-note i { color: var(--green); }
.form-status { text-align: center; font-weight: 700; font-size: .92rem; margin-top: .6rem; display: none; }
.form-status.success { display: block; color: var(--green-dark); }
.form-status.error { display: block; color: #d43c22; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--night) 0%, var(--night-2) 60%, #33261a 100%);
  padding: 5rem 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta-banner h2 { color: var(--white); margin: .7rem 0 .8rem; max-width: 620px; }
.cta-banner p { color: rgba(255,255,255,.75); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #0e161f; color: rgba(255,255,255,.72); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem; padding: 4rem 0 3rem;
}
.footer-brand p { font-size: .9rem; margin: 1.1rem 0 1.3rem; max-width: 300px; }
.socials { display: flex; gap: .7rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: var(--white); transition: background .25s ease, transform .25s ease;
}
.socials a:hover { background: var(--gold); transform: translateY(-3px); }

.footer-col { display: flex; flex-direction: column; gap: .65rem; }
.footer-col h4 { color: var(--white); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: .5rem; }
.footer-col a, .footer-col span { font-size: .9rem; transition: color .25s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col i { color: var(--gold); width: 1.2rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0; font-size: .82rem; text-align: center; }

/* ---------- Floating Action CTAs (Call & WhatsApp) ---------- */
.whatsapp-float {
  position: fixed; right: 1.4rem; bottom: 6rem; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green); color: var(--white); font-size: 1.9rem;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(30,170,92,.45);
  animation: pulse 2.4s infinite;
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

.phone-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--night); color: var(--gold); font-size: 1.5rem;
  display: grid; place-items: center;
  border: 2px solid var(--gold);
  box-shadow: 0 10px 25px rgba(20,32,46,.4);
  transition: transform .25s ease, background .25s ease;
}
.phone-float:hover { transform: scale(1.08); background: var(--gold-dark); color: var(--white); }

@media (min-width: 721px) {
  .phone-float { display: none; }
}
@keyframes pulse {
  0% { box-shadow: 0 10px 30px rgba(30,170,92,.45), 0 0 0 0 rgba(30,170,92,.4); }
  70% { box-shadow: 0 10px 30px rgba(30,170,92,.45), 0 0 0 18px rgba(30,170,92,0); }
  100% { box-shadow: 0 10px 30px rgba(30,170,92,.45), 0 0 0 0 rgba(30,170,92,0); }
}

/* ---------- Scroll reveal ----------
   Content is visible by default. JS adds .reveal-pending only to
   elements below the viewport, then .visible animates them in. */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.reveal.reveal-pending { opacity: 0; transform: translateY(28px); }
.reveal.reveal-pending.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Inner page hero (about / gallery / contact) ---------- */
.page-hero { position: relative; padding: 5.5rem 0 4rem; overflow: hidden; }
.page-hero .hero-bg { animation: none; }
.page-hero .hero-overlay { background: linear-gradient(rgba(20,32,46,.78), rgba(20,32,46,.78)); }
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3.2rem); }
.page-hero h1 span { color: var(--gold); font-style: italic; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 560px; margin: .8rem auto 0; }

.content-section { padding: 4.5rem 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.prose h2 { margin-bottom: 1rem; }
.prose p { color: var(--muted); margin-bottom: 1rem; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card i { font-size: 1.8rem; color: var(--gold-dark); margin-bottom: .8rem; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: .92rem; }
.contact-card a:hover { color: var(--gold-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-inner, .experience-inner, .booking-inner { grid-template-columns: 1fr; }
  .experience-media img { min-height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar-inner { justify-content: center; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0 0 auto 0; top: 0; z-index: 110;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #ffffff; padding: 5rem 6% 2.5rem;
    transform: translateY(-120%); transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(20,32,46,.25);
    max-height: 100vh; overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { width: 100%; padding: 1rem 0; font-size: 1.1rem; border-bottom: 1px solid rgba(20,32,46,.08); color: var(--night); }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-dropdown { width: 100%; flex-direction: column; align-items: flex-start; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 1rem 0; font-size: 1.1rem; border-bottom: 1px solid rgba(20,32,46,.08); color: var(--night); }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none;
    background: rgba(20,32,46,.03); border-radius: 8px; width: 100%; padding: .3rem 0; margin-top: .2rem; margin-bottom: .5rem;
    display: none;
  }
  .nav-dropdown.mobile-open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: .85rem 1rem !important; font-size: 1rem !important; border-bottom: 1px solid rgba(20,32,46,.05) !important; }
  .nav-cta {
    display: flex !important; align-items: center; justify-content: center; gap: .6rem;
    width: 100% !important; margin-top: 1.4rem; padding: .95rem 1.4rem !important;
    font-size: 1.05rem !important; font-weight: 700 !important;
    background: var(--green) !important; color: #ffffff !important;
    border-radius: 12px !important; box-shadow: 0 8px 20px rgba(30,170,92,.35) !important;
    border-bottom: none !important; text-align: center; text-decoration: none;
    cursor: pointer;
  }
  .nav-cta:hover, .nav-cta:focus, .nav-cta:active { background: var(--green-dark) !important; color: #ffffff !important; }
  .nav-cta i { font-size: 1.3rem; color: #ffffff !important; }
  .nav-toggle { position: relative; z-index: 120; }

  .hero { min-height: min(78vh, 640px); }
  .hero-stats { gap: 1.5rem 2rem; }
  .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: .5rem; scrollbar-width: thin; }
  .filter-btn { flex: 0 0 auto; white-space: nowrap; }
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-form { padding: 1.6rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-row:has(.field-code) { grid-template-columns: 110px 1fr; }
  .packages-grid, .gallery-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { right: 1.1rem; bottom: 1.1rem; }
  .phone-float { left: 1.1rem; bottom: 1.1rem; }

  /* Compact tour cards so the full card — image, price, all inclusions
     and actions — displays upfront on a single mobile screen. */
  .card-media { aspect-ratio: 16 / 8; }
  .card-body { padding: 1rem 1rem 1.1rem; }
  .card-body h3 { font-size: 1.08rem; margin-bottom: .6rem; }
  .inclusions {
    display: flex; flex-direction: column;
    gap: .32rem; margin-bottom: .9rem;
  }
  .inclusions li { font-size: .78rem; line-height: 1.3; padding-left: 1.25rem; }
  .inclusions li::before { width: .9rem; height: .9rem; font-size: .58rem; top: .16rem; }
  .card-actions { gap: .5rem; }
  .btn-book, .btn-online { padding: .65rem .5rem; font-size: .78rem; }
}
