/* ============ Dar alBaraka — Global Styles ============ */
:root {
  --color-primary: #1aa89a;
  --color-primary-dark: #0e6f66;
  --color-accent: #f78f29;
  --color-accent-hover: #e57b16;
  --color-text: #0c2a52;
  --color-text-muted: #6b7a90;
  --color-bg: #ffffff;
  --color-bg-soft: #f4f7fc;
  --color-bg-cream: #fdf3e7;
  --color-border: #e6ebf2;
  --color-success: #2ec27e;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 12px rgba(12, 42, 82, 0.06);
  --shadow-md: 0 10px 30px rgba(12, 42, 82, 0.1);
  --shadow-lg: 0 20px 50px rgba(12, 42, 82, 0.15);
  --container: 1240px;
  --transition: 0.25s ease;
  --font-body: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-heading: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-script: 'Caveat', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Accessibility — skip link (visible only on keyboard focus) */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 999;
  background: var(--color-primary-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; color: #fff; outline: 3px solid var(--color-accent); outline-offset: 2px; }

/* Better focus rings for keyboard users */
*:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { outline-offset: 4px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-soft { background: var(--color-bg-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.eyebrow svg { width: 18px; height: 18px; color: var(--color-primary); }

.script-text {
  font-family: var(--font-script);
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: 500;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: var(--color-primary); color: #fff; }
.btn-secondary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--color-primary); }
.btn-light { background: #fff; color: var(--color-primary-dark); }
.btn-light:hover { background: var(--color-accent); color: #fff; }

/* ============ Top Bar ============ */
.topbar {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 11px 0;
  font-size: 0.88rem;
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
  pointer-events: none;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-info { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.topbar-info span { display: flex; align-items: center; gap: 8px; }
.topbar-info svg { width: 16px; height: 16px; }
.topbar-social { display: flex; gap: 16px; }
.topbar-social a { color: #fff; opacity: 0.9; transition: opacity var(--transition); }
.topbar-social a:hover { opacity: 1; color: var(--color-accent); }
.topbar-social svg { width: 18px; height: 18px; }

/* ============ Header / Nav (Floating Glass Pill) ============ */
.header {
  position: sticky;
  top: 14px;
  margin: 14px 20px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(245, 252, 250, 0.7) 50%, rgba(255, 248, 240, 0.7) 100%);
  -webkit-backdrop-filter: blur(22px) saturate(200%);
          backdrop-filter: blur(22px) saturate(200%);
  z-index: 100;
  box-shadow:
    0 12px 40px rgba(12, 42, 82, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(26, 168, 154, 0.08), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(247, 143, 41, 0.08), transparent 40%);
  border-radius: inherit;
  pointer-events: none;
}
.header.scrolled {
  top: 8px;
  margin: 8px 14px 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 14px 50px rgba(12, 42, 82, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 16px;
}
.header > .container { position: relative; z-index: 1; }
@media (max-width: 1024px) {
  .header { margin: 8px 12px 0; border-radius: 18px; }
  .header.scrolled { margin: 6px 10px 0; }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--color-primary-dark); }
.logo-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: block;
}
.footer .logo-mark { background: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 1.1rem; }
.logo-text small { font-size: 0.7rem; color: var(--color-text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-pill);
}
.nav-link:hover, .nav-link.active { color: var(--color-accent); }
.nav-link svg { width: 12px; height: 12px; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 20px; font-size: 0.95rem; }
.dropdown a:hover { background: var(--color-bg-soft); color: var(--color-accent); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.call-info { display: flex; align-items: center; gap: 12px; }
.call-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.call-icon svg { width: 22px; height: 22px; }
.call-text { display: flex; flex-direction: column; line-height: 1.1; }
.call-text small { font-size: 0.8rem; color: var(--color-text-muted); }
.call-text strong { font-size: 1rem; color: var(--color-primary-dark); }

.menu-toggle { display: none; background: var(--color-primary); color: #fff; padding: 10px; border-radius: 8px; }
.menu-toggle svg { width: 22px; height: 22px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f4f7fc 0%, #fdf3e7 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.hero-eyebrow { font-family: var(--font-script); color: var(--color-accent); font-size: 2.4rem; margin-bottom: 12px; }
.hero h1 { color: var(--color-primary-dark); margin-bottom: 28px; }
.hero p { color: var(--color-text-muted); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius-lg); }
.hero-decor {
  position: absolute;
  font-size: 4rem;
  opacity: 0.15;
}

/* ============ Section header ============ */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header.left { text-align: left; margin: 0 0 40px; }
.section-header h2 { margin-top: 16px; }
.section-header p { color: var(--color-text-muted); margin-top: 16px; }

/* ============ Destinations (reference-style: image on top, colored shoe below, hover-fill) ============ */
.destinations-section { padding: 100px 0; }
.destinations-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.destinations-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-top: 10px; }

.destination-card {
  position: relative;
  display: block;
  text-align: center;
  transition: transform 0.4s ease;
}
.destination-card:hover { transform: translateY(-6px); }

.dc-image {
  position: relative;
  z-index: 4;
  display: block;
  aspect-ratio: 3 / 4;
}
.dc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 130px;
  box-shadow: 0 10px 30px rgba(12, 42, 82, 0.08);
  transition: transform 0.7s ease;
}
.destination-card:hover .dc-image img { transform: scale(1.08); }

.dc-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.35s ease;
}

.dc-content {
  position: relative;
  margin-top: -90px;
  padding-top: 110px;
  z-index: 1;
}
.dc-content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-bg-cream);
  border-radius: 0 0 110px 110px;
}
.dc-content::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--color-primary);
  border-radius: 0 0 110px 110px;
  opacity: 0;
  transform: translateY(80%);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.destination-card:hover .dc-content::after {
  opacity: 1;
  transform: translateY(0);
}

.dc-text {
  position: relative;
  z-index: 4;
  padding: 18px 16px 30px;
}
.dc-label {
  display: block;
  color: var(--color-accent);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  transition: color 0.35s ease;
}
.dc-text h4 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--color-primary-dark);
  transition: color 0.35s ease;
}
.destination-card:hover .dc-text h4,
.destination-card:hover .dc-label { color: #fff; }
.destination-card:hover .dc-badge { background: var(--color-primary-dark); }

/* ============ About ============ */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-images img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  border: 8px solid #fff;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 32px 0; }
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 60px; height: 60px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h4 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { font-size: 0.9rem; color: var(--color-text-muted); }

.about-checklist { margin: 24px 0; }
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
}
.check-icon { color: var(--color-primary); width: 20px; height: 20px; flex-shrink: 0; }

.award-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg-cream);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  text-align: center;
  min-width: 200px;
}
.award-badge svg { width: 50px; height: 50px; color: var(--color-primary); margin-bottom: 12px; }
.award-badge strong { color: var(--color-primary-dark); font-size: 1.1rem; }

