/* ============================================================
   HATEEM TRAVELS - Main Stylesheet
   Color Palette:
   - Background: #f8f4ef (warm cream)
   - Dark bg: #1a1a2e
   - Gold accent: #c9a84c
   - Gold light: #e8c87a
   - Green (logo): #4a7c3f
   - Text dark: #2c2c2c
   - Text mid: #666
   ============================================================ */

:root {
  --primary: #2C6B2F;
  --primary-dk: #1A4A1D;
  --gold: #B8960C;
  --gold-lt: #D4AF37;
  --navy: #0D1B2A;
  --bg: #FFFFFF;
  --bg-alt: #F7F5F0;
  --bg-dark: #0D1B2A;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #767676;
  --trust-blue: #1A4E8A;
  --wa-green: #25D366;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  
  /* Map old vars to new ones for compatibility while transitioning */
  --green: var(--primary);
  --green-dark: var(--primary-dk);
  --dark: var(--navy);
  --dark2: #162a42;
  --cream: var(--bg-alt);
  --cream-dark: #e8e4db;
  --white: var(--bg);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  min-width: 320px;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ensure form inputs prevent iOS Safari auto-zoom (16px minimum) */
input, select, textarea, button {
  font-family: inherit;
  font-size: 16px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
h1 { font-size: clamp(1.85rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.4rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.15rem); }
em { font-style: italic; color: var(--gold); }
p { line-height: 1.75; color: var(--text-mid); overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
img, svg, picture, video { max-width: 100%; height: auto; display: block; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin: 0.5rem 0 1rem; } .dark-bg { background-color: var(--bg-dark); color: white; } .dark-bg .section-header h2 { color: var(--white); } .dark-bg { background-color: var(--bg-dark); color: white; } .dark-bg .section-header p { color: rgba(255,255,255,0.8); }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,0.12); padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 0.5rem; }
.section-tag.light { color: var(--gold-light); background: rgba(232,200,122,0.15); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--dark); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.04em; padding: 0.85rem 2rem;
  border-radius: 6px; border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--dark); font-weight: 700; font-size: 0.9rem; padding: 0.85rem 2rem; border-radius: 6px; border: 2px solid rgba(44,44,44,0.25); cursor: pointer; transition: var(--transition); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-light { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--white); font-weight: 700; font-size: 0.9rem; padding: 0.85rem 2rem; border-radius: 6px; border: 2px solid rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--gold-light); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text); font-size: 0.88rem; padding: 0.6rem 1.2rem; border: 1.5px solid rgba(44,44,44,0.2); border-radius: 6px; transition: var(--transition); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,244,239,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0.6rem 2rem; gap: 1rem; }
.nav-logo img { height: 60px; width: auto; transition: height 0.2s ease; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text); transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1.5px solid rgba(44,107,47,0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
  transition: var(--transition);
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgba(44,107,47,0.08);
  border-color: var(--primary);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hamburger.active {
  background: rgba(44,107,47,0.12);
  border-color: var(--primary);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--primary);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--primary);
}

/* ============================================================
   ULTRA-LUXURY EDITORIAL HERO SLIDER
   ============================================================ */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: #0b1219;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0, 0.2, 1), visibility 0.9s;
  transform: scale(1.03);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* Atmospheric luxury gradient scrim */
.hero-slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 16, 23, 0.94) 0%,
    rgba(10, 16, 23, 0.88) 48%,
    rgba(10, 16, 23, 0.52) 74%,
    rgba(10, 16, 23, 0.15) 100%
  ),
  linear-gradient(
    180deg,
    rgba(10, 16, 23, 0.45) 0%,
    transparent 30%,
    rgba(10, 16, 23, 0.7) 100%
  );
  pointer-events: none;
}

.hero-container {
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  /* Uses .container: max-width: 1200px; margin: 0 auto; padding: 0 2rem; exactly matching .nav-container */
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  padding-top: 92px;
  padding-bottom: 2rem;
  padding-left: 0 !important;
  padding-right: 2rem;
  max-width: 720px;
  width: 100%;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

/* Top Tagline Eyebrow */
.hero-slider-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5c46e;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.32);
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: slideFadeUp 0.65s ease forwards;
}

/* Main Title - strictly 2 lines on desktop/tablet */
.hero-slider-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  font-weight: 600;
  line-height: 1.16;
  color: #ffffff;
  margin-bottom: 0.6rem;
  max-width: 680px;
  letter-spacing: -0.015em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
  animation: slideFadeUp 0.8s ease forwards;
}

/* Subtitle */
.hero-slider-subtitle {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.25rem;
  line-height: 1.32;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  animation: slideFadeUp 0.92s ease forwards;
}

/* Italic Catchphrase */
.hero-slider-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: #e5c46e;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: slideFadeUp 1.02s ease forwards;
}

/* Body description paragraph */
.hero-slider-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin-bottom: 1.15rem;
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: slideFadeUp 1.12s ease forwards;
}

/* 2-Column arrow link grid */
.hero-slider-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 220px));
  gap: 0.5rem 1.75rem;
  margin-bottom: 1.35rem;
  max-width: 500px;
  animation: slideFadeUp 1.22s ease forwards;
}

