/* ═══════════════════════════════════════════════════════════
   UMRAH.AE — Main Stylesheet (ported from original design)
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f0e8;
  color: #1a2744;
  overflow-x: hidden;
  line-height: 1.6;
}
:root {
  --navy:      #1a2744;
  --navy-deep: #0f1829;
  --navy-mid:  #243555;
  --gold:      #c8962a;
  --gold-lt:   #e8b84b;
  --gold-pale: #f5d07a;
  --cream:     #f5f0e8;
  --border:    #e4dfd6;
  --muted:     #7a7260;
  --soft:      #5a5040;
  --wa:        #25d366;
  --wa-dk:     #1aaa52;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--gold);
  text-align: center;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #0d1829;
  letter-spacing: 0.2px;
}
.announce-bar a { color: #0d1829; text-decoration: underline; font-weight: 700; }

/* ── NAV ── */
.nav {
  background: var(--navy);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(232,184,75,0.14);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(200,150,42,0.4);
}
.nav-name { font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -0.4px; }
.nav-name span { color: var(--gold-lt); }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.7);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px; border-radius: 8px;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold-lt); border-color: rgba(232,184,75,0.4); }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item a, .nav-links .current_page_item a { color: var(--gold-lt); }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.btn-nav-wa {
  display: flex; align-items: center; gap: 7px;
  background: rgba(37,211,102,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37,211,102,0.3);
  border-top: 1px solid rgba(37,211,102,0.52);
  box-shadow: 0 1px 0 rgba(74,222,128,0.18) inset;
  color: #4ade80; font-size: 12px; font-weight: 600;
  padding: 8px 16px; border-radius: 8px;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.btn-nav-wa:hover { background: rgba(37,211,102,0.25); color: #4ade80; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.nav-mobile-menu {
  display: none; position: absolute; top: 64px; left: 0; right: 0;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px; flex-direction: column; gap: 4px; z-index: 998;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-size: 14px; color: rgba(255,255,255,0.7); padding: 10px 12px; border-radius: 8px; transition: color 0.2s, background 0.2s; }
.nav-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border: 1px solid rgba(255,215,80,0.4); border-top: 1px solid rgba(255,230,120,0.65);
  box-shadow: 0 2px 0 rgba(255,220,100,0.28) inset, 0 8px 24px rgba(200,150,42,0.35);
  color: #0d1829; font-size: 14px; font-weight: 700;
  padding: 13px 24px; border-radius: 14px; cursor: pointer;
  font-family: inherit; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 2px 0 rgba(255,220,100,0.28) inset, 0 14px 32px rgba(200,150,42,0.45); color: #0d1829; }
.btn-wa-glass {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(37,211,102,0.14);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(37,211,102,0.3); border-top: 1px solid rgba(37,211,102,0.55);
  box-shadow: 0 1px 0 rgba(74,222,128,0.18) inset, 0 4px 16px rgba(0,0,0,0.2);
  color: #4ade80; font-size: 14px; font-weight: 600;
  padding: 13px 22px; border-radius: 14px;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.btn-wa-glass:hover { background: rgba(37,211,102,0.24); color: #4ade80; }

/* ── HERO ── */
.hero {
  position: relative; height: 620px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1591604466107-ec97de577aff?w=1600&q=85');
  background-size: cover; background-position: center 35%;
  transform: scale(1.04);
  animation: heroZoom 10s ease forwards;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.0); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,15,35,0.90) 0%, rgba(8,15,35,0.72) 42%, rgba(8,15,35,0.22) 100%);
}
.hero-glow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, rgba(200,150,42,0.16) 0%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 10; width: 100%;
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.hero-content { max-width: 520px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,184,75,0.1);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(232,184,75,0.28);
  border-top: 1px solid rgba(232,184,75,0.52);
  box-shadow: 0 1px 0 rgba(232,184,75,0.18) inset, 0 4px 16px rgba(0,0,0,0.2);
  color: #f0c84a; font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--gold-lt); border-radius: 50%; box-shadow: 0 0 6px var(--gold-lt); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 50px; font-weight: 700; color: #fff;
  line-height: 1.06; margin-bottom: 10px; letter-spacing: -0.8px;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #f5d07a 0%, #e8b84b 40%, #c8962a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub-head { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 12px; font-weight: 400; }