/* ============ Tours ============ */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.tour-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  /* Equal-height cards + footer pinned to bottom regardless of description length */
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tour-card .tour-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card .tour-footer {
  margin-top: auto;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tour-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tour-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tour-card:hover .tour-image img { transform: scale(1.06); }
.tour-badges {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; gap: 6px;
}
.tour-badge {
  background: var(--color-primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  display: flex; align-items: center; gap: 4px;
}
.tour-badge svg { width: 14px; height: 14px; }
.tour-content { padding: 24px; }
.tour-title { font-size: 1.2rem; margin-bottom: 12px; }
.tour-desc { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 20px; }
.tour-meta {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 20px;
}
.tour-meta-row { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 8px; }
.tour-meta-row:last-child { margin-bottom: 0; }
.tour-meta-row span { display: flex; align-items: center; gap: 6px; }
.tour-meta-row svg { width: 14px; height: 14px; color: var(--color-accent); }
.tour-footer { display: flex; justify-content: space-between; align-items: center; }
.tour-price { display: flex; flex-direction: column; }
.tour-price small { color: var(--color-text-muted); font-size: 0.8rem; }
.tour-price strong { color: var(--color-primary-dark); font-size: 1.4rem; }
.book-btn {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.book-btn:hover { background: var(--color-accent); color: #fff; }

/* ============ Special Offer ============ */
.offer-section {
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.offer-content .script-text { color: var(--color-accent); margin-bottom: 12px; display: block; }
.offer-content h2 { color: #fff; margin-bottom: 24px; }
.offer-content p { opacity: 0.9; margin-bottom: 28px; }
.offer-image img { border-radius: var(--radius-lg); }

/* ============ Stats ============ */
.stats-section { padding: 60px 0; background: var(--color-bg-soft); margin-top: -50px; position: relative; }
.stats-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat { text-align: center; }
.stat-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
}
.stat-icon svg { width: 36px; height: 36px; }
.stat-num { font-size: 2.4rem; font-weight: 700; color: var(--color-primary-dark); margin-bottom: 6px; }
.stat-label { color: var(--color-text-muted); font-weight: 500; }

/* ============ REELS GALLERY (Instagram/TikTok-style) ============ */
.reels-gallery {
  background: linear-gradient(180deg, #fff 0%, #fdf3e7 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.reels-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.reel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(12, 42, 82, 0.08);
  z-index: 5;
}
.reel-arrow:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(26, 168, 154, 0.35);
  border-color: var(--color-primary);
}
.reel-arrow svg { width: 20px; height: 20px; }
.reel-arrow:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.reels-scroller {
  flex: 1;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 14px 4px 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.reels-scroller::-webkit-scrollbar { display: none; }

/* Individual reel card */
.reel-card {
  flex: 0 0 260px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  background: #0c2a52;
  box-shadow: 0 14px 36px rgba(12, 42, 82, 0.14);
  transition: transform 0.4s cubic-bezier(0.34, 1.5, 0.64, 1), box-shadow 0.4s ease;
}
.reel-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 50px rgba(12, 42, 82, 0.28);
}
.reel-card > img,
.reel-card > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
  filter: saturate(1.1) contrast(1.05);
}
.reel-card:hover > img { transform: scale(1.1); }

/* Video reels — hide the centre play button while playing */
.reel-card.has-video::after {
  content: 'VIDEO';
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Overlay (gradient + content) */
.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 28%),
    linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
}

/* Top: avatar + handle + time */
.reel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}
.reel-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #f78f29, #1aa89a);
  padding: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid #fff;
  box-sizing: border-box;
}
.reel-meta { flex: 1; line-height: 1.2; min-width: 0; overflow: hidden; }
.reel-meta strong { display: block; font-size: 0.82rem; font-weight: 700; }
.reel-meta span { display: block; font-size: 0.7rem; opacity: 0.85; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reel-time {
  font-size: 0.7rem;
  opacity: 0.85;
  background: rgba(0,0,0,0.35);
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

/* Right-side action buttons (heart, comment, share) */
.reel-actions {
  position: absolute;
  right: 10px;
  bottom: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  z-index: 3;
}
.reel-action {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.5, 0.64, 1);
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
}
.reel-action:hover {
  background: var(--color-accent);
  transform: scale(1.12);
}
.reel-action svg { width: 20px; height: 20px; }
.reel-action span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Active heart on first interaction */
.reel-action.liked { background: #ef4444; }
.reel-action.liked svg { fill: #fff; stroke: #fff; }

/* Bottom: caption + music */
.reel-bottom {
  margin-top: auto;
  padding-right: 56px; /* clear right action buttons */
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reel-caption {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.reel-caption strong { display: block; font-weight: 700; margin-bottom: 2px; }
.reel-music {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 999px;
  width: fit-content;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
}
.reel-music svg {
  width: 12px;
  height: 12px;
  animation: spin-slow 4s linear infinite;
}

/* Center play button (visible on hover) */
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.5, 0.64, 1);
  z-index: 4;
}
.reel-card:hover .reel-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.reel-play svg { width: 24px; height: 24px; margin-left: 3px; }

/* CTA below the scroller */
.reels-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* Responsive */
@media (max-width: 1024px) {
  .reel-card { flex: 0 0 230px; border-radius: 18px; }
  .reels-wrapper { gap: 10px; }
  .reel-arrow { width: 40px; height: 40px; }
}
@media (max-width: 640px) {
  .reel-card { flex: 0 0 200px; }
  .reel-actions { right: 6px; bottom: 100px; gap: 10px; }
  .reel-action { width: 34px; height: 34px; }
  .reel-action svg { width: 16px; height: 16px; }
  .reel-play { width: 48px; height: 48px; }
  .reel-arrow { display: none; }
  .reels-scroller { gap: 12px; }
}

/* ============ Why Choose ============ */
.why-section { padding: 100px 0; background: var(--color-bg-cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-features {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
}
.why-feature:nth-last-child(-n+2) { border-bottom: none; }
.why-feature:nth-child(odd) { border-right: 1px solid var(--color-border); }
.why-feature-icon {
  width: 60px; height: 60px;
  background: var(--color-bg-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.why-feature-icon svg { width: 30px; height: 30px; }
.why-feature h4 { font-size: 1rem; line-height: 1.3; }

.why-image img { border-radius: var(--radius-lg); }

/* ============ Articles ============ */
.articles-section { padding: 100px 0; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.article-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-card:hover .article-image img { transform: scale(1.06); }
.article-date {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  text-align: center;
  line-height: 1.1;
}
.article-date strong { display: block; font-size: 1.4rem; }
.article-date small { font-size: 0.85rem; }
.article-content { padding: 24px; }
.article-meta { display: flex; gap: 20px; font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 12px; }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-meta svg { width: 14px; height: 14px; color: var(--color-primary); }
.article-title { font-size: 1.2rem; margin-bottom: 16px; line-height: 1.4; }
.article-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  color: var(--color-primary-dark);
  font-weight: 600;
}
.article-link:hover { color: var(--color-accent); }

/* ============ CTA Banners ============ */
.cta-banners { padding: 60px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  position: relative;
}
.cta-banner.blue { background: var(--color-primary); }
.cta-banner.orange { background: var(--color-accent); }
.cta-banner h3 { color: #fff; font-size: 1.6rem; margin: 8px 0 20px; }
.cta-banner .script-text { color: #fff; font-size: 1.6rem; opacity: 0.9; }
.cta-banner img { width: 180px; border-radius: var(--radius-md); }

/* ============ Footer ============ */
.footer {
  background: #08203f;
  color: #c5d2e6;
  padding: 80px 0 30px;
  position: relative;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-brand .logo-text strong { color: #fff; }
.footer-brand p { margin: 20px 0; opacity: 0.85; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--color-accent); }
.footer-social svg { width: 18px; height: 18px; }
.footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { opacity: 0.85; }
.footer-links a:hover { opacity: 1; color: var(--color-accent); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; margin-top: 4px; }
.footer-newsletter input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.6); }
.footer-newsletter .btn { width: 100%; justify-content: center; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

/* ============ Floating WhatsApp ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.05); color: #fff; }
.whatsapp-float svg { width: 22px; height: 22px; }
.whatsapp-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: #ef4444;
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============ Inner Page Hero ============ */
.page-hero {
  background: linear-gradient(rgba(12, 42, 82, 0.85), rgba(12, 42, 82, 0.85)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&q=80') center/cover;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.breadcrumb { display: inline-flex; gap: 12px; align-items: center; opacity: 0.9; }
.breadcrumb a:hover { color: var(--color-accent); }

/* ============ Contact ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: #08203f;
  color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.contact-info-card .image-top {
  position: relative;
  aspect-ratio: 16 / 9;
}
.contact-info-card .image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-info-card .label-tag {
  position: absolute;
  left: 0;
  bottom: -20px;
  background: var(--color-accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 8px 18px rgba(247, 143, 41, 0.35);
}
.contact-info-card .info-list { padding: 40px 30px 30px; }
.contact-info-card .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-card .info-item:last-child { border-bottom: none; }
.contact-info-card .info-icon {
  width: 50px; height: 50px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-info-card .info-icon svg { width: 22px; height: 22px; }
.contact-info-card .info-content small { display: block; font-size: 0.85rem; opacity: 0.7; margin-bottom: 4px; }
.contact-info-card .info-content strong { font-size: 1.05rem; color: #fff; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 18px 22px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-accent); }
.contact-form button { align-self: flex-start; }

/* ============ Listings (destinations.html) ============ */
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.listing-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.listing-card:hover { transform: translateY(-6px); }
.listing-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.listing-card:hover img { transform: scale(1.06); }
.listing-card .listing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 42, 82, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
}
.listing-trips-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}
.listing-card h3 { color: #fff; font-size: 1.6rem; }
.sort-bar { display: flex; justify-content: flex-end; margin-bottom: 30px; }
.sort-bar select {
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: #fff;
  font-family: inherit;
  cursor: pointer;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero-grid, .destinations-grid, .about-grid, .why-grid, .offer-grid, .contact-grid { grid-template-columns: 1fr; }
  .destinations-cards, .tours-grid, .articles-grid, .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav, .header-actions .call-info { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-md);
    align-items: stretch;
  }
  .nav.open .nav-link { padding: 14px 18px; }
  .nav.open .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: 20px; }
  .cta-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .why-feature { border-right: none !important; }
  .topbar-info span:first-child { display: none; }
}
@media (max-width: 640px) {
  .destinations-cards, .tours-grid, .articles-grid, .listing-grid, .gallery-grid, .stats-card, .footer-top, .about-features, .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .topbar { display: none; }
  .stats-card { padding: 30px 20px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 30px 20px; }
}

/* ============================================== */
/* =============== ANIMATIONS =================== */
/* ============================================== */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
@keyframes float-rotate {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -20px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}
@keyframes pulse-accent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 143, 41, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(247, 143, 41, 0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes plane-fly {
  0% { transform: translate(-100px, 50px) rotate(20deg); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(40vw, -30px) rotate(15deg); }
  90% { opacity: 1; }
  100% { transform: translate(110vw, -60px) rotate(10deg); opacity: 0; }
}
@keyframes bounce-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}
@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
@keyframes drop-in {
  0% { opacity: 0; transform: translateY(-30px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes draw-line {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

/* ----- Hero animations ----- */
.hero { position: relative; }
.hero-eyebrow { animation: fadeInLeft 0.7s ease both; }
.hero h1 { animation: fadeInLeft 0.9s 0.15s ease both; }
.hero p { animation: fadeInLeft 0.9s 0.3s ease both; }
.hero .btn { animation: fadeInLeft 0.9s 0.45s ease both; }
.hero-image { animation: fadeInRight 1s 0.2s ease both; }
.hero-image img { animation: float-slow 6s ease-in-out infinite; }

.hero-decor-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.deco-plane {
  position: absolute;
  color: var(--color-accent);
  animation: plane-fly 14s linear infinite;
  top: 18%;
}
.deco-bird {
  position: absolute;
  color: var(--color-accent);
  animation: float 4s ease-in-out infinite;
}
.deco-bird-1 { top: 20%; left: 38%; animation-delay: 0s; }
.deco-bird-2 { top: 28%; left: 45%; animation-delay: 0.5s; }
.deco-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(40px);
  animation: float-slow 10s ease-in-out infinite;
}
.deco-cloud-1 { width: 200px; height: 200px; top: 10%; left: 5%; }
.deco-cloud-2 { width: 280px; height: 280px; bottom: 5%; right: 10%; background: rgba(247, 143, 41, 0.15); animation-delay: -3s; }

.deco-dots {
  position: absolute;
  width: 200px;
  opacity: 0.4;
  animation: spin-slow 30s linear infinite;
}

/* ----- Button animations ----- */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.btn:hover::after { left: 100%; }
.btn-primary:hover { box-shadow: 0 10px 25px rgba(247, 143, 41, 0.4); transform: translateY(-3px); }
.btn-secondary:hover, .btn-light:hover { box-shadow: 0 10px 25px rgba(26, 168, 154, 0.4); transform: translateY(-3px); }

/* ----- WhatsApp pulse ----- */
.whatsapp-float {
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { animation: none; transform: scale(1.08); }
.whatsapp-float svg { animation: wave 1.5s ease-in-out infinite; transform-origin: center; }

/* ----- Logo hover ----- */
.logo { transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.04); }
.logo-mark { transition: transform 0.5s ease, box-shadow 0.3s ease; }
.logo:hover .logo-mark {
  transform: rotate(8deg) scale(1.05);
  box-shadow: 0 8px 20px rgba(26, 168, 154, 0.3);
}

/* ----- Nav link underline slide ----- */
.nav-link {
  position: relative;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover::before, .nav-link.active::before { width: 60%; }

/* ----- Card lift + glow ----- */
.tour-card, .article-card, .listing-card, .package-card, .destination-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.tour-card:hover, .article-card:hover, .package-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 20px 50px rgba(12, 42, 82, 0.15);
}
.listing-card:hover, .destination-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Image zoom on hover - enhanced */
.tour-image img, .article-image img, .listing-card img, .destination-card img, .package-image img, .gallery-item img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.tour-card:hover .tour-image img,
.article-card:hover .article-image img,
.listing-card:hover img,
.destination-card:hover img,
.package-card:hover .package-image img,
.gallery-item:hover img {
  transform: scale(1.12);
}

/* ----- Book-now button micro-interaction ----- */
.book-btn { position: relative; transition: all 0.3s ease; }
.book-btn:hover { padding-right: 32px; }
.book-btn::after {
  content: '→';
  position: absolute;
  right: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.book-btn:hover::after { opacity: 1; }

/* ----- Feature/Pillar/Why-feature icon bounce ----- */
.feature-icon, .pillar-icon, .why-feature-icon, .stat-icon, .info-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature:hover .feature-icon,
.pillar:hover .pillar-icon,
.why-feature:hover .why-feature-icon,
.stat:hover .stat-icon {
  transform: scale(1.15) rotate(-8deg);
}

/* ----- Pillar card lift ----- */
.pillar { transition: all 0.4s ease; }
.pillar:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(12, 42, 82, 0.12); }

/* ----- Stat counter scale-in ----- */
.stat { animation: zoomIn 0.6s ease both; }
.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }
.stat:nth-child(4) { animation-delay: 0.4s; }

/* ----- Page hero subtle ken-burns ----- */
.page-hero, .umrah-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before, .umrah-hero::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: inherit;
  background-size: cover;
  animation: ken-burns 20s ease-in-out infinite alternate;
  z-index: -1;
}
.page-hero h1, .umrah-hero h1 { animation: fadeInUp 1s ease both; }
.page-hero .breadcrumb, .umrah-hero p { animation: fadeInUp 1s 0.2s ease both; }

/* ----- Award badge spin on hover ----- */
.award-badge svg { transition: transform 0.6s ease; }
.award-badge:hover svg { transform: rotate(20deg) scale(1.1); }

/* ----- Gallery item bounce ----- */
.gallery-item {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover { transform: scale(1.1) rotate(-3deg); }

/* ----- Footer social bounce ----- */
.footer-social a, .topbar-social a {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-social a:hover { transform: translateY(-5px) rotate(-8deg); }
.topbar-social a:hover { transform: translateY(-2px); }

/* ----- Form input focus animation ----- */
.contact-form input, .contact-form textarea {
  transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(247, 143, 41, 0.12);
  transform: translateY(-2px);
}

/* ----- Article date drop-in ----- */
.article-date { animation: drop-in 0.6s ease both; }

/* ----- Tour badge pop ----- */
.tour-badge {
  transition: transform 0.3s ease;
}
.tour-card:hover .tour-badge { transform: scale(1.1); }

/* ----- Eyebrow pulse on view ----- */
.eyebrow svg, .feature-icon svg { transition: transform 0.4s ease; }

/* ----- Section header h2 underline reveal ----- */
.section-header h2 {
  position: relative;
  display: inline-block;
}

/* ============ HERO ENHANCEMENTS — glass cards, moving bus, balloon, mountains ============ */
.hero {
  background: linear-gradient(135deg, #eaf6f3 0%, #fdf3e7 50%, #e8f0fb 100%);
  padding: 90px 0 140px;
}

/* Sun glow top right */
.deco-sun {
  position: absolute;
  top: 6%;
  right: 8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 142, 0.6) 0%, rgba(247, 143, 41, 0.15) 50%, transparent 70%);
  filter: blur(8px);
  animation: pulse-soft 5s ease-in-out infinite;
  z-index: 0;
}
@keyframes pulse-soft {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Mountain silhouette at the bottom */
.deco-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}
.deco-mountains svg { width: 100%; height: 100%; display: block; }

/* Road line at bottom */
.deco-road {
  position: absolute;
  bottom: 32px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 2;
  background-image: linear-gradient(to right, transparent 0, transparent 30px, var(--color-text-muted) 30px, var(--color-text-muted) 60px);
  background-size: 60px 2px;
  opacity: 0.25;
  animation: road-move 1.5s linear infinite;
}
@keyframes road-move {
  from { background-position: 0 0; }
  to { background-position: -60px 0; }
}

/* Bus driving across */
.deco-bus {
  position: absolute;
  bottom: 18px;
  left: 0;
  z-index: 3;
  color: var(--color-primary);
  animation: bus-drive 22s linear infinite;
}
.deco-bus svg { width: 90px; height: auto; filter: drop-shadow(0 6px 12px rgba(12, 42, 82, 0.15)); }
@keyframes bus-drive {
  0% { transform: translateX(-200px); }
  100% { transform: translateX(110vw); }
}

/* Hot air balloon */
.deco-balloon {
  position: absolute;
  top: 22%;
  left: 4%;
  z-index: 2;
  color: var(--color-accent);
  animation: balloon-rise 9s ease-in-out infinite;
}
.deco-balloon svg { width: 70px; height: auto; filter: drop-shadow(0 10px 20px rgba(247, 143, 41, 0.25)); }
@keyframes balloon-rise {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-35px) rotate(3deg); }
}

/* More birds with varied animation paths */
.deco-bird-3 { top: 12%; left: 22%; animation: bird-meander-1 7s ease-in-out infinite; color: var(--color-primary-dark); }
.deco-bird-4 { top: 36%; left: 60%; animation: bird-meander-2 8s ease-in-out infinite 1s; color: var(--color-primary-dark); }
.deco-bird-5 { top: 8%; left: 50%; animation: bird-meander-1 10s ease-in-out infinite 0.6s; color: var(--color-accent); opacity: 0.7; }
@keyframes bird-meander-1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -10px); }
  50% { transform: translate(40px, 5px); }
  75% { transform: translate(20px, -8px); }
}
@keyframes bird-meander-2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-25px, -15px); }
  66% { transform: translate(15px, -25px); }
}

/* Glass cards — glassmorphism floating info */
.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 10px 35px rgba(12, 42, 82, 0.12);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-slow 6s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 45px rgba(12, 42, 82, 0.2);
}
.glass-card.gc-tr { top: 9%; right: 3%; animation-delay: -1s; }
.glass-card.gc-ml { top: 50%; left: -10px; animation-delay: -3s; }
.glass-card.gc-bm { bottom: 12%; right: 12%; animation-delay: -2s; }
.glass-card .gc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.glass-card .gc-icon svg { width: 22px; height: 22px; }
.glass-card .gc-icon.teal { background: var(--color-primary); }
.glass-card .gc-icon.orange { background: var(--color-accent); }
.glass-card .gc-text strong { display: block; font-size: 0.95rem; color: var(--color-primary-dark); line-height: 1.1; }
.glass-card .gc-text small { font-size: 0.75rem; color: var(--color-text-muted); }

/* Floating mini photo polaroids */
.deco-photo {
  position: absolute;
  width: 110px;
  height: 130px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(12, 42, 82, 0.22);
  border: 5px solid #fff;
  z-index: 4;
  background: #fff;
}
.deco-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deco-photo.dp1 {
  top: 18%;
  left: 45%;
  transform: rotate(-9deg);
  animation: photo-sway-1 7s ease-in-out infinite;
}
.deco-photo.dp2 {
  bottom: 20%;
  left: 38%;
  width: 95px;
  height: 115px;
  transform: rotate(7deg);
  animation: photo-sway-2 8s ease-in-out infinite -2s;
}
@keyframes photo-sway-1 {
  0%, 100% { transform: rotate(-9deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-12px); }
}
@keyframes photo-sway-2 {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-10px); }
}