.hero-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-link-item i {
  color: #d4af37;
  font-size: 0.78rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.hero-link-item:hover {
  color: #ffffff;
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateX(4px);
}

.hero-link-item:hover i {
  color: #e5c46e;
  transform: translateX(3px);
}

/* CTA Buttons */
.hero-slider-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
  animation: slideFadeUp 1.32s ease forwards;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #a67c2e 0%, #875d19 100%);
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.82rem 1.85rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(166, 124, 46, 0.4);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #ba8c36 0%, #996a1d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(166, 124, 46, 0.55);
  color: #ffffff !important;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.82rem 1.85rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #d4af37;
  color: #d4af37 !important;
  transform: translateY(-2px);
}

.hero-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.82rem 1.45rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.hero-btn-wa:hover {
  background: #1eb857;
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* Micro-Note Subtext */
.hero-slider-note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.65rem;
  max-width: 580px;
  line-height: 1.45;
}

/* Slider Nav Controls (Prev/Next) */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.hero-slider-nav.prev { left: clamp(0.75rem, 1.5vw, 1.75rem); }
.hero-slider-nav.next { right: clamp(0.75rem, 1.5vw, 1.75rem); }

.hero-slider-nav:hover {
  background: #a67c2e;
  border-color: #d4af37;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

/* Pagination Dots */
.hero-slider-pagination {
  position: absolute;
  bottom: 2.2rem;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero-dot {
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.hero-dot.active {
  width: 48px;
  background: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
}

@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legacy Hero Fallback */
.hero { background-size: cover; background-position: center; background-repeat: no-repeat; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; position: relative; padding-top: 80px; background-color: #0d1b2a; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(74,124,63,0.06) 0%, transparent 50%); pointer-events: none; }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; max-width: 900px; margin: 0 auto; padding: 4rem 2rem 3rem; position: relative; z-index: 2; }

/* Booking widget */
.hero-booking { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid rgba(201,168,76,0.15); }
.booking-title { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--text); padding-bottom: 1rem; border-bottom: 1px solid var(--cream-dark); }
.booking-form .form-group { margin-bottom: 1.1rem; }
.booking-form label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-mid); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.booking-form select, .booking-form input { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid rgba(44,44,44,0.12); border-radius: 8px; font-family: inherit; font-size: 0.93rem; color: var(--text); background: var(--cream); transition: var(--transition); }
.booking-form select:focus, .booking-form input:focus { outline: none; border-color: var(--gold); }
.form-row { display: flex; gap: 0.8rem; }
.form-group.half { flex: 1; }
.counter { display: flex; align-items: center; gap: 0.8rem; border: 1.5px solid rgba(44,44,44,0.12); border-radius: 8px; padding: 0.5rem 1rem; background: var(--cream); }
.cnt-btn { background: none; border: none; font-size: 1.2rem; color: var(--gold); cursor: pointer; font-weight: 700; padding: 0 4px; }
.counter span { flex: 1; text-align: center; font-weight: 700; font-size: 1rem; }

/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */
.announcement-banner {
  background: linear-gradient(90deg, #132a1a 0%, #1e3d26 50%, #132a1a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.announcement-banner p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.announcement-banner i {
  color: #d4af37;
  font-size: 1rem;
}

.announcement-link {
  color: #e5c46e;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-bottom: 1.5px solid #d4af37;
  transition: all 0.25s ease;
}

.announcement-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* ============================================================
   LUXURY STATS / NUMBERS SECTION (Reference Design)
   ============================================================ */
.luxury-stats-section {
  padding: 1.5rem 0 2rem;
  background-color: var(--cream);
  position: relative;
}

.luxury-stats-section .container {
  max-width: 1380px;
  width: 96%;
}

.luxury-stats-card {
  background: #faf7f2;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.035), 0 2px 6px rgba(212, 175, 55, 0.04);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.15rem 1rem;
  position: relative;
  overflow: hidden;
}

.luxury-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.35rem 1rem;
  position: relative;
  border-right: 1px solid rgba(212, 175, 55, 0.28);
}

.luxury-stat-item:last-child {
  border-right: none;
}

.luxury-stat-item .stat-number {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  font-weight: 500;
  color: #bfa15f;
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.luxury-stat-item .stat-number sup {
  font-size: 0.55em;
  font-weight: 400;
  margin-left: 2px;
  position: relative;
  top: -0.3em;
}

.luxury-stat-item .stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8c8270;
}

@media (max-width: 860px) {
  .luxury-stats-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.25rem 1rem;
  }
  .luxury-stat-item:nth-child(2) {
    border-right: none;
  }
  .luxury-stat-item:nth-child(1),
  .luxury-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .luxury-stats-card {
    grid-template-columns: 1fr;
    padding: 1rem 0.75rem;
  }
  .luxury-stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    padding: 0.85rem 0;
  }
  .luxury-stat-item:last-child {
    border-bottom: none;
  }
  .luxury-stat-item:nth-child(1),
  .luxury-stat-item:nth-child(2) {
    margin-bottom: 0;
  }
}

