:root {
  --navy: #1e3a5f;
  --navy-dark: #0d1520;
  --navy-mid: #16222f;
  --gold: #c9a24b;
  --gold-light: #e8c97a;
  --green: #25d366;
  --green-dark: #1da851;
  --text: #f2f4f7;
  --muted: #9fb0c3;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', Tahoma, sans-serif;
  background: var(--navy-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-weight: 900; line-height: 1.35; }
h2 { font-size: clamp(26px, 4.5vw, 40px); text-align: center; margin-bottom: 8px; }
.gold { color: var(--gold); }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 34px; padding: 0 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 17px;
  padding: 14px 30px; border-radius: 50px;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .35);
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37, 211, 102, .5); }
.btn:active { transform: scale(.97); }
.btn-xl { font-size: clamp(18px, 3vw, 22px); padding: 18px 44px; }
.btn-sm { font-size: 14px; padding: 9px 20px; }
.btn-card { width: 100%; font-size: 16px; }

.pulse { animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  background: rgba(13, 21, 32, .85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 75, .25);
}
.brand { display: flex; align-items: center; justify-content: center; }
.brand img {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(201, 162, 75, .35);
}

.hero-logo {
  width: clamp(90px, 18vw, 130px);
  height: clamp(90px, 18vw, 130px);
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .45), 0 0 0 3px rgba(201, 162, 75, .45);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  background: url('/img/hero.jpg') center/cover no-repeat;
  text-align: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,21,32,.55) 0%, rgba(13,21,32,.75) 60%, var(--navy-dark) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 60px 20px; max-width: 760px; }
.hero h1 { font-size: clamp(34px, 7vw, 62px); margin: 18px 0 14px; text-shadow: 0 4px 24px rgba(0,0,0,.5); }
.hero-sub { color: #d7e0ea; font-size: clamp(15px, 2.6vw, 19px); margin-bottom: 30px; }
.hero-note { margin-top: 14px; color: var(--gold-light); font-size: 14px; font-weight: 600; }

.badge-limited {
  display: inline-block; background: rgba(201, 162, 75, .15);
  border: 1px solid var(--gold); color: var(--gold-light);
  padding: 6px 18px; border-radius: 50px; font-size: 14px; font-weight: 700;
}

.countdown-wrap { margin-top: 34px; color: var(--muted); font-size: 14px; }
.countdown { display: flex; justify-content: center; gap: 6px; margin-top: 8px; direction: ltr; }
.countdown b {
  background: var(--navy-mid); border: 1px solid rgba(201,162,75,.4);
  border-radius: 10px; padding: 8px 14px; font-size: 24px; color: var(--gold-light);
  min-width: 56px; font-variant-numeric: tabular-nums;
}

/* ---------- Trust bar ---------- */
.trustbar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  max-width: 900px; margin: -40px auto 0; position: relative; z-index: 2;
  background: var(--navy-mid); border: 1px solid rgba(201,162,75,.25);
  border-radius: var(--radius); padding: 20px 12px; text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.trustbar b { display: block; font-size: clamp(18px, 3vw, 28px); color: var(--gold); }
.trustbar span { font-size: 13px; color: var(--muted); }

/* ---------- Destinations ---------- */
.destinations { padding: 80px 18px 40px; max-width: 1180px; margin: auto; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.card {
  background: var(--navy-mid); border: 1px solid rgba(201,162,75,.2);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); }
.card-img { position: relative; height: 200px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--navy); color: var(--gold-light);
  border: 1px solid var(--gold); padding: 3px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
}
.tag-hot { background: #a3232b; color: #fff; border-color: #ff6b72; }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.card-body h3 { font-size: 22px; }
.meta { display: flex; gap: 14px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.card-body ul { list-style: none; color: #cdd8e3; font-size: 14px; }
.card-body li::before { content: '✓ '; color: var(--gold); font-weight: 900; }
.price { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.price span { color: var(--muted); font-size: 13px; }
.price b { color: var(--gold); font-size: 30px; font-weight: 900; }

/* ---------- Why ---------- */
.why { padding: 70px 18px; background: var(--navy-mid); margin-top: 40px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px; max-width: 1100px; margin: 36px auto 0; text-align: center;
}
.why-item {
  background: var(--navy-dark); border: 1px solid rgba(201,162,75,.2);
  border-radius: var(--radius); padding: 28px 18px;
}
.why-item span { font-size: 40px; }
.why-item h3 { color: var(--gold-light); margin: 10px 0 6px; font-size: 18px; }
.why-item p { color: var(--muted); font-size: 14px; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 70px 18px; max-width: 1100px; margin: auto; }
.t-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 36px; }
.t-card {
  background: var(--navy-mid); border: 1px solid rgba(201,162,75,.2);
  border-radius: var(--radius); padding: 24px;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 10px; }
.t-card p { color: #d3dde7; font-size: 15px; margin-bottom: 14px; }
.t-card b { color: var(--muted); font-size: 13px; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { padding: 40px 18px 70px; max-width: 760px; margin: auto; }
.faq details {
  background: var(--navy-mid); border: 1px solid rgba(201,162,75,.2);
  border-radius: 14px; margin-top: 14px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 16px 20px; font-weight: 700; font-size: 16px;
  list-style: none; position: relative;
}
.faq summary::after { content: '+'; position: absolute; left: 20px; color: var(--gold); font-size: 22px; }
.faq details[open] summary::after { content: '−'; }
.faq p { padding: 0 20px 18px; color: var(--muted); font-size: 15px; }
.faq h2 { margin-bottom: 20px; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center; padding: 80px 18px;
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
}
.final-cta img {
  margin: 0 auto 18px;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(201, 162, 75, .35);
}
.final-cta p { color: var(--muted); margin: 10px 0 28px; }

.footer { text-align: center; padding: 26px; color: var(--muted); font-size: 13px; border-top: 1px solid rgba(201,162,75,.15); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 60;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .5);
  animation: pulse 2.2s infinite;
}

/* ---------- Popup ---------- */
.popup {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.popup.is-open { display: flex; }
.popup-box {
  background: var(--navy-mid); border: 1px solid var(--gold);
  border-radius: var(--radius); max-width: 400px; width: 100%;
  overflow: hidden; text-align: center; position: relative;
  animation: popin .3s ease;
}
@keyframes popin { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-box img { height: 160px; width: 100%; object-fit: cover; }
.popup-logo {
  height: auto !important;
  width: 72px !important;
  margin: 20px auto 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(201, 162, 75, .4);
}
.popup-box h3 { font-size: 24px; margin: 18px 0 6px; }
.popup-box p { color: var(--muted); padding: 0 24px; font-size: 15px; }
.popup-box .btn { margin: 18px 0 24px; }
.popup-close {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: rgba(0,0,0,.6); color: #fff; border: none;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 18px;
  line-height: 1; display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { background: rgba(201, 162, 75, .85); }

@media (max-width: 600px) {
  .trustbar { grid-template-columns: repeat(2, 1fr); margin: -30px 14px 0; }
  .hero { min-height: 86vh; }
}