/* Hero image now has subtle ring + shadow upgrade */
.hero-image {
  position: relative;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 168, 154, 0.15), transparent 60%);
  z-index: -1;
  animation: pulse-soft 4s ease-in-out infinite;
}

/* Hide some heavy decorations on small screens to keep things tidy */
@media (max-width: 1024px) {
  .deco-photo, .glass-card.gc-ml { display: none; }
  .glass-card.gc-tr { top: 4%; right: 4%; }
  .glass-card.gc-bm { bottom: 6%; right: 4%; }
  .deco-balloon { top: 8%; left: 2%; }
  .deco-balloon svg { width: 50px; }
}
@media (max-width: 640px) {
  .glass-card { display: none; }
  .deco-balloon, .deco-bus, .deco-mountains { display: none; }
}

/* ============ HERO — SCRAPBOOK COLLAGE ============ */
.hero-collage-section {
  position: relative;
  background: linear-gradient(135deg, #fff8f0 0%, #eaf6f3 55%, #fdf3e7 100%);
  padding: 40px 0 60px;
  overflow: hidden;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
}

/* Islamic geometric pattern background (Rub el Hizb tessellation) */
.hero-islamic-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  color: var(--color-primary-dark);
  opacity: 0.22;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 95%);
          mask-image: radial-gradient(ellipse at center, #000 40%, transparent 95%);
}
.hero-islamic-bg svg { width: 100%; height: 100%; display: block; }