/* Trust bar */
.hero-trust { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; padding: 1.2rem 2rem; background: rgba(255,255,255,0.7); border-top: 1px solid rgba(201,168,76,0.15); font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }
.hero-trust span { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust i { color: var(--gold); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 6rem 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card { padding: 1.8rem; border-radius: var(--radius); border: 1px solid rgba(201,168,76,0.12); background: var(--cream); text-align: center; transition: var(--transition); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.feature-icon { width: 60px; height: 60px; background: rgba(201,168,76,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.4rem; color: var(--gold); transition: var(--transition); }
.feature-card:hover .feature-icon { background: var(--gold); color: var(--white); }
.feature-card h4 { margin-bottom: 0.6rem; color: var(--text); font-size: 1rem; }
.feature-card p { font-size: 0.88rem; line-height: 1.6; }

/* ============================================================
   MODERN LUXURY PACKAGES DESIGN
   ============================================================ */
.packages {
  padding: 5.5rem 0;
  background: var(--cream);
  position: relative;
}

.package-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pkg-tab {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid rgba(44,44,44,0.15);
  border-radius: 50px;
  background: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.pkg-tab.active, .pkg-tab:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #0d1b2a;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.22);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(166, 124, 46, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #d4af37;
}

.package-card.featured {
  border: 1.5px solid #d4af37;
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.14);
}

.pkg-img-wrap,
.pkg-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: #0d1b2a;
}

.pkg-img-wrap img,
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.package-card:hover .pkg-img-wrap img,
.package-card:hover .pkg-img img {
  transform: scale(1.08);
}

.pkg-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%, rgba(13, 27, 42, 0.75) 100%);
  pointer-events: none;
}

.pkg-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: 50px;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(6px);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.pkg-badge.gold,
.pkg-badge.gold-badge {
  background: linear-gradient(135deg, #c9a84c 0%, #b38e36 100%);
  border-color: rgba(255, 255, 255, 0.35);
  color: #0d1b2a !important;
}

.pkg-badge.green,
.pkg-badge.green-badge {
  background: #2C6B2F;
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
}

.pkg-badge.purple {
  background: #6a4c93;
  color: #ffffff !important;
}

/* Fallback for cards without an image container */
.package-card:not(:has(.pkg-img-wrap)):not(:has(.pkg-img)) > .pkg-badge {
  position: relative;
  top: auto;
  left: auto;
  display: inline-block;
  align-self: flex-start;
  margin: 1.2rem 1.2rem 0.5rem;
}

.pkg-duration-pill {
  position: absolute;
  bottom: 0.9rem;
  right: 1rem;
  z-index: 2;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #e5c46e;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.pkg-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #7a7062;
  margin-bottom: 0.65rem;
}

.pkg-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pkg-meta i {
  color: #c9a84c;
}

.package-card h3,
.pkg-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.pkg-subtitle {
  font-size: 0.82rem;
  color: #7a7062;
  margin-bottom: 1rem;
  font-weight: 500;
}

.pkg-desc {
  font-size: 0.88rem;
  color: #666055;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.pkg-price-val {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pkg-price-val .from,
.pkg-price .from {
  font-size: 0.78rem;
  color: #8c8270;
  text-transform: uppercase;
  font-weight: 600;
}

.pkg-price-val .amount,
.pkg-price strong,
.pkg-price .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1b4332;
  line-height: 1;
}

.pkg-price-val .per,
.pkg-price .per {
  font-size: 0.8rem;
  color: #8c8270;
}

.pkg-rating {
  font-size: 0.8rem;
  color: #f5a623;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.pkg-features,
.pkg-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.pkg-features li,
.pkg-features-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #4a4a4a;
  padding: 0.35rem 0;
  line-height: 1.4;
}

.pkg-features li i,
.pkg-features-list li i {
  color: #bfa15f;
  font-size: 0.85rem;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  gap: 0.75rem;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
}

/* 2 Action Buttons: View Details + WhatsApp */
.pkg-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.pkg-btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #0d1b2a;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(13, 27, 42, 0.15);
}

.pkg-btn-details:hover {
  background: linear-gradient(135deg, #a67c2e 0%, #875d19 100%);
  border-color: #d4af37;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(166, 124, 46, 0.35);
}

.pkg-btn-details i {
  font-size: 0.78rem;
  transition: transform 0.25s ease;
}

.pkg-btn-details:hover i {
  transform: translateX(3px);
}

.pkg-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #25D366;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.pkg-btn-wa:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  color: #ffffff !important;
}

.pkg-btn-wa i {
  font-size: 1rem;
}

/* ============================================================
   AREAS WE COVER & UMRAH KEYWORDS (Reference Editorial Design)
   ============================================================ */
.coverage-areas-section {
  padding: 6rem 0 6.5rem;
  background: var(--white);
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 4.5rem;
  align-items: start;
}

.coverage-intro {
  position: sticky;
  top: 100px;
}

.coverage-tag {
  display: block;
  font-family: 'Cinzel', 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bfa15f;
  margin-bottom: 0.75rem;
}