.hero-desc { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.75; margin-bottom: 30px; max-width: 420px; }
.hero-btns { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-stats {
  display: inline-flex; border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  border: 1px solid rgba(255,255,255,0.13);
  border-top: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 2px 0 rgba(255,255,255,0.1) inset, 0 8px 32px rgba(0,0,0,0.3);
}
.stat-item { padding: 13px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -0.3px; line-height: 1; }
.stat-label { font-size: 9px; color: rgba(255,255,255,0.42); margin-top: 4px; font-weight: 500; letter-spacing: 0.3px; }
.hero-float-card {
  flex-shrink: 0; width: 214px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(48px) saturate(220%) brightness(1.18);
  -webkit-backdrop-filter: blur(48px) saturate(220%) brightness(1.18);
  border: 1px solid rgba(255,255,255,0.22); border-top: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 2px 0 rgba(255,255,255,0.16) inset, 0 20px 56px rgba(0,0,0,0.45);
  border-radius: 22px; padding: 20px;
  animation: floatCard 3.5s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.float-label { font-size: 9px; font-weight: 600; letter-spacing: 1.3px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.float-price { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: #fff; letter-spacing: -0.8px; line-height: 1; }
.float-currency { font-size: 10px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.float-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 10px 0; }
.float-row { display: flex; align-items: center; gap: 8px; font-size: 10px; color: rgba(255,255,255,0.7); margin-bottom: 6px; font-weight: 500; }
.float-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-lt); flex-shrink: 0; }
.float-cta {
  width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #0d1829; font-size: 12px; font-weight: 700;
  padding: 10px 0; border-radius: 11px; text-align: center;
  cursor: pointer; border: none; font-family: inherit; margin-top: 12px;
  display: block; text-decoration: none; transition: opacity 0.2s;
}
.float-cta:hover { opacity: 0.9; color: #0d1829; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 12px 32px;
  display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(232,184,75,0.12);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.62); font-weight: 500; }
.trust-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(232,184,75,0.12); border: 1px solid rgba(232,184,75,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--gold-lt); flex-shrink: 0;
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--navy);
  padding: 28px 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border-bottom: 1px solid rgba(232,184,75,0.12);
}
.proof-item { text-align: center; padding: 8px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.proof-item:last-child { border-right: none; }
.proof-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--gold-lt); letter-spacing: -1px; line-height: 1; }
.proof-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }

/* ── SERVICES ROW ── */
.services-row { background: #fff; padding: 20px 32px; border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; max-width: 900px; margin: 0 auto; }
.svc-card {
  border: 1px solid var(--border); border-radius: 14px; padding: 16px 10px;
  text-align: center; cursor: pointer; transition: all 0.22s; background: #fff; text-decoration: none;
}
.svc-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(200,150,42,0.12); transform: translateY(-2px); }
.svc-icon { font-size: 22px; display: block; margin-bottom: 7px; }
.svc-label { font-size: 10px; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* ── SECTIONS ── */
.section { padding: 56px 32px; }
.section-cream { background: var(--cream); }
.section-white { background: #fff; }
.section-navy {
  background: linear-gradient(160deg, #0f1e40 0%, #1a2744 50%, #152038 100%);
  position: relative; overflow: hidden;
}
.section-navy::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,184,75,0.1) 0%, transparent 70%);
  top: -120px; right: -80px; pointer-events: none;
}
.sec-inner { max-width: 1160px; margin: 0 auto; }
.sec-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.sec-eyebrow-lt { color: var(--gold-lt); }
.sec-h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.5px; line-height: 1.15; }
.sec-h2-lt { color: #fff; }
.sec-sub { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 32px; max-width: 560px; }
.sec-sub-lt { color: rgba(255,255,255,0.45); }

/* ── PACKAGE CARDS ── */
.filters { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px; border-radius: 20px; font-size: 12px; font-weight: 500;
  color: var(--soft); background: #fff; border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 2px 10px rgba(26,39,68,0.25); }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pkg-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.25s;
  cursor: pointer; text-decoration: none; color: inherit;
}
.pkg-card:hover { transform: translateY(-7px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); }
.pkg-card-vip { border-color: #d4af6a; box-shadow: 0 2px 16px rgba(200,150,42,0.12); }
.pkg-img-wrap { height: 190px; position: relative; overflow: hidden; }
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.06); }
.pkg-img-glass {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, rgba(10,18,40,0.78) 0%, transparent 100%);
  pointer-events: none;
}
.pkg-badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: flex-start; z-index: 5; }
.badge-hot {
  font-size: 9px; font-weight: 700; padding: 4px 10px; border-radius: 8px;
  letter-spacing: 0.5px; text-transform: uppercase; color: #fff;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.badge-red { background: rgba(220,50,50,0.82); border: 1px solid rgba(255,120,120,0.35); border-top: 1px solid rgba(255,160,160,0.5); }
.badge-gold { background: rgba(180,130,10,0.88); border: 1px solid rgba(232,184,75,0.45); border-top: 1px solid rgba(232,184,75,0.65); }
.badge-tier {
  font-size: 9px; font-weight: 700; padding: 4px 10px; border-radius: 8px;
  letter-spacing: 0.3px; text-transform: uppercase;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.tier-std { background: rgba(232,184,75,0.85); border: 1px solid rgba(255,220,100,0.4); border-top: 1px solid rgba(255,230,130,0.7); color: #0d1829; }
.tier-vip { background: rgba(10,18,40,0.88); border: 1px solid rgba(232,184,75,0.5); border-top: 1px solid rgba(232,184,75,0.72); color: #e8b84b; }
.tier-pre { background: rgba(26,39,68,0.86); border: 1px solid rgba(120,160,230,0.35); border-top: 1px solid rgba(150,190,255,0.5); color: #a0c0f8; }
.tier-eco { background: rgba(240,238,232,0.88); border: 1px solid rgba(255,255,255,0.5); border-top: 1px solid rgba(255,255,255,0.75); color: #333; }
.tier-ram { background: rgba(100,50,150,0.85); border: 1px solid rgba(180,120,230,0.4); border-top: 1px solid rgba(200,160,240,0.6); color: #e0c0ff; }
.pkg-body { padding: 18px 18px 12px; flex: 1; }
.pkg-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.pkg-pills { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.pkg-pill { font-size: 10px; color: var(--soft); background: #f0ece4; border: 1px solid var(--border); padding: 3px 9px; border-radius: 6px; }
.pkg-hotels { background: #f8f5ee; border-radius: 10px; padding: 10px 13px; margin-bottom: 10px; border: 1px solid #ede8e0; }
.pkg-hotel-row { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; margin-bottom: 5px; }
.pkg-hotel-row:last-child { margin-bottom: 0; }
.pkg-city { font-size: 9px; font-weight: 700; color: var(--gold); min-width: 52px; text-transform: uppercase; letter-spacing: 0.5px; padding-top: 1px; }
.pkg-hn { color: var(--navy); font-weight: 500; line-height: 1.4; }
.pkg-hn small { color: var(--muted); font-weight: 400; font-size: 9px; display: block; margin-top: 1px; }
.pkg-includes { margin-bottom: 10px; }
.pkg-includes-title { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gold); margin-bottom: 5px; }
.pkg-includes-list { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.pkg-includes-list li { font-size: 10px; color: var(--soft); display: flex; align-items: center; gap: 5px; }
.inc-check { color: #27ae60; font-size: 10px; flex-shrink: 0; }
.pkg-urgency {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; color: #c0392b; font-weight: 600;
  background: #fdf0f0; border: 1px solid rgba(192,57,43,0.2); border-radius: 7px; padding: 4px 9px;
}
.urgency-dot { width: 6px; height: 6px; border-radius: 50%; background: #e74c3c; animation: urgPulse 1.5s infinite; flex-shrink: 0; }
@keyframes urgPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.pkg-footer { padding: 12px 18px 16px; border-top: 1px solid #f0ece4; display: flex; align-items: center; justify-content: space-between; }
.pkg-price-old { font-size: 10px; color: #bbb; text-decoration: line-through; }
.pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy); letter-spacing: -0.5px; line-height: 1; }
.pkg-price-gold { color: var(--gold); }
.pkg-per { font-size: 10px; color: #9a9080; margin-top: 2px; }
.pkg-book-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--navy); color: #fff; font-size: 11px; font-weight: 600;
  padding: 9px 15px; border-radius: 11px; cursor: pointer; border: none;
  font-family: inherit; text-decoration: none;
  box-shadow: 0 2px 10px rgba(26,39,68,0.28); transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.pkg-book-btn:hover { background: #243555; transform: scale(1.03); color: #fff; }
.btn-book-gold { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: #0d1829; box-shadow: 0 2px 10px rgba(200,150,42,0.3); }
.btn-book-gold:hover { background: linear-gradient(135deg, #d4a030, #f0c050); color: #0d1829; }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #25d366; box-shadow: 0 0 4px #25d366; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; position: relative; z-index: 1; }
.why-card {
  border-radius: 18px; padding: 22px 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 2px 0 rgba(255,255,255,0.07) inset, 0 8px 28px rgba(0,0,0,0.25);
  transition: border-color 0.25s, transform 0.25s;
}
.why-card:hover { border-color: rgba(232,184,75,0.35); border-top-color: rgba(232,184,75,0.55); transform: translateY(-4px); }
.why-ico { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px; background: rgba(232,184,75,0.1); border: 1px solid rgba(232,184,75,0.2); border-top: 1px solid rgba(232,184,75,0.38); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.why-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.why-desc { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.25s, box-shadow 0.25s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.testi-quote { font-size: 12px; color: var(--soft); line-height: 1.75; margin-bottom: 14px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gold-lt); font-weight: 700; flex-shrink: 0; }
.testi-name { font-size: 12px; font-weight: 700; color: var(--navy); }
.testi-loc { font-size: 10px; color: #9a9080; }
.reviews-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 18px; margin-bottom: 28px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.reviews-badge-score { font-size: 28px; font-weight: 700; color: var(--navy); font-family: 'Cormorant Garamond', serif; letter-spacing: -0.5px; }
.reviews-badge-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; margin-bottom: 1px; }
.reviews-badge-label { font-size: 10px; color: var(--muted); }
.reviews-badge-logo { font-size: 11px; font-weight: 700; color: #4285f4; margin-left: 4px; }

/* ── EMIRATES ── */
.emirates-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.emirate-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 16px; text-align: center; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.emirate-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(200,150,42,0.1); transform: translateY(-3px); }
.emirate-flag { font-size: 28px; margin-bottom: 8px; }
.emirate-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.emirate-sub { font-size: 10px; color: var(--muted); }

/* ── FAQ ── */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; max-width: 1100px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 13px; padding: 16px 20px; margin-bottom: 10px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item:hover { border-color: var(--gold); box-shadow: 0 4px 14px rgba(200,150,42,0.08); }
.faq-item.open { border-color: var(--gold); }
.faq-q { font-size: 13px; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: #f0ece4; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gold); flex-shrink: 0; transition: transform 0.25s, background 0.2s; font-weight: 400; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #fff; border-color: var(--gold); }
.faq-a { font-size: 12px; color: var(--muted); line-height: 1.7; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f0ece4; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  border-radius: 24px; padding: 48px 44px;
  background: linear-gradient(130deg, #0f1e40 0%, #1a2744 50%, #1e3058 100%);
  border: 1px solid rgba(232,184,75,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner::before { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,184,75,0.12) 0%, transparent 70%); top: -100px; right: 100px; pointer-events: none; }
.cta-text { position: relative; z-index: 1; flex: 1; min-width: 260px; }
.cta-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 10px; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.cta-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 400px; }
.cta-form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; min-width: 280px; }
.form-row { display: flex; gap: 8px; }
.form-input { flex: 1; background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.2); border-top: 1px solid rgba(255,255,255,0.3); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: #fff; font-family: inherit; outline: none; transition: border-color 0.2s; width: 100%; }
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus { border-color: rgba(232,184,75,0.5); }
.form-input option { color: #333; background: #fff; }
.form-note { font-size: 10px; color: rgba(255,255,255,0.35); text-align: center; }
.btn-cta-wa { display: inline-flex; align-items: center; gap: 9px; background: rgba(37,211,102,0.14); backdrop-filter: blur(20px); border: 1px solid rgba(37,211,102,0.3); border-top: 1px solid rgba(37,211,102,0.52); box-shadow: 0 1px 0 rgba(74,222,128,0.15) inset; color: #4ade80; font-size: 13px; font-weight: 600; padding: 12px 22px; border-radius: 12px; cursor: pointer; font-family: inherit; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.btn-cta-wa:hover { background: rgba(37,211,102,0.24); color: #4ade80; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 52px 32px 24px; border-top: 1px solid rgba(232,184,75,0.12); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 32px; max-width: 1160px; margin: 0 auto 28px; }
.footer-brand { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.3px; font-family: 'Cormorant Garamond', serif; }
.footer-brand span { color: var(--gold-lt); }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 16px; }
.footer-contact-item { display: flex; align-items: center; gap: 7px; font-size: 11px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 6px; transition: color 0.2s; }
.footer-contact-item:hover { color: var(--gold-lt); }
.footer-cert-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.cert-pill { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 4px 10px; letter-spacing: 0.2px; }
.footer-col-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.footer-link { display: block; font-size: 11px; color: rgba(255,255,255,0.38); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-link:hover { color: var(--gold-lt); }
.footer-bottom { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 10px; color: rgba(255,255,255,0.25); }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-top: 1px solid rgba(200,180,140,0.4);
  padding: 12px 32px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
.sticky-info .sticky-label { font-size: 10px; color: var(--muted); }
.sticky-info .sticky-price-text { font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; }
.sticky-actions { display: flex; gap: 10px; align-items: center; }
.btn-sticky-call { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); font-size: 12px; font-weight: 600; padding: 9px 18px; border-radius: 10px; cursor: pointer; font-family: inherit; text-decoration: none; transition: background 0.2s; }
.btn-sticky-call:hover { background: rgba(200,150,42,0.06); }
.btn-sticky-wa { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--wa), var(--wa-dk)); color: #fff; font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 10px; cursor: pointer; border: none; font-family: inherit; text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,0.32); transition: opacity 0.2s, transform 0.2s; }
.btn-sticky-wa:hover { opacity: 0.92; transform: scale(1.02); color: #fff; }

/* ── FLOATING WA ── */
.float-wa { position: fixed; bottom: 80px; right: 24px; z-index: 997; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--wa), var(--wa-dk)); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.5); cursor: pointer; text-decoration: none; animation: waPulse 2.5s infinite; transition: transform 0.2s; }
.float-wa:hover { transform: scale(1.1); }
@keyframes waPulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.5)} 50%{box-shadow:0 6px 40px rgba(37,211,102,0.75)} }

/* ── SCROLL ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:0.1s} .d2{transition-delay:0.2s} .d3{transition-delay:0.3s}
.d4{transition-delay:0.4s} .d5{transition-delay:0.5s}
.page-wrap { padding-bottom: 70px; }

/* ── OTHER PAGE SHARED STYLES ── */
.page-hero-section { background: linear-gradient(160deg, #0f1e40 0%, #1a2744 50%, #152038 100%); padding: 72px 32px 60px; position: relative; overflow: hidden; }
.page-hero-section::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,184,75,0.1) 0%, transparent 70%); top: -120px; right: -80px; pointer-events: none; }
.page-hero-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }

/* Single Package */
.package-hero { background: linear-gradient(160deg, #0f1e40 0%, #1a2744 50%, #152038 100%); padding: 60px 32px 52px; position: relative; overflow: hidden; }
.package-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1591604466107-ec97de577aff?w=1600&q=60') center/cover; opacity: 0.1; }
.pkg-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.pkg-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.pkg-breadcrumb a:hover { color: var(--gold-lt); }
.pkg-hero-tag { display: inline-block; background: rgba(200,150,42,0.15); border: 1px solid rgba(200,150,42,0.3); color: var(--gold-lt); font-size: 10px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; padding: 5px 12px; border-radius: 6px; margin-bottom: 14px; }
.pkg-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 50px); font-weight: 700; color: #fff; letter-spacing: -0.6px; line-height: 1.05; margin-bottom: 12px; }
.pkg-hero-desc { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.7; }
.pkg-quick-stats { display: inline-flex; margin-top: 28px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; }
.quick-stat { padding: 14px 26px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.quick-stat:last-child { border-right: none; }
.qs-val { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.qs-key { font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 4px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.package-content-wrap { padding: 56px 32px 80px; max-width: 1160px; margin: 0 auto; }
.package-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.pkg-section { margin-bottom: 40px; }
.pkg-section-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.inclusion-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--soft); padding: 10px 14px; background: var(--cream); border-radius: 8px; border: 1px solid var(--border); }
.inclusion-check { color: #27ae60; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.inclusion-x { color: #c0392b; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.inclusion-item.excluded { opacity: 0.6; }
.itinerary-item { margin-bottom: 20px; }
.itin-day-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.itin-day-num { width: 34px; height: 34px; background: var(--navy); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.itin-day-title { font-size: 15px; font-weight: 600; color: var(--navy); }
.itin-day-body { padding-left: 46px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.pkg-sidebar { position: sticky; top: 80px; }
.booking-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.booking-card-header { background: var(--navy); padding: 24px; }
.bc-price-label { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 4px; }
.bc-price { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 700; color: #fff; letter-spacing: -1px; line-height: 1; }
.bc-price-note { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 4px; }
.booking-card-body { padding: 20px; }
.bc-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.bc-row:last-of-type { border-bottom: none; }
.bc-key { color: var(--muted); font-weight: 400; }
.bc-val { color: var(--navy); font-weight: 600; }
.booking-card-actions { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 10px; }
.btn-wa-full { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--wa); color: #fff; font-size: 14px; font-weight: 600; padding: 13px 24px; border-radius: 12px; text-decoration: none; transition: opacity 0.2s; box-shadow: 0 4px 16px rgba(37,211,102,0.28); }
.btn-wa-full:hover { opacity: 0.9; color: #fff; }
.btn-outline-dk { display: flex; align-items: center; justify-content: center; gap: 8px; border: 1.5px solid var(--border); color: var(--navy); font-size: 13px; font-weight: 500; padding: 11px 20px; border-radius: 12px; text-decoration: none; transition: border-color 0.2s; }
.btn-outline-dk:hover { border-color: var(--gold); color: var(--navy); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.1); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 12px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.blog-card-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); padding-top: 12px; border-top: 1px solid var(--border); }
.blog-read-more { color: var(--gold); font-weight: 600; }
.blog-single-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,5vw,48px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 14px; }
.blog-single-body { max-width: 740px; margin: 56px auto; padding: 0 32px; }
.blog-single-body p { font-size: 15px; color: var(--soft); line-height: 1.85; margin-bottom: 22px; }
.blog-single-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--navy); margin: 36px 0 14px; }
.blog-single-body h3 { font-size: 18px; color: var(--navy); font-weight: 600; margin: 26px 0 10px; }
.blog-single-body ul,.blog-single-body ol { padding-left: 20px; margin-bottom: 20px; }
.blog-single-body li { font-size: 15px; color: var(--soft); line-height: 1.8; margin-bottom: 5px; }
.blog-single-body blockquote { border-left: 3px solid var(--gold); padding-left: 20px; margin: 28px 0; font-style: italic; color: var(--muted); font-size: 16px; line-height: 1.75; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.ci-item { display: flex; gap: 14px; margin-bottom: 24px; }
.ci-icon { width: 42px; height: 42px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold-lt); flex-shrink: 0; }
.ci-label { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 4px; }
.ci-value { font-size: 15px; font-weight: 500; color: var(--navy); }
.ci-value a { color: var(--navy); transition: color 0.2s; }
.ci-value a:hover { color: var(--gold); }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.form-card-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; font-weight: 600; color: var(--soft); letter-spacing: 0.4px; margin-bottom: 5px; }
.form-field { width: 100%; background: var(--cream); border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-size: 13px; color: var(--navy); font-family: inherit; outline: none; transition: border-color 0.2s; }
.form-field:focus { border-color: var(--navy); }
textarea.form-field { resize: vertical; min-height: 110px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg-success { display:none; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 12px 14px; font-size: 13px; color: #166534; margin-bottom: 14px; }
.form-msg-error { display:none; background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; padding: 12px 14px; font-size: 13px; color: #b91c1c; margin-bottom: 14px; }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .pkg-grid,.why-grid,.testi-grid,.blog-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero-float-card{display:none}
  .hero-h1{font-size:40px}
  .faq-cols{grid-template-columns:1fr}
  .emirates-grid{grid-template-columns:repeat(2,1fr)}
  .proof-strip{grid-template-columns:repeat(2,1fr)}
  .package-layout{grid-template-columns:1fr}
  .pkg-sidebar{position:static}
  .contact-layout{grid-template-columns:1fr}
}
@media(max-width:768px){
  .nav-links,.nav-phone{display:none}
  .nav-toggle{display:flex}
  .hero{height:auto;min-height:560px}
  .hero-inner{flex-direction:column;padding:48px 20px}
  .hero-content{max-width:100%}
  .hero-h1{font-size:32px}
  .section{padding:40px 20px}
  .pkg-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr 1fr}
  .testi-grid{grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr}
  .cta-banner{flex-direction:column;padding:32px 24px}
  .cta-form{width:100%}
  .trust-bar{gap:12px;padding:12px 20px}
  .sticky-bar{padding:10px 16px}
  .proof-strip{grid-template-columns:repeat(2,1fr)}
  .blog-grid{grid-template-columns:1fr}
  .inclusions-grid{grid-template-columns:1fr}
  .form-2col{grid-template-columns:1fr}
  .blog-single-body{padding:0 20px}
}
@media(max-width:480px){
  .hero-h1{font-size:27px}
  .why-grid{grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .emirates-grid{grid-template-columns:repeat(2,1fr)}
  .form-row{flex-direction:column}
}