/* Right-side leaves */
.hero-leaves-right {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  z-index: 1;
  pointer-events: none;
  transform: scaleX(-1);
  filter: drop-shadow(0 10px 20px rgba(14, 111, 102, 0.12));
  animation: leaves-sway 7s ease-in-out infinite -2s;
  opacity: 0.85;
}

/* Yellow suitcase decoration */
.hero-suitcase {
  position: absolute;
  bottom: 8%;
  left: 38%;
  width: 75px;
  height: auto;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 14px 22px rgba(247, 143, 41, 0.3));
  animation: suitcase-bob 4s ease-in-out infinite -1s;
}
@keyframes suitcase-bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

/* Camera decoration */
.hero-camera {
  position: absolute;
  top: 10%;
  left: 30%;
  width: 56px;
  height: auto;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(12, 42, 82, 0.2));
  animation: camera-float 5s ease-in-out infinite -2s;
}
@keyframes camera-float {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-18px) rotate(-4deg); }
}

/* Animated dotted trail inside the collage (behind plane) */
.hc-trail {
  position: absolute;
  top: 5%;
  left: -15%;
  width: 65%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

/* Star sparkles around the collage */
.hc-sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 6;
  color: var(--color-accent);
  pointer-events: none;
  animation: sparkle 2.5s ease-in-out infinite;
}
.hc-sp-1 { top: 28%; left: -8%; animation-delay: 0s; }
.hc-sp-2 { top: 52%; right: 4%; width: 14px; height: 14px; animation-delay: -1.2s; color: var(--color-primary); }
@keyframes sparkle {
  0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Subtle shadow-only breath on main circle (no movement) */
.hc-main {
  animation: hc-main-breath 5s ease-in-out infinite;
}
@keyframes hc-main-breath {
  0%, 100% { box-shadow: 0 30px 60px rgba(12, 42, 82, 0.22); }
  50%      { box-shadow: 0 36px 72px rgba(12, 42, 82, 0.30); }
}

/* Tropical leaves bottom-left corner */
.hero-leaves {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(14, 111, 102, 0.15));
  transform-origin: bottom left;
  animation: leaves-sway 6s ease-in-out infinite;
}
@keyframes leaves-sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3deg); }
}

/* Curved dotted travel path */
.hero-curve {
  position: absolute;
  top: 28%;
  left: 30%;
  width: 35%;
  z-index: 1;
  pointer-events: none;
}

/* Grid: text left, collage right */
.hero-collage-section .container { position: relative; z-index: 3; }
.hero-collage-section .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text side */
.hero-text { position: relative; }
.hero-collage-section .hero-eyebrow {
  font-family: var(--font-script);
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2px;
  display: inline-block;
  transform: rotate(-2deg);
  line-height: 1;
}
.hero-collage-section h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
  margin-top: 4px;
}
.hero-collage-section h1 .accent { color: var(--color-primary); }
.hero-collage-section h1 .accent::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 4px;
  margin-top: 8px;
}
.hero-collage-section .hero-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
  max-width: 520px;
  line-height: 1.55;
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-item svg { width: 14px; height: 14px; color: var(--color-accent); }
.trust-item strong { color: var(--color-primary-dark); font-weight: 700; }
.trust-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-text-muted);
  opacity: 0.4;
}

/* Quick category pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 168, 154, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  transition: all 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.hero-pill svg { width: 14px; height: 14px; color: var(--color-accent); transition: color 0.25s ease; }
.hero-pill:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(26, 168, 154, 0.3);
}
.hero-pill:hover svg { color: #fff; }

/* Search widget */
.hero-search {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr auto;
  gap: 6px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
          backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 18px 50px rgba(12, 42, 82, 0.12), inset 0 1px 0 rgba(255,255,255,0.6);
  align-items: stretch;
  max-width: 580px;
}
.hs-field {
  display: flex;
  flex-direction: column;
  padding: 6px 12px;
  border-right: 1px solid rgba(12, 42, 82, 0.08);
  min-width: 0;
}
.hs-field:nth-child(3) { border-right: none; }
.hs-field label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.hs-field label svg { width: 11px; height: 11px; color: var(--color-accent); }
.hs-field select,
.hs-field input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
  outline: none;
  padding: 0;
  width: 100%;
}
.hs-field select { appearance: none; -webkit-appearance: none; }
.hs-submit {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(247, 143, 41, 0.4);
}
.hs-submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(247, 143, 41, 0.5);
}
.hs-submit svg { width: 16px; height: 16px; }

/* Scroll cue at bottom of hero */
.hero-scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
  z-index: 5;
  animation: scroll-cue-bounce 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
.hero-scroll-cue:hover { opacity: 1; color: var(--color-accent); }
.hero-scroll-cue svg { width: 18px; height: 18px; }
@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* Tablet/mobile responsive for new hero pieces */
@media (max-width: 1024px) {
  .hero-search { grid-template-columns: 1fr 1fr; }
  .hs-field:nth-child(3) { border-right: 1px solid rgba(12, 42, 82, 0.08); }
  .hs-field:nth-child(2) { border-right: none; }
  .hs-submit { grid-column: span 2; padding: 12px; justify-content: center; margin-top: 4px; }
}
@media (max-width: 640px) {
  .hero-trust { font-size: 0.72rem; gap: 6px 10px; }
  .trust-item svg { width: 12px; height: 12px; }
  .hero-search { grid-template-columns: 1fr; }
  .hs-field { border-right: none !important; border-bottom: 1px solid rgba(12, 42, 82, 0.08); padding-bottom: 8px; }
  .hs-field:nth-child(3) { border-bottom: none; }
  .hero-pill { font-size: 0.76rem; padding: 6px 12px; }
  .hero-scroll-cue { display: none; }
}