.coverage-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
  font-size: clamp(2.2rem, 3.4vw, 3.1rem) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: #bfa15f !important;
  line-height: 1.25 !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.01em;
}

.coverage-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #6c6353;
  margin-bottom: 2rem;
}

.coverage-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1px solid #bfa15f;
  border-radius: 6px;
  background: transparent;
  color: #8c733e;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.coverage-btn:hover {
  background: #d4af37;
  color: #0d1b2a;
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

.coverage-groups {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.coverage-group-item {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 1.25rem;
}

.coverage-group-header {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.coverage-group-title {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2b261f;
  margin: 0;
}

.coverage-group-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
  color: #bfa15f;
}

.coverage-links-paragraph {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.05rem;
  line-height: 1.95;
  color: #706553;
  margin: 0;
}

.coverage-links-paragraph a {
  color: #706553;
  text-decoration: none;
  transition: color 0.25s ease, text-decoration 0.25s ease;
}

.coverage-links-paragraph a:hover {
  color: #a67c2e;
  text-decoration: underline;
}

.coverage-pill-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.coverage-pill-tag {
  background: #faf7f2;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #5c5242;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.coverage-pill-tag:hover {
  background: #d4af37;
  color: #0d1b2a;
  border-color: #d4af37;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .coverage-intro {
    position: static;
  }
}

/* ============================================================
   PROCESS AUTO-SLIDER & PROFESSIONAL DOCUMENTS (Visa Assistance)
   ============================================================ */
.process-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1.5rem 0.5rem 1.5rem;
}

.process-slider-track::-webkit-scrollbar {
  display: none;
}

.process-slide-card {
  flex: 0 0 310px;
  min-width: 290px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-slide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.16);
}

.process-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #0d1b2a;
  font-size: 0.82rem;
  font-weight: 800;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.35);
}

.process-icon-wrap {
  font-size: 2.2rem;
  color: #bfa15f;
  margin: 0.5rem 0 1rem;
  transition: transform 0.3s ease;
}

.process-slide-card:hover .process-icon-wrap {
  transform: scale(1.1);
  color: #d4af37;
}

.process-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.process-card-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: #6c6353;
  line-height: 1.6;
  margin: 0;
}

/* Document Matrix Grid */
.doc-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.doc-matrix-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.doc-matrix-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.15);
}

.doc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.doc-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfa15f;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.doc-matrix-card:hover .doc-card-icon {
  background: #d4af37;
  color: #0d1b2a;
}

.doc-badge {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.12);
  color: #8c733e;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.doc-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.3rem;
}

.doc-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #bfa15f;
  margin-bottom: 0.85rem;
}

.doc-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #6c6353;
  margin: 0;
  flex-grow: 1;
}

/* Compliance Verification Callout Bar */
.compliance-action-bar {
  margin-top: 3rem;
  background: linear-gradient(135deg, #0d1b2a 0%, #172d42 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 2.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 12px 36px rgba(13, 27, 42, 0.2);
}

.compliance-info h3 {
  font-family: 'Cinzel', serif;
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.compliance-info p {
  color: #d1c7b7;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

.compliance-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .doc-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .compliance-action-bar {
    flex-direction: column;
    text-align: center;
  }
  .compliance-btns {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 650px) {
  .doc-matrix-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ZIYARAT HERO BANNER & SACRED PLACES CARDS (Reference Design)
   ============================================================ */
.ziyarat-forum-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(245, 239, 230, 0.95) 0%, rgba(235, 225, 210, 0.92) 45%, rgba(220, 205, 185, 0.4) 100%),
              url('https://thumb.wikimedia.org/wikipedia/commons/thumb/d/d2/Al-Madinah%29Prophet_Mohammed_%28SAV%29_Mosque_-_panoramio.jpg/1280px-Al-Madinah%29Prophet_Mohammed_%28SAV%29_Mosque_-_panoramio.jpg') center/cover no-repeat;
  padding: 6.5rem 0 6rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
}

.ziyarat-forum-content {
  max-width: 780px;
}

.ziyarat-forum-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8c733e;
  margin-bottom: 1rem;
}

.ziyarat-forum-title {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #3b2a47;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.ziyarat-forum-desc {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #55483a;
  margin-bottom: 2.2rem;
}

.ziyarat-forum-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.ziyarat-hero-btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #c9a84c 0%, #b38e36 100%);
  color: #0d1b2a !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}

.ziyarat-hero-btn-phone:hover {
  background: linear-gradient(135deg, #b38e36 0%, #947225 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.45);
}

.ziyarat-hero-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #25d366;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.ziyarat-hero-btn-wa:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Ziyarat Destination Places Grid */
.ziyarat-places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2.8rem;
}

.ziyarat-place-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ziyarat-place-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.16);
}

.ziyarat-place-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ziyarat-place-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ziyarat-place-card:hover .ziyarat-place-img-wrap img {
  transform: scale(1.08);
}

.ziyarat-place-city-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #d4af37;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.ziyarat-place-body {
  padding: 1.75rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ziyarat-place-title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.35rem;
}

.ziyarat-place-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: #bfa15f;
  margin-bottom: 0.85rem;
}