/* Right-side collage container — Mihrab arch */
.hero-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  margin-left: auto;
}

/* Orange splash blob behind arch */
.hc-splash {
  position: absolute;
  inset: 12% -8% -8% 8%;
  background: radial-gradient(ellipse at 60% 40%, rgba(247, 143, 41, 0.4) 0%, rgba(247, 143, 41, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(24px);
  animation: pulse-soft 5s ease-in-out infinite;
}

/* Mihrab arch frame (was circle) */
.hc-main {
  position: absolute;
  inset: 0;
  /* tall pointed-arch shape: heavily rounded top corners, slight bottom corners */
  border-radius: 50% 50% 14px 14px / 38% 38% 14px 14px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(12, 42, 82, 0.22);
  border: 8px solid #fff;
  background: linear-gradient(135deg, var(--color-primary), #5fcfc1);
}
.hc-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}
.hc-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 42, 82, 0.5) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

/* Decorative outer arch outline (subtle frame) */
.hc-main::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50% 50% 16px 16px / 38% 38% 16px 16px;
  background: linear-gradient(135deg, rgba(247, 143, 41, 0.25), rgba(26, 168, 154, 0.2));
  z-index: -1;
  filter: blur(2px);
}

/* 8-pointed Islamic star ornament at apex of arch */
.hc-arch-ornament {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  z-index: 7;
  color: var(--color-accent);
  filter: drop-shadow(0 6px 12px rgba(247, 143, 41, 0.4));
  animation: ornament-glow 3s ease-in-out infinite;
}
.hc-arch-ornament svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hc-arch-ornament .star-bg {
  fill: #fff;
}
.hc-arch-ornament .star-fg {
  fill: var(--color-accent);
}
@keyframes ornament-glow {
  0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg); filter: drop-shadow(0 6px 12px rgba(247, 143, 41, 0.4)); }
  50%      { transform: translateX(-50%) scale(1.06) rotate(45deg); filter: drop-shadow(0 8px 18px rgba(247, 143, 41, 0.6)); }
}
.hc-caption {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.hc-caption svg { color: var(--color-accent); flex-shrink: 0; }

/* Live badge on inner Makkah circle */
.hc-live-badge {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #fff;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hc-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-dot-red 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  50%      { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* Photo treatment for inner + polaroid */
.hc-inner img,
.hc-polaroid img { filter: saturate(1.08) contrast(1.04); }

/* Inner circle picture-in-picture (peeks out right side of arch) */
.hc-inner {
  position: absolute;
  top: 22%;
  right: -10%;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #fff;
  overflow: hidden;
  z-index: 4;
  box-shadow: 0 20px 40px rgba(12, 42, 82, 0.25);
  animation: float 6s ease-in-out infinite -2s;
}
.hc-inner img { width: 100%; height: 100%; object-fit: cover; }

/* Decorative orange paper plane */
.hc-plane {
  position: absolute;
  top: 18%;
  left: -15%;
  width: 70px;
  height: 70px;
  z-index: 5;
  color: var(--color-accent);
  filter: drop-shadow(0 8px 12px rgba(247, 143, 41, 0.3));
  animation: plane-bob 4s ease-in-out infinite;
  transform: rotate(-25deg);
}
@keyframes plane-bob {
  0%, 100% { transform: rotate(-25deg) translateY(0); }
  50% { transform: rotate(-15deg) translateY(-15px); }
}

/* Birds near collage */
.hc-bird {
  position: absolute;
  width: 42px;
  height: 30px;
  z-index: 5;
  color: var(--color-accent);
}
.hc-bird-1 {
  top: 8%;
  left: 18%;
  animation: float 3s ease-in-out infinite;
}
.hc-bird-2 {
  top: 16%;
  left: 30%;
  width: 32px;
  height: 24px;
  animation: float 3.5s ease-in-out infinite -0.7s;
}

/* Polaroid photo (Madinah) bottom-left of collage */
.hc-polaroid {
  position: absolute;
  bottom: -2%;
  left: -10%;
  width: 38%;
  background: #fff;
  padding: 8px 8px 32px;
  border-radius: 6px;
  box-shadow: 0 20px 45px rgba(12, 42, 82, 0.25);
  transform: rotate(-7deg);
  z-index: 6;
  animation: polaroid-sway 7s ease-in-out infinite;
}
.hc-polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.hc-polaroid-label {
  position: absolute;
  bottom: 6px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1;
}
@keyframes polaroid-sway {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-10px); }
}

/* Spinning dotted ring around the collage */
.hc-dots {
  position: absolute;
  bottom: -8%;
  right: -8%;
  width: 160px;
  height: 160px;
  z-index: 1;
  animation: spin-slow 30s linear infinite;
}

/* Hero entrance animations (reapply for new structure) */
.hero-collage-section .hero-eyebrow { animation: fadeInLeft 0.7s ease both; }
.hero-collage-section h1 { animation: fadeInLeft 0.9s 0.15s ease both; }
.hero-collage-section .hero-text p { animation: fadeInLeft 0.9s 0.3s ease both; }
.hero-collage-section .btn-hero { animation: fadeInLeft 0.9s 0.45s ease both; }
.hero-collage { animation: fadeInRight 1s 0.2s ease both; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-collage-section .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-collage { max-width: 420px; }
  .hero-leaves { width: 200px; height: 200px; bottom: -20px; left: -20px; }
}
@media (max-width: 640px) {
  .hero-collage-section { padding: 60px 0 80px; }
  .hero-collage { max-width: 320px; }
  .hero-leaves { width: 140px; height: 140px; opacity: 0.6; }
  .hero-curve { display: none; }
  .hc-plane { width: 50px; height: 50px; left: -8%; }
  .hero-collage-section .hero-eyebrow { font-size: 1.8rem; }
}

/* ============ UMRAH LANDING SECTION ============ */
.umrah-landing-section {
  position: relative;
  background: linear-gradient(180deg, #fff8ef 0%, #fdf3e7 100%);
  overflow: hidden;
}
.umrah-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 30%, var(--color-primary) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, var(--color-accent) 1px, transparent 1.5px);
  background-size: 50px 50px, 70px 70px;
  background-position: 0 0, 25px 25px;
}
.umrah-landing-section .container { position: relative; z-index: 1; }

.umrah-mini { position: relative; }
.umrah-mini .tour-badge { background: var(--color-primary-dark); }

.umrah-featured {
  border: 2px solid var(--color-accent);
  transform: translateY(-8px);
}
.umrah-featured:hover { transform: translateY(-16px) scale(1.01); }
.popular-ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  background: var(--color-accent);
  color: #fff;
  padding: 6px 40px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(35deg);
  z-index: 5;
  box-shadow: 0 6px 14px rgba(247, 143, 41, 0.35);
}

.tour-meta svg { color: var(--color-success); width: 14px; height: 14px; }

.umrah-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 60px;
  text-align: center;
}
.umrah-cta-note {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .umrah-featured { transform: translateY(0); }
  .umrah-featured:hover { transform: translateY(-8px); }
}

/* ============ HERO ENTRANCE — converging animation ============ */
/* Decorations fly in from different directions and settle into their loops */

@keyframes enter-leaves-left {
  0%   { opacity: 0; transform: translate(-280px, 200px) rotate(-45deg) scale(0.55); }
  70%  { opacity: 1; transform: translate(10px, -10px) rotate(5deg) scale(1.04); }
  100% { opacity: 1; transform: rotate(-2deg); }
}
@keyframes enter-leaves-right {
  0%   { opacity: 0; transform: scaleX(-1) translate(-280px, 200px) rotate(-45deg); }
  100% { opacity: 0.85; transform: scaleX(-1) rotate(-2deg); }
}
@keyframes enter-suitcase {
  0%   { opacity: 0; transform: translateY(-280px) rotate(-200deg) scale(0.4); }
  60%  { opacity: 1; transform: translateY(20px) rotate(15deg) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) rotate(-4deg) scale(1); }
}
@keyframes enter-camera {
  0%   { opacity: 0; transform: translate(260px, -160px) rotate(220deg) scale(0.4); }
  100% { opacity: 1; transform: rotate(8deg); }
}
@keyframes enter-plane-tl {
  0%   { opacity: 0; transform: translate(-280px, -200px) rotate(-90deg) scale(0.4); }
  100% { opacity: 1; transform: rotate(-25deg); }
}
@keyframes enter-bird-tr {
  0%   { opacity: 0; transform: translate(220px, -160px) scale(0.3); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}
@keyframes enter-inner-circle {
  0%   { opacity: 0; transform: translate(180px, -240px) scale(0); }
  60%  { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes enter-polaroid {
  0%   { opacity: 0; transform: translate(-220px, 280px) rotate(-50deg) scale(0.4); }
  100% { opacity: 1; transform: rotate(-7deg); }
}
@keyframes enter-dots-ring {
  0%   { opacity: 0; transform: scale(0) rotate(-180deg); }
  100% { opacity: 0.5; transform: scale(1) rotate(0); }
}
@keyframes enter-sparkle {
  0%   { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(0.6); }
}
@keyframes draw-trail {
  0%   { opacity: 0; stroke-dasharray: 2000; stroke-dashoffset: 2000; }
  100% { opacity: 0.55; stroke-dasharray: 3 9; stroke-dashoffset: 0; }
}
@keyframes fade-in-up {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Override animations to combine entrance + loop */
.hero-leaves {
  animation:
    enter-leaves-left 1.2s cubic-bezier(0.34, 1.45, 0.64, 1) 0.4s both,
    leaves-sway 6s ease-in-out 1.6s infinite;
}
.hero-leaves-right {
  animation:
    enter-leaves-right 1.2s cubic-bezier(0.34, 1.45, 0.64, 1) 0.6s both,
    leaves-sway 7s ease-in-out 1.8s infinite;
}
.hero-suitcase {
  animation:
    enter-suitcase 1.1s cubic-bezier(0.34, 1.55, 0.64, 1) 1.0s both,
    suitcase-bob 4s ease-in-out 2.1s infinite;
}
.hero-camera {
  animation:
    enter-camera 1.1s cubic-bezier(0.34, 1.45, 0.64, 1) 1.15s both,
    camera-float 5s ease-in-out 2.25s infinite;
}
.hero-world-map {
  animation: fade-in-up 1.5s ease 0.1s both;
}
.hero-curve {
  opacity: 0;
  animation: fade-in-up 1s ease 1.7s both;
}
.hc-plane {
  animation:
    enter-plane-tl 1.2s cubic-bezier(0.34, 1.4, 0.64, 1) 1.5s both,
    plane-bob 4s ease-in-out 2.7s infinite;
}
.hc-bird-1 {
  animation:
    enter-bird-tr 0.9s ease-out 1.55s both,
    float 3s ease-in-out 2.45s infinite;
}
.hc-bird-2 {
  animation:
    enter-bird-tr 0.9s ease-out 1.7s both,
    float 3.5s ease-in-out 2.6s infinite -0.7s;
}
.hc-inner {
  animation:
    enter-inner-circle 1.2s cubic-bezier(0.34, 1.55, 0.64, 1) 1.1s both,
    float 6s ease-in-out 2.3s infinite;
}
.hc-polaroid {
  animation:
    enter-polaroid 1.2s cubic-bezier(0.34, 1.45, 0.64, 1) 1.4s both,
    polaroid-sway 7s ease-in-out 2.6s infinite;
}
.hc-dots {
  animation:
    enter-dots-ring 1s ease-out 1.8s both,
    spin-slow 30s linear 2.8s infinite;
}
.hc-sp-1 {
  animation:
    enter-sparkle 0.6s ease-out 1.9s both,
    sparkle 2.5s ease-in-out 2.5s infinite;
}
.hc-sp-2 {
  animation:
    enter-sparkle 0.6s ease-out 2.05s both,
    sparkle 2.5s ease-in-out 2.65s infinite -1.2s;
}

/* Trail draws itself in then loops */
.hc-trail path {
  animation: draw-trail 1.6s ease-out 1.4s both;
}

/* Hero-collage parent: subtle fade only (children handle their own entrance) */
.hero-collage { animation: fadeInRight 0.8s 0.3s ease both; }

/* ============ POLAROID MEMORY WALL ============ */
.memory-wall {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(247, 143, 41, 0.10), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(26, 168, 154, 0.10), transparent 42%),
    #fdf6ec;
  padding: 100px 0;
  overflow: hidden;
}
.memory-bg-decor {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(12, 42, 82, 0.06) 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}
.memory-wall .container { position: relative; z-index: 1; }

.polaroid-grid {
  columns: 3;
  column-gap: 32px;
  max-width: 1080px;
  margin: 60px auto 0;
  padding: 14px 4px;
}

.polaroid {
  background: #fff;
  padding: 14px 14px 50px;
  margin-bottom: 36px;
  break-inside: avoid;
  box-shadow:
    0 14px 30px rgba(12, 42, 82, 0.13),
    0 4px 10px rgba(12, 42, 82, 0.08);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.45s ease;
  cursor: pointer;
}

/* Random rotations per nth-child for organic wall feel */
.polaroid:nth-child(7n+1) { transform: rotate(-2.2deg); }
.polaroid:nth-child(7n+2) { transform: rotate(1.6deg); }
.polaroid:nth-child(7n+3) { transform: rotate(-1deg); }
.polaroid:nth-child(7n+4) { transform: rotate(2deg); }
.polaroid:nth-child(7n+5) { transform: rotate(-1.8deg); }
.polaroid:nth-child(7n+6) { transform: rotate(0.8deg); }
.polaroid:nth-child(7n+7) { transform: rotate(-2.6deg); }

.polaroid:hover {
  transform: rotate(0) translateY(-12px) scale(1.04);
  box-shadow:
    0 30px 60px rgba(12, 42, 82, 0.28),
    0 10px 18px rgba(12, 42, 82, 0.12);
  z-index: 5;
}

.polaroid-img {
  overflow: hidden;
  background: #f5f0e8;
  position: relative;
}
.polaroid-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.95) contrast(1.04) sepia(0.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.polaroid:hover .polaroid-img img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}

.polaroid-caption {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.polaroid-caption h4 {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.polaroid-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.polaroid-meta svg { color: var(--color-accent); }

/* Washi tape decorations — alternating colors and positions */
.washi-tape {
  position: absolute;
  z-index: 3;
  width: 70px;
  height: 22px;
  background: linear-gradient(45deg, rgba(247, 143, 41, 0.85), rgba(247, 143, 41, 0.55));
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  /* tape-edge effect via mask */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.polaroid:nth-child(2n) .washi-tape {
  background: linear-gradient(45deg, rgba(26, 168, 154, 0.8), rgba(26, 168, 154, 0.5));
  top: -8px;
  left: 14px;
  transform: rotate(28deg);
  width: 80px;
}
.polaroid:nth-child(3n) .washi-tape {
  background: linear-gradient(45deg, rgba(255, 215, 145, 0.85), rgba(247, 143, 41, 0.6));
  top: 6px;
  right: 14px;
  left: auto;
  transform: rotate(-22deg);
  width: 64px;
}
.polaroid:nth-child(5n) .washi-tape {
  background: linear-gradient(45deg, rgba(14, 111, 102, 0.7), rgba(26, 168, 154, 0.5));
  top: -6px;
  right: -6px;
  left: auto;
  transform: rotate(40deg);
  width: 56px;
}

/* "Add your photo" placeholder card */
.polaroid-add {
  border: 2px dashed rgba(26, 168, 154, 0.4);
  background: rgba(255, 255, 255, 0.6);
}
.polaroid-add .polaroid-img {
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 168, 154, 0.08), rgba(247, 143, 41, 0.08));
  color: var(--color-primary);
}
.polaroid-add .polaroid-img svg { width: 48px; height: 48px; opacity: 0.5; }
.polaroid-add:hover .polaroid-img svg { opacity: 1; transform: scale(1.15) rotate(90deg); transition: all 0.4s ease; }

.memory-wall-cta {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .polaroid-grid { columns: 2; column-gap: 22px; max-width: 720px; }
  .polaroid { padding: 12px 12px 42px; margin-bottom: 26px; }
  .polaroid-caption h4 { font-size: 1.3rem; }
}
@media (max-width: 640px) {
  .memory-wall { padding: 60px 0; }
  .polaroid-grid { columns: 1; max-width: 320px; }
  .polaroid { padding: 10px 10px 36px; }
}

/* ============ MARQUEE DESTINATIONS STRIP ============ */
.marquee-strip {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 4px solid var(--color-accent);
  border-bottom: 4px solid var(--color-accent);
}
.marquee-strip::before, .marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--color-primary-dark), transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(-90deg, var(--color-primary-dark), transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
}
.marquee-item.outline {
  -webkit-text-stroke: 1.5px #fff;
  color: transparent;
}
.marquee-item .star {
  color: var(--color-accent);
  font-size: 1.6rem;
  flex-shrink: 0;
  animation: spin-slow 8s linear infinite;
  display: inline-block;
}

/* ============ LIVE BOOKING TOAST ============ */
.booking-toast {
  position: fixed;
  bottom: 100px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(12, 42, 82, 0.18);
  padding: 14px 18px 14px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 340px;
  z-index: 95;
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.booking-toast.visible {
  opacity: 1;
  transform: translateX(0);
}
.booking-toast .bt-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.booking-toast .bt-text { line-height: 1.3; }
.booking-toast .bt-text strong { display: block; font-size: 0.9rem; color: var(--color-primary-dark); }
.booking-toast .bt-text span { font-size: 0.82rem; color: var(--color-text-muted); }
.booking-toast .bt-time { font-size: 0.72rem; color: var(--color-accent); margin-top: 2px; display: block; font-weight: 600; }
.booking-toast .bt-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.booking-toast .bt-close:hover { background: rgba(0,0,0,0.1); }
.booking-toast .bt-pulse {
  width: 8px; height: 8px;
  background: #2ec27e;
  border-radius: 50%;
  position: absolute;
  top: 12px; right: 32px;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 194, 126, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(46, 194, 126, 0); }
}

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  z-index: 200;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(247, 143, 41, 0.5);
}

/* ============ WAVE SECTION DIVIDERS ============ */
.wave-divider {
  display: block;
  width: 100%;
  height: 80px;
  margin: 0;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================ */
/* ============ MOBILE POLISH — final responsive pass ============ */
/* ================================================================ */

/* Touch targets ≥44px (Apple HIG / Material) + tighter mobile layout */
@media (max-width: 768px) {
  /* Touch sizing */
  .btn { min-height: 48px; padding: 14px 24px; font-size: 0.95rem; }
  .nav-link { padding: 14px 18px; min-height: 44px; }
  .book-btn { min-height: 44px; padding: 11px 20px; }
  .topbar-social a, .footer-social a { min-width: 40px; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; }
  .reel-action { min-width: 44px; min-height: 44px; }
  .menu-toggle { padding: 12px; min-width: 44px; min-height: 44px; }
  .record-actions button, .fin-deal-actions button { min-width: 40px; min-height: 40px; }

  /* Glass nav — compact pill */
  .header { margin: 8px 8px 0; border-radius: 16px; top: 8px; }
  .header.scrolled { margin: 6px 6px 0; border-radius: 12px; top: 4px; }
  .header .container { padding: 10px 14px; gap: 10px; }
  .logo { gap: 8px; }
  .logo-mark { width: 44px; height: 44px; border: 2px solid #fff; flex-shrink: 0; }
  .logo-text strong { font-size: 0.92rem; }
  .logo-text small { font-size: 0.62rem; letter-spacing: 0.06em; }
  .header .btn-primary { padding: 10px 16px; font-size: 0.82rem; min-height: 40px; }

  /* Hero — denser on phones */
  .hero-collage-section { padding: 20px 0 40px; min-height: auto; }
  .hero-collage-section .hero-grid { gap: 28px; }
  .hero-collage-section h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); line-height: 1.08; margin-bottom: 12px; }
  .hero-collage-section h1 .accent::after { width: 50px; height: 3px; }
  .hero-collage-section .hero-eyebrow { font-size: 1.7rem; }
  .hero-collage-section .hero-text p { font-size: 0.92rem; margin-bottom: 14px; line-height: 1.55; }

  /* Trust strip */
  .hero-trust { font-size: 0.7rem; gap: 5px 8px; margin-bottom: 12px; }
  .trust-item { gap: 4px; }
  .trust-item svg { width: 11px; height: 11px; }
  .trust-divider { width: 3px; height: 3px; }

  /* Pills */
  .hero-pills { gap: 6px; margin-bottom: 14px; }
  .hero-pill { font-size: 0.74rem; padding: 8px 13px; min-height: 36px; }
  .hero-pill svg { width: 12px; height: 12px; }

  /* Search widget */
  .hero-search { padding: 8px; border-radius: 14px; gap: 4px; }
  .hs-field { padding: 9px 12px; }
  .hs-field label { font-size: 0.62rem; letter-spacing: 0.04em; }
  .hs-field select, .hs-field input { font-size: 16px; padding: 4px 0; min-height: 28px; }
  .hs-submit { padding: 14px; font-size: 0.92rem; min-height: 48px; border-radius: 10px; }

  /* Hero collage */
  .hero-collage { max-width: 280px; }
  .hc-caption { font-size: 0.72rem; padding: 6px 12px; bottom: 6%; }
  .hc-live-badge { font-size: 0.62rem; padding: 3px 8px 3px 7px; }
  .hc-arch-ornament { width: 36px; height: 36px; top: -18px; }
  .hero-scroll-cue { display: none; }

  /* Modals fill the phone screen */
  .modal { padding: 0; align-items: stretch; }
  .modal-card { max-width: 100%; border-radius: 0; min-height: 100vh; box-shadow: none; }
  .modal-header { padding: 16px 18px; position: sticky; top: 0; background: #fff; z-index: 2; border-bottom: 1px solid var(--color-border); }
  .modal-header h3 { font-size: 1.05rem; }
  .modal-close { width: 36px; height: 36px; min-width: 36px; }
  .record-form, #finForm { padding: 18px 18px 32px; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .form-actions { flex-direction: column-reverse; gap: 8px; }
  .form-actions button { width: 100%; min-height: 48px; }

  /* Sections */
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); }
  .container { padding: 0 16px; }

  /* Tour cards */
  .tour-card { border-radius: var(--radius-md); }
  .tour-content { padding: 18px; }
  .tour-title { font-size: 1.05rem; line-height: 1.3; }
  .tour-desc { font-size: 0.88rem; margin-bottom: 14px; }
  .tour-footer { gap: 10px; }
  .tour-price strong { font-size: 1.2rem; }

  /* Reels */
  .reels-gallery { padding: 50px 0; }
  .reels-wrapper { gap: 0; }
  .reel-card { flex: 0 0 84vw; max-width: 320px; border-radius: 16px; }
  .reel-caption { font-size: 0.8rem; }
  .reel-actions { right: 8px; bottom: 96px; gap: 10px; }
  .reel-action { width: 38px; height: 38px; min-width: 38px; min-height: 38px; }
  .reel-action svg { width: 16px; height: 16px; }

  /* Polaroids */
  .memory-wall { padding: 50px 0; }
  .polaroid-grid { max-width: 340px; }
  .polaroid { padding: 12px 12px 36px; margin-bottom: 22px; }
  .polaroid-caption h4 { font-size: 1.25rem; }

  /* Stats 2x2 grid */
  .stats-card { padding: 28px 18px; gap: 16px; grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 0.82rem; }
  .stat-icon { width: 56px; height: 56px; margin-bottom: 12px; }
  .stat-icon svg { width: 26px; height: 26px; }

  /* CTA banners */
  .cta-banner { padding: 24px; gap: 16px; }
  .cta-banner h3 { font-size: 1.3rem; margin: 6px 0 14px; }
  .cta-banner img { width: 140px; }

  /* Footer */
  .footer { padding: 50px 0 30px; }
  .footer-top { gap: 28px; }
  .footer h4 { margin-bottom: 14px; font-size: 1rem; }
  .footer-newsletter input { padding: 12px 16px; }

  /* Floating widgets */
  .whatsapp-float { padding: 11px 16px; font-size: 0.82rem; gap: 8px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 18px; height: 18px; }
  .booking-toast { max-width: calc(100vw - 28px); left: 14px; bottom: 84px; padding: 12px 14px 12px 10px; }
  .booking-toast .bt-text strong { font-size: 0.85rem; }
  .booking-toast .bt-text span { font-size: 0.78rem; }

  /* Marquee */
  .marquee-item { font-size: 1.2rem; gap: 36px; }

  /* Articles */
  .article-content { padding: 20px; }
  .article-title { font-size: 1.05rem; }

  /* Destinations cards */
  .destinations-cards { grid-template-columns: 1fr; gap: 36px; padding-top: 18px; }
  .dc-image { aspect-ratio: 4 / 5; }

  /* Why choose */
  .why-section { padding: 50px 0; }
  .why-features { padding: 20px; gap: 16px; }
  .why-feature { padding: 12px; }

  /* Umrah landing */
  .umrah-landing-section { padding: 50px 0; }
  .umrah-featured { transform: translateY(0); }
}