.ziyarat-place-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #635848;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.ziyarat-place-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  gap: 0.8rem;
}

.ziyarat-card-btns {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}

.ziyarat-card-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #25d366;
  color: #ffffff !important;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ziyarat-card-wa:hover {
  background: #1eb857;
  transform: translateY(-2px);
}

.ziyarat-card-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #0d1b2a;
  color: #d4af37 !important;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ziyarat-card-call:hover {
  background: #d4af37;
  color: #0d1b2a !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ziyarat-places-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SACRED SIGHTS / GALLERY SLIDER (Reference Design)
   ============================================================ */
.gallery {
  padding: 5.5rem 0 6rem;
  background: #FAF7F2;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.sights-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.8rem;
}

.sights-tag {
  display: block;
  font-family: 'Cinzel', 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #bfa15f;
  margin-bottom: 0.6rem;
}

.sights-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
  font-size: clamp(2.3rem, 4vw, 3.4rem) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: #bfa15f !important;
  margin: 0 auto;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sights-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
}

.sights-slider-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.sights-slider-track::-webkit-scrollbar {
  display: none;
}

.sight-card {
  min-width: 320px;
  max-width: 320px;
  height: 250px;
  flex: 0 0 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  cursor: grab;
  user-select: none;
  background: #0d1b2a;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sight-card:active {
  cursor: grabbing;
}

.sight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(166, 124, 46, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d4af37;
}

.sight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.sight-card:hover img {
  transform: scale(1.08);
}

.sight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.4rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.sight-card:hover .sight-overlay {
  opacity: 1;
}