/* Very small phones (iPhone SE, etc.) */
@media (max-width: 380px) {
  .hero-collage-section h1 { font-size: 1.55rem; }
  .hero-collage { max-width: 240px; }
  .header { margin: 6px 6px 0; }
  .header .container { padding: 8px 12px; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-text strong { font-size: 0.85rem; }
  .header .btn-primary { padding: 8px 12px; font-size: 0.76rem; }
  .menu-toggle { padding: 8px; min-width: 38px; min-height: 38px; }
  .container { padding: 0 14px; }
  .tour-content { padding: 16px; }
  .marquee-item { font-size: 1.05rem; gap: 24px; }
}

/* iOS safe area (iPhone X+ with home indicator) */
@supports (padding: max(0px)) {
  .whatsapp-float { bottom: max(16px, env(safe-area-inset-bottom)); }
  .footer { padding-bottom: max(30px, env(safe-area-inset-bottom)); }
  .booking-toast { bottom: max(84px, calc(env(safe-area-inset-bottom) + 70px)); }
}

/* Landscape phones — don't claustrophobe the hero */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero-collage-section { min-height: auto; padding: 24px 0; }
  .hero-collage-section .hero-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-collage { max-width: 220px; }
}

/* =====================================================================
   Special Offer — brand decorations + responsive
   ===================================================================== */
.offer-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.offer-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06) 1.5px, transparent 1.5px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px, 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.offer-arch {
  position: absolute;
  top: -100px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50% 50% 14px 14px / 38% 38% 14px 14px;
  background: radial-gradient(circle at top, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.offer-section .container { position: relative; z-index: 1; }

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.25);
}
.offer-badge svg { color: var(--color-accent); }

.offer-pillars {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 28px 0;
  padding: 18px 22px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
}
.offer-pillar strong { display: block; color: #fff; font-size: 1.25rem; font-weight: 800; line-height: 1.1; }
.offer-pillar small { display: block; color: rgba(255,255,255,0.78); font-size: 0.8rem; margin-top: 4px; }
.offer-pillar-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.offer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
  transform: translateY(-2px);
}

.offer-image {
  position: relative;
}
.offer-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 64px rgba(0,0,0,0.32);
  border: 6px solid rgba(255,255,255,0.12);
}
.offer-image-tag {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  color: var(--color-primary-dark);
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}
.offer-image-tag small { display: block; font-size: 0.74rem; color: var(--color-text-muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.offer-image-tag strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--color-primary-dark); margin-top: 2px; }
.offer-image-ribbon {
  position: absolute;
  top: 18px;
  right: -8px;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(247,143,41,0.45);
  border-radius: 6px 0 0 6px;
}
.offer-image-ribbon::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 8px 0 0;
  border-color: #b35a09 transparent transparent transparent;
}

/* =====================================================================
   Tablet (769–1024px) — explicit middle-ground polish
   The 1024px stack-to-1col rule already exists; here we tune the new
   about + offer sections for landscape iPad / smaller laptops.
   ===================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  /* About — tighten gaps on tablet */
  .about-section { padding: 80px 0 !important; }
  .about-grid { gap: 40px !important; }
  .about-images img { aspect-ratio: 4/5; }
  .about-img-secondary { width: 50% !important; bottom: -24px !important; right: -16px !important; }

  /* Offer — single column on tablet, image first */
  .offer-grid { grid-template-columns: 1fr; gap: 50px; }
  .offer-image { max-width: 560px; margin: 0 auto; }
  .offer-image img { aspect-ratio: 16/10; }
  .offer-arch { width: 280px; height: 280px; top: -70px; right: -90px; }
}

/* =====================================================================
   Mobile (<=768px) — new sections specifically
   ===================================================================== */
@media (max-width: 768px) {
  /* About section — relax the inline styles for phones */
  .about-section { padding: 60px 0 !important; }
  .about-grid { gap: 60px !important; }
  .about-images { max-width: 380px; margin: 0 auto; }
  .about-images img[src*="1.jpg"], .about-images img[src*="afg3"] { aspect-ratio: 4/5; }
  .about-img-secondary { width: 50% !important; bottom: -28px !important; right: -12px !important; }
  .about-section h2 { font-size: clamp(1.55rem, 6vw, 2rem) !important; line-height: 1.18 !important; }

  /* Offer section — phone layout */
  .offer-section { padding: 60px 0; }
  .offer-grid { grid-template-columns: 1fr; gap: 50px; }
  .offer-section h2 { font-size: clamp(1.55rem, 6vw, 1.95rem); line-height: 1.2; margin-bottom: 18px; }
  .offer-section p { font-size: 0.95rem; }
  .offer-pillars { padding: 14px 16px; gap: 14px; margin: 22px 0; }
  .offer-pillar strong { font-size: 1.05rem; }
  .offer-pillar small { font-size: 0.72rem; }
  .offer-pillar-divider { height: 30px; }
  .offer-actions .btn { flex: 1 1 100%; justify-content: center; }
  .offer-actions { flex-direction: column; gap: 10px; }
  .offer-image { max-width: 480px; margin: 0 auto; }
  .offer-image img { aspect-ratio: 4/3; border-width: 4px; }
  .offer-image-tag { padding: 10px 16px; left: -10px; bottom: -14px; }
  .offer-image-tag small { font-size: 0.66rem; }
  .offer-image-tag strong { font-size: 1.1rem; }
  .offer-image-ribbon { padding: 7px 13px; font-size: 0.8rem; top: 14px; right: -6px; }
  .offer-arch { width: 220px; height: 220px; top: -60px; right: -70px; }

  /* FAQ section — phone */
  #faq { padding: 60px 0 !important; }
  #faq .faq-item summary { font-size: 0.94rem !important; gap: 10px !important; }
  #faq .faq-item p { font-size: 0.88rem !important; }
}

/* Very small phones — extra compression */
@media (max-width: 380px) {
  .about-img-secondary { width: 52% !important; bottom: -24px !important; right: -8px !important; }
  .offer-pillars { flex-direction: column; align-items: flex-start; gap: 10px; }
  .offer-pillar-divider { width: 100%; height: 1px; }
  .offer-image-tag { left: 0; right: 0; bottom: -16px; text-align: center; }
}

/* =====================================================================
   Why Choose Us — brand polish
   ===================================================================== */
.why-section { position: relative; overflow: hidden; }
.why-dots {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(26,168,154,0.28) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}
.why-section .container { position: relative; z-index: 1; }

.why-feature {
  align-items: flex-start;
  transition: background var(--transition);
  border-radius: 10px;
}
.why-feature:hover { background: rgba(26,168,154,0.05); }
.why-feature-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.why-feature h4 { margin: 0 0 4px; color: var(--color-primary-dark); font-size: 1.02rem; line-height: 1.3; }
.why-feature p { margin: 0; font-size: 0.84rem; color: var(--color-text-muted); line-height: 1.4; }
.why-feature-icon {
  width: 56px; height: 56px;
  background: rgba(26,168,154,0.12);
  color: var(--color-primary);
  border-radius: 14px;
  flex-shrink: 0;
}
.why-feature:hover .why-feature-icon {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
.why-feature-icon svg { width: 26px; height: 26px; }

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
}
.why-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(14,111,102,0.22);
  display: block;
}

.why-rating-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}
.why-rating-stars { display: flex; gap: 2px; color: #f5a623; }
.why-rating-text strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--color-primary-dark); line-height: 1; }
.why-rating-text small { display: block; font-size: 0.72rem; color: var(--color-text-muted); margin-top: 2px; }

.why-years-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-primary);
  color: #fff;
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(14,111,102,0.4);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 70%;
}
.why-years-badge strong { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.why-years-badge small { font-size: 0.78rem; line-height: 1.3; opacity: 0.95; }

/* Tablet: Why Choose Us tuning */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-section { padding: 80px 0 !important; }
  .why-grid { gap: 40px !important; }
  .why-image-wrap img { aspect-ratio: 5/6; }
  .why-rating-badge { top: 16px; right: 16px; padding: 10px 14px; }
  .why-years-badge { padding: 14px 18px; max-width: 65%; bottom: -18px; left: -18px; }
  .why-years-badge strong { font-size: 1.8rem; }
  .why-dots { width: 120px; height: 120px; top: 40px; right: 20px; }
}

/* Mobile: Why Choose Us tuning */
@media (max-width: 768px) {
  .why-section { padding: 60px 0 !important; }
  .why-grid { gap: 60px !important; }
  .why-section h2 { font-size: clamp(1.55rem, 6vw, 2rem) !important; line-height: 1.2 !important; }
  .why-features { padding: 18px !important; gap: 10px !important; }
  .why-feature { padding: 12px !important; }
  .why-feature-icon { width: 44px; height: 44px; border-radius: 10px; }
  .why-feature-icon svg { width: 20px; height: 20px; }
  .why-feature h4 { font-size: 0.95rem; }
  .why-feature p { font-size: 0.78rem; }
  .why-feature-num { font-size: 0.65rem; }

  .why-image-wrap { max-width: 420px; margin: 0 auto; }
  .why-image-wrap img { aspect-ratio: 4/5; }
  .why-rating-badge { top: 14px; right: 14px; padding: 8px 12px; min-width: 120px; }
  .why-rating-text strong { font-size: 0.92rem; }
  .why-rating-text small { font-size: 0.64rem; }
  .why-rating-stars svg { width: 10px; height: 10px; }
  .why-years-badge { padding: 12px 16px; left: -12px; bottom: -16px; max-width: 75%; gap: 10px; }
  .why-years-badge strong { font-size: 1.6rem; }
  .why-years-badge small { font-size: 0.7rem; }
  .why-dots { display: none; }
}

/* Tiny phones */
@media (max-width: 380px) {
  .why-features { grid-template-columns: 1fr !important; }
  .why-feature:nth-child(odd) { border-right: none !important; }
  .why-years-badge { left: 50%; transform: translateX(-50%); bottom: -30px; max-width: 90%; }
}