.sight-overlay h4 {
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.sight-overlay p {
  color: #e5c46e;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sights-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 5;
  flex-shrink: 0;
}

.sights-nav-btn:hover {
  background: #d4af37;
  color: #0d1b2a;
  border-color: #d4af37;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.sights-nav-btn.prev {
  margin-right: 0.75rem;
}

.sights-nav-btn.next {
  margin-left: 0.75rem;
}

@media (max-width: 768px) {
  .sights-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
  .sights-nav-btn.prev {
    margin-right: 0.35rem;
  }
  .sights-nav-btn.next {
    margin-left: 0.35rem;
  }
  .sight-card {
    min-width: 260px;
    max-width: 260px;
    height: 210px;
    flex: 0 0 260px;
    border-radius: 16px;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 6rem 0; background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(201,168,76,0.1); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card.featured-review { border: 2px solid var(--gold); background: linear-gradient(135deg, #fff 60%, rgba(201,168,76,0.05)); }
.stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card > p { font-size: 0.92rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.author-avatar.gold { background: var(--gold); color: var(--dark); }
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   TRUSTED AIRLINE & LUXURY HOTEL PARTNERS (Reference Design)
   ============================================================ */
.partners-section {
  padding: 5.5rem 0 6rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.partners-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.2rem;
}

.partners-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
  font-size: clamp(2.1rem, 3.8vw, 3rem) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: #bfa15f !important;
  margin-bottom: 0.85rem !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.partners-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.96rem;
  line-height: 1.75;
  color: #6c6353;
  margin: 0 auto;
}

.partners-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.partner-tab {
  padding: 0.45rem 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  background: #faf7f2;
  font-family: 'Lato', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #7a7062;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-tab:hover,
.partner-tab.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #0d1b2a;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.partners-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
}

.partners-slider-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1.25rem 0.75rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.partners-slider-track::-webkit-scrollbar {
  display: none;
}

.partner-card {
  background: #faf7f2;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  padding: 1.35rem 1.1rem;
  min-width: 220px;
  max-width: 220px;
  height: 125px;
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.025);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.partner-card:active {
  cursor: grabbing;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.16), 0 4px 10px rgba(0, 0, 0, 0.04);
}

.partners-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 5;
  flex-shrink: 0;
}

.partners-nav-btn:hover {
  background: #d4af37;
  color: #0d1b2a;
  border-color: #d4af37;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.partners-nav-btn.prev {
  margin-right: 0.75rem;
}

.partners-nav-btn.next {
  margin-left: 0.75rem;
}

.partner-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-logo-svg {
  height: 36px;
  width: auto;
  max-width: 120px;
  margin-bottom: 0.4rem;
  filter: grayscale(100%) opacity(0.75);
  transition: all 0.35s ease;
}

.partner-card:hover .partner-logo-svg {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

.partner-brand-name {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3b3730;
  margin-top: 0.25rem;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.partner-card:hover .partner-brand-name {
  color: #a67c2e;
}

.partner-category-tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a907f;
  margin-top: 0.2rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .partners-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
  .partners-nav-btn.prev {
    margin-right: 0.35rem;
  }
  .partners-nav-btn.next {
    margin-left: 0.35rem;
  }
  .partner-card {
    min-width: 190px;
    max-width: 190px;
    flex: 0 0 190px;
    padding: 1.1rem 0.85rem;
    height: 115px;
  }
  .partners-title {
    font-size: 1.85rem !important;
  }
  .partner-brand-name {
    font-size: 0.82rem;
  }
  .partner-category-tag {
    font-size: 0.6rem;
  }
}

/* ============================================================
   JOURNEY SECTION
   ============================================================ */
.journey-section { padding: 0; }
.journey-bg { background-size: cover; background-position: center; background-repeat: no-repeat; background: var(--dark); padding: 6rem 2rem; }
.journey-content-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: center; }
.journey-text h2 { color: var(--white); margin: 1rem 0 1.5rem; }
.journey-text h2 em { color: var(--gold-light); }
.journey-text p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; line-height: 1.8; }
.journey-list { margin-bottom: 2.5rem; }
.journey-list li { display: flex; align-items: center; gap: 0.8rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.journey-list li i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.journey-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.journey-image { position: relative; }
.journey-image img { border-radius: var(--radius-lg); width: 100%; height: 480px; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.journey-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--gold); padding: 1.2rem 1.8rem; border-radius: var(--radius); display: flex; flex-direction: column; box-shadow: var(--shadow-md); }
.journey-badge i { font-size: 1.5rem; color: var(--dark); margin-bottom: 0.3rem; }
.journey-badge strong { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--dark); }
.journey-badge span { font-size: 0.8rem; color: rgba(26,26,46,0.75); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 6rem 0; background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 960px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid rgba(201,168,76,0.12); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; background: none; border: none; text-align: left; font-family: inherit; font-size: 0.95rem; font-weight: 700; color: var(--text); cursor: pointer; transition: var(--transition); }
.faq-q:hover { color: var(--gold); }
.faq-q i { color: var(--gold); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a.open { max-height: 300px; padding: 0 1.5rem 1.3rem; }
.faq-a p { font-size: 0.9rem; line-height: 1.75; color: var(--text-mid); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 6rem 0; background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-details { margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.contact-item i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); margin-bottom: 0.2rem; }
.contact-item span { font-size: 0.9rem; color: var(--text-mid); }
.social-links { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--text-mid); font-size: 0.95rem; transition: var(--transition); }
.social-links a:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* Contact form */
.contact-form .form-group { margin-bottom: 1.2rem; }
.contact-form label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-mid); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 0.8rem 1.1rem; border: 1.5px solid rgba(44,44,44,0.12); border-radius: 8px; font-family: inherit; font-size: 0.93rem; color: var(--text); background: var(--cream); transition: var(--transition); resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-top: 0.8rem; }
.form-note i { color: var(--green); margin-right: 0.3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr; gap: 3rem; align-items: start; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { height: 72px; width: auto; margin-bottom: 1.2rem; border-radius: 8px; background: #fff; padding: 6px 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-col h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0.8rem; }
.footer-contact li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { display: flex; align-items: flex-start; gap: 0.7rem; color: rgba(255,255,255,0.6); transition: var(--transition); text-decoration: none; }
.footer-contact li a i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a:hover { color: var(--gold); padding-left: 4px; }
.newsletter { margin-top: 1.5rem; }
.newsletter h6 { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--white); margin-bottom: 0.8rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input { flex: 1; padding: 0.6rem 1rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; background: rgba(255,255,255,0.07); color: var(--white); font-family: inherit; font-size: 0.85rem; }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   FLOATING ELEMENTS (Touch Optimized)
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover, .whatsapp-float:active {
  background: #1da851;
  transform: scale(1.08);
}
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 999;
  width: 42px;
  height: 42px;
  background: #d4af37;
  border-radius: 50%;
  border: 1px solid rgba(13,27,42,0.15);
  color: #0d1b2a;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: opacity 0.3s ease, transform 0.25s ease, background 0.25s ease;
  opacity: 0;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover, .back-to-top:active {
  background: #bfa15f;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ---- SERVICES SECTION (Black & Gold Theme) ---- */
.services-section {
  background-color: #000000 !important;
  color: #ffffff;
  padding: 6rem 0;
}
.services-section .section-tag {
  background: rgba(201, 168, 76, 0.18) !important;
  color: #e5c46e !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
}
.services-section h2 {
  color: #ffffff !important;
}
.services-section h2 em {
  color: #c9a84c !important;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-alt, #F7F5F0);
  padding: 2rem;
  border-radius: var(--radius, 12px);
  text-align: center;
  text-decoration: none;
  color: var(--text, #1A1A1A);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #c9a84c;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
  background: #ffffff;
}
.service-card i {
  font-size: 2.2rem;
  color: #c9a84c !important;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.service-card:hover i {
  transform: scale(1.12);
  color: #e5c46e !important;
}
.service-card h4 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-size: 1.15rem;
}
.service-card p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
}

/* ============================================================
   WHAT WE HANDLE - PILGRIMAGE SERVICES CATALOG SECTION
   ============================================================ */
.handle-section {
  padding: 5rem 0;
  background-color: #ffffff;
  position: relative;
}

.handle-header {
  margin-bottom: 2.75rem;
  max-width: 860px;
}

.handle-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.85rem;
}

.handle-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.handle-subtitle {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  color: #5f6c7b;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.handle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ebe9e4;
  gap: 1px;
  border: 1px solid #ebe9e4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.handle-card {
  background: #ffffff;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.handle-card:hover {
  background: #fbfaf7;
}

.handle-card-text {
  margin-bottom: 1.75rem;
}

.handle-card-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.28;
  transition: color 0.25s ease;
}

.handle-card:hover .handle-card-title {
  color: #0b1a28;
}

.handle-card-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5f6c7b;
  margin: 0;
  font-weight: 400;
}

.handle-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #c9a84c;
  line-height: 1;
  transition: color 0.25s ease;
  letter-spacing: 0.02em;
}

.handle-arrow i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.handle-card:hover .handle-arrow {
  color: #a67c2e;
}

.handle-card:hover .handle-arrow i {
  transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE - MASTER MOBILE DESIGN SYSTEM
   ============================================================ */
@media (max-width: 1200px) {
  .nav-container { padding: 0.6rem 1.25rem; }
  .nav-links { gap: 0.85rem; }
  .coverage-layout { gap: 3rem; }
  .about-story-grid { gap: 3rem; }
  .journey-content-wrap { gap: 3rem; }
}

@media (max-width: 992px) {
  /* Header Mobile Stability - Remove backdrop-filter to prevent containing block trap */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 60px !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(201,168,76,0.2) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
    z-index: 100000 !important;
  }

  .nav-container {
    height: 100% !important;
    padding: 0 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
  }
  
  .hamburger { display: flex; }
  
  /* Mobile Navigation Drawer Overlay - True Viewport Coverage */
  .nav-links {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100vh - 60px) !important;
    height: calc(100dvh - 60px) !important;
    max-height: calc(100vh - 60px) !important;
    max-height: calc(100dvh - 60px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: #ffffff !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0.75rem 1.25rem 6rem !important;
    margin: 0 !important;
    box-shadow: 0 16px 36px rgba(0,0,0,0.18) !important;
    border-top: 2px solid var(--primary, #2C6B2F) !important;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, visibility 0.2s;
    z-index: 99999 !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    list-style: none !important;
  }
  
  .nav-links.open {
    display: flex !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  
  .nav-links > li {
    width: 100% !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
    position: relative !important;
    list-style: none !important;
  }

  .nav-links > li:last-child {
    border-bottom: none !important;
  }
  
  .nav-links > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 48px !important;
    padding: 0.75rem 0.6rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--text, #1a1a1a) !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    transition: background 0.2s ease, color 0.2s ease !important;
  }
  
  .nav-links > li > a:hover,
  .nav-links > li > a:active,
  .nav-links > li > a.active-nav {
    color: var(--primary, #2C6B2F) !important;
    background: rgba(44,107,47,0.06) !important;
  }

  .nav-links > li.hajj-item {
    margin: 0.65rem 0 !important;
    border-bottom: none !important;
  }

  .nav-links > li.hajj-item > a {
    background: var(--primary, #2C6B2F) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    justify-content: center !important;
    min-height: 46px !important;
    box-shadow: 0 4px 12px rgba(44,107,47,0.25) !important;
  }

  .nav-links > li.hajj-item > a:hover,
  .nav-links > li.hajj-item > a:active {
    background: var(--primary-dk, #1b4332) !important;
    color: #ffffff !important;
  }

  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  /* Hero Slider (Tablet) */
  .hero-slider-section { min-height: 90vh; }
  .hero-slide { min-height: 90vh; background-position: center; }
  .hero-slide-scrim {
    background: linear-gradient(
      180deg,
      rgba(10, 16, 23, 0.85) 0%,
      rgba(10, 16, 23, 0.78) 50%,
      rgba(10, 16, 23, 0.94) 100%
    );
  }
  .hero-slide-content {
    padding-top: 90px;
    padding-bottom: 4rem;
    padding-left: 0 !important;
    padding-right: 1.5rem;
    max-width: 780px;
  }
  .hero-slider-links { grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1.2rem; max-width: 100%; }
  .hero-slider-nav { display: none !important; }
  .hero-slider-pagination { display: none !important; }

  /* Grids Stack to 2 Columns */
  .handle-grid { grid-template-columns: repeat(2, 1fr); }
  .handle-card { padding: 2rem 1.75rem; min-height: 205px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }
  .coverage-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .coverage-intro { position: static; }
}

@media (max-width: 768px) {
  /* Site Layout & Spacing */
  .container { padding: 0 1rem; }
  .section-header { margin-bottom: 2.25rem; text-align: center; }
  .section-header h2 { font-size: clamp(1.65rem, 5vw, 2.1rem); }
  .section-header p { font-size: 0.92rem; }
  .inner-section, .packages, .features, .testimonials, .gallery, .partners-section, .contact { padding: 3.5rem 0; }
  .handle-section { padding: 3.5rem 0; }
  .handle-header { margin-bottom: 2rem; }
  .handle-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .handle-card { padding: 1.6rem 1.35rem; min-height: auto; }
  .handle-card-title { font-size: 1.2rem; }

  /* Header */
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
  }
  .nav-container { padding: 0.45rem 1rem; }
  .nav-logo img { height: 46px; }

  /* Hero Slider Mobile */
  .hero-slider-section { min-height: 100svh; }
  .hero-slide { min-height: 100svh; }
  .hero-slider-nav { display: none !important; }
  .hero-slider-pagination { display: none !important; }
  .hero-slide-scrim {
    background: linear-gradient(
      180deg,
      rgba(8, 14, 20, 0.9) 0%,
      rgba(8, 14, 20, 0.85) 45%,
      rgba(8, 14, 20, 0.96) 100%
    );
  }
  .hero-slide-content {
    padding-top: 85px;
    padding-bottom: 2rem;
    padding-left: 0 !important;
    padding-right: 1rem;
    max-width: 100%;
  }
  .hero-slider-tag {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
  }
  .hero-slider-title {
    font-size: clamp(1.75rem, 5.8vw, 2.25rem);
    line-height: 1.18;
    margin-bottom: 0.45rem;
  }
  .hero-slider-subtitle {
    font-size: clamp(1.05rem, 3.2vw, 1.22rem);
    line-height: 1.3;
    margin-bottom: 0.3rem;
  }
  .hero-slider-tagline {
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
  }
  .hero-slider-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 100%;
  }
  .hero-slider-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.85rem;
    margin-bottom: 1.35rem;
    width: 100%;
  }
  .hero-link-item {
    font-size: 0.84rem;
  }
  .hero-slider-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
  }
  .hero-btn-primary, .hero-btn-secondary, .hero-btn-wa {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    font-size: 0.92rem;
  }

  /* Luxury Stats Section */
  .luxury-stats-section { padding: 1rem 0 1.5rem; }
  .luxury-stats-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 0.75rem;
    gap: 0.5rem 0;
  }
  .luxury-stat-item {
    padding: 0.6rem 0.5rem;
  }
  .luxury-stat-item:nth-child(2) {
    border-right: none;
  }
  .luxury-stat-item:nth-child(1),
  .luxury-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  }
  .luxury-stat-item .stat-number {
    font-size: 2.1rem;
  }

  /* Package Cards Mobile */
  .packages-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .package-card { border-radius: 14px; }
  .pkg-img-wrap, .pkg-img { height: 190px; }
  .pkg-body { padding: 1.25rem 1.1rem; }
  .pkg-title { font-size: 1.35rem; }
  .pkg-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .pkg-btn-details, .pkg-btn-wa {
    min-height: 44px;
    font-size: 0.84rem;
    padding: 0.65rem 0.6rem;
  }

  /* 1-Column Stacks */
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.2rem; }
  .journey-content-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .journey-image { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  
  /* Footer Mobile */
  .site-footer .footer-top { padding: 3.5rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
  .footer-logo { height: 56px; }
  .footer-col h5 { margin-bottom: 0.8rem; }
  .footer-col ul li { margin-bottom: 0.55rem; }
  .footer-col ul a {
    display: inline-block;
    padding: 0.2rem 0;
    min-height: 32px;
  }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; min-height: 44px; }
  .newsletter-form button { width: 100%; min-height: 44px; justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-legal { justify-content: center; gap: 1.2rem; }
  
  /* Floating CTA Mobile Spacing */
  .whatsapp-float {
    bottom: 4.8rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
  .back-to-top {
    bottom: 1.25rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    font-size: 0.88rem;
  }
}

@media (max-width: 540px) {
  .hero-slider-links {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .hero-slider-title {
    font-size: clamp(1.55rem, 6.2vw, 1.95rem);
  }
  .hero-slider-subtitle {
    font-size: 0.98rem;
  }
  .hero-slider-tagline {
    font-size: 0.88rem;
  }
  .hero-slider-desc {
    font-size: 0.84rem;
    line-height: 1.55;
  }
  
  /* Buttons full width on small mobile */
  .package-tabs { gap: 0.35rem; margin-bottom: 1.5rem; }
  .pkg-tab { padding: 0.45rem 0.9rem; font-size: 0.8rem; }

  /* Sights & Partners Touch Tracks */
  .sight-card {
    min-width: 260px;
    max-width: 260px;
    height: 200px;
    flex: 0 0 260px;
  }
  .partner-card {
    min-width: 175px;
    max-width: 175px;
    height: 110px;
    flex: 0 0 175px;
    padding: 0.9rem 0.6rem;
  }

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

@media (max-width: 380px) {
  .container { padding: 0 0.85rem; }
  .nav-container { padding: 0.4rem 0.75rem; }
  .nav-logo img { height: 38px; }
  .section-header h2 { font-size: 1.48rem; }
  .hero-slider-title { font-size: 1.45rem; }
  .pkg-actions { grid-template-columns: 1fr; }
  .pkg-btn-details, .pkg-btn-wa { width: 100%; justify-content: center; }
  .luxury-stats-card { grid-template-columns: 1fr; }
  .luxury-stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  }
  .luxury-stat-item:last-child { border-bottom: none; }
}

/* CAROUSEL & TOUCH SWIPE TRACKS */
.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track > * {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
}
@media (max-width: 992px) {
  .carousel-track > * { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 640px) {
  .carousel-track > * { flex: 0 0 88%; min-width: 270px; }
}
