/* ============================================================
   Liyocom – Color Palette #2085
   #e3a765 caramel · #fdd000 yellow · #f2efe2 cream
   #5d6d7c slate · #000000 black
   ============================================================ */

:root {
  /* ── Primary palette ── */
  --gold:          #e3a765;   /* caramel – main accent */
  --gold-light:    #f5d9a8;   /* lighter caramel for hovers */
  --gold-dark:     #b37830;   /* darker caramel for text on light */
  --yellow:        #fdd000;   /* bright yellow – CTA highlight */
  --yellow-dark:   #c9a600;   /* darker yellow for hover states */

  /* ── Backgrounds ── */
  --gold-bg:       #f2efe2;   /* cream – main page background */
  --surface:       #FFFFFF;   /* cards */
  --surface-2:     #f7f4ec;   /* slightly warmer off-white */
  --surface-3:     #ebe7d8;   /* dividers / borders */

  /* ── Dark tones ── */
  --midnight:      #000000;   /* pure black – hero overlay base */
  --deep:          #1a1a1a;   /* near-black – footer */
  --slate:         #5d6d7c;   /* slate blue-grey – muted text */

  /* ── Text ── */
  --text:          #111111;   /* near-black body text */
  --text-muted:    #5d6d7c;   /* slate for secondary text */

  /* ── Borders ── */
  --border:        rgba(227,167,101,0.22);
  --border-strong: rgba(227,167,101,0.50);

  /* ── Misc ── */
  --white:         #FFFFFF;
  --accent:        #5d6d7c;
  --success:       #2E7D32;
  --radius:        12px;
  --shadow-gold:   0 4px 32px rgba(227,167,101,0.18);
  --shadow-card:   0 2px 20px rgba(0,0,0,0.07);
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Scheherazade New', 'Josefin Sans', sans-serif;
  background: var(--gold-bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

/* Headings use Amiri for Arabic */
h1, h2, h3, h4, h5 {
  font-family: 'Amiri', 'Scheherazade New', 'Cormorant Garamond', serif;
}

/* Smaller UI elements (badges, labels, buttons) stay with Josefin */
.btn, .nav-link, .section-badge, label, .stat-label,
.omra-year, .price-from, .footer-col-title, .newsletter-form input,
.announcement-bar { font-family: 'Josefin Sans', sans-serif; }

/* RTL flip for flex rows where needed */
.nav-container, .hero-actions, .contact-link,
.why-feature, .testimonial-author, .footer-logo,
.footer-social, .newsletter-form { flex-direction: row; }

/* ======= PAGE LOADER ======= */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
/* CSS fallback: always hide after 3s even if JS fails */
@keyframes loaderAutoHide {
  0%   { opacity: 1; visibility: visible; }
  99%  { opacity: 0; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
.page-loader { animation: loaderAutoHide 0.5s ease 2.5s forwards; }

.loader-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
}

/* Spinning ring with logo inside */
.loader-ring {
  position: relative; width: 110px; height: 110px;
}
.loader-ring svg {
  width: 110px; height: 110px;
  animation: loaderSpin 1.8s linear infinite;
}
.loader-arc {
  transform-origin: center;
  animation: loaderArc 1.8s ease-in-out infinite;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes loaderArc {
  0%   { stroke-dashoffset: 250; }
  50%  { stroke-dashoffset: 60;  }
  100% { stroke-dashoffset: 250; }
}

.loader-logo {
  position: absolute;
  inset: 0; margin: auto;
  width: 64px; height: 64px;
  object-fit: contain; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.06); opacity: 0.85; }
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  letter-spacing: 0.35em; color: var(--text);
  text-transform: uppercase;
}
.loader-text span { color: var(--gold); }

.loader-tagline {
  font-family: 'Amiri', serif;
  font-size: 0.95rem; color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Progress bar */
.loader-bar {
  width: 160px; height: 2px;
  background: rgba(227,167,101,0.2);
  border-radius: 2px; overflow: hidden;
  margin-top: 4px;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--yellow));
  border-radius: 2px;
  animation: loaderProgress 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loaderProgress {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
@media (max-width: 480px) {
  .loader-ring     { width: 88px; height: 88px; }
  .loader-ring svg { width: 88px; height: 88px; }
  .loader-logo     { width: 52px; height: 52px; }
  .loader-text     { font-size: 1.25rem; }
  .loader-tagline  { font-size: 0.85rem; }
  .loader-bar      { width: 120px; }
}

/* ======= ANNOUNCEMENT BAR ======= */
.announcement-bar {
  background: var(--yellow);
  color: var(--midnight);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 100;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.announcement-bar p { display: flex; align-items: center; gap: 6px; }
.announcement-bar a { color: var(--midnight); text-decoration: underline; font-weight: 700; }
.ann-dot {
  width: 8px; height: 8px; background: var(--midnight);
  border-radius: 50%; animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ======= NAVBAR ======= */
.navbar {
  position: sticky; top: 0; z-index: 500;
  background: rgba(242, 239, 226, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(227,167,101,0.15); }
.nav-container {
  max-width: 1300px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 42px; width: 42px;
  object-fit: contain; border-radius: 6px;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--text);
}
.logo-text strong { color: var(--gold); }
.nav-menu {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin-left: auto;
}
.nav-link {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: 8px 14px; border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-dark); background: rgba(227,167,101,0.12);
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  min-width: 200px; list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(28,26,22,0.12);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 10px 14px;
  color: var(--text-muted); text-decoration: none;
  font-size: 0.85rem; border-radius: 6px;
  transition: var(--transition);
}
.dropdown-menu li a:hover { color: var(--gold); background: rgba(227,167,101,0.10); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--gold);
  text-decoration: none; font-weight: 600;
  letter-spacing: 0.05em;
}
.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: var(--transition);
}
.btn-gold {
  background: var(--yellow);
  color: var(--midnight);
  box-shadow: 0 4px 24px rgba(253,208,0,0.35);
}
.btn-gold:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(253,208,0,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.full-width { width: 100%; justify-content: center; }

/* ======= HERO – Full-width background image ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* The Kaaba photo as background — image set dynamically via inline style */
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

/* Multi-layer dark overlay — lighter at center, heavier at edges */
.hero-overlay {
  position: absolute; inset: 0;
  background:
          linear-gradient(to bottom,
          rgba(10,15,30,0.70) 0%,
          rgba(10,15,30,0.50) 35%,
          rgba(10,15,30,0.65) 70%,
          rgba(10,15,30,0.95) 100%
          ),
          linear-gradient(to right,
          rgba(10,15,30,0.5) 0%,
          transparent 35%,
          transparent 65%,
          rgba(10,15,30,0.5) 100%
          );
}

.hero-stars { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

/* Inner content — centered column */
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 120px 40px 100px;
  max-width: 860px; margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(253,208,0,0.18);
  border: 1px solid rgba(253,208,0,0.6);
  color: var(--yellow); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 8px 18px;
  border-radius: 50px; margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease both;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--yellow);
  border-radius: 50%; animation: blink 1.5s infinite;
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title-ar {
  display: block;
  font-family: 'Amiri', 'Scheherazade New', serif;
  font-size: 1.3rem; color: var(--gold-light);
  letter-spacing: 0.05em; margin-bottom: 10px;
  direction: rtl; opacity: 0.9;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-title-fr {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600; line-height: 1.12;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-title-fr em {
  font-style: italic; color: var(--gold);
  text-shadow: 0 0 40px rgba(227,167,101,0.5);
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  max-width: 560px; line-height: 1.8;
  margin-bottom: 40px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* White outline button for image hero */
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Stats bar */
.hero-stats {
  display: flex; align-items: center;
  gap: 0;
  background: rgba(10,15,30,0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(227,167,101,0.22);
  border-radius: 16px; padding: 20px 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.stat-item { padding: 0 28px; text-align: center; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--yellow); line-height: 1;
}
.stat-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px; display: block;
}
.stat-divider {
  width: 1px; height: 44px;
  background: rgba(227,167,101,0.3); flex-shrink: 0;
}

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  z-index: 2;
  animation: fadeInUp 1s ease 0.8s both;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ======= SECTIONS ======= */
.section {
  padding: 100px 80px;
  max-width: 1400px; margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  background: rgba(227,167,101,0.15);
  border: 1px solid var(--border-strong);
  color: var(--gold-dark); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 50px; margin-bottom: 16px;
}
.section-badge.gold { background: var(--yellow); color: var(--midnight); border-color: var(--yellow); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.2;
  color: var(--text);
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: #fff; }
.section-sub {
  margin-top: 16px; max-width: 580px;
  margin-left: auto; margin-right: auto;
  color: var(--text-muted); line-height: 1.8; font-size: 0.95rem;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* ======= OMRA SECTION ======= */
.affiliate-widget { width: 100%; background: #fff; position: relative; z-index: 10; }
.omra-section { background: transparent; border-radius: 0; box-shadow: none; }

/* Omra slider (same pattern as articles) */
.omra-slider-wrap { max-width: 1200px; margin: 0 auto; }
.omra-slider { overflow: hidden; }
.omra-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.omra-track.omra-centered { justify-content: center; }
.omra-track.omra-centered .omra-card-visual {
  flex: 0 0 clamp(320px, 70vw, 520px);
  max-width: 92%;
}

/* 2 per view — matches main.js perView() for ≥769px */
.omra-track .omra-card-visual { flex: 0 0 calc((100% - 24px) / 2); }

.omra-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.omra-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  color: var(--text); font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s; box-shadow: var(--shadow-card);
}
.omra-arrow:hover:not(:disabled) {
  background: var(--yellow); color: #000;
  border-color: var(--yellow); transform: scale(1.08);
}
.omra-arrow:disabled { opacity: 0.3; cursor: default; transform: none; }

.omra-dots { display: flex; gap: 8px; align-items: center; }
.omra-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d4c9a8;
  border: 1px solid rgba(26, 58, 74, 0.18);
  cursor: pointer; transition: all 0.22s;
}
.omra-dot.active { background: var(--yellow); transform: scale(1.35); }

.omra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Visual card — same pattern as occasion cards */
.omra-card-visual {
  position: relative;
  border-radius: 16px; overflow: hidden;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer; text-decoration: none;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.omra-card-visual:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
/* Middle of the current “page” — readable emphasis without a solid panel */
.omra-card-visual.omra-card--featured {
  position: relative;
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.omra-card-visual.omra-card--featured:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.34);
}
.omra-card-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
          to top,
          rgba(10,8,4,0.94) 0%,
          rgba(10,8,4,0.58) 42%,
          rgba(10,8,4,0.22) 72%,
          rgba(10,8,4,0.08) 100%
  );
  transition: background 0.4s ease;
}
.omra-card-visual:hover .omra-card-overlay {
  background: linear-gradient(
          to top,
          rgba(10,8,4,0.97) 0%,
          rgba(10,8,4,0.70) 48%,
          rgba(10,8,4,0.35) 78%,
          rgba(10,8,4,0.12) 100%
  );
}
/* Full-width bottom band: in RTL, align-items:flex-end pins content to one side,
   so clipped “peek” cards show image only. Stretch keeps copy in any visible slice. */
.omra-card-content {
  position: relative; z-index: 2;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: right;
}
.omra-card-content > .omra-card-icon,
.omra-card-content > .omra-card-month,
.omra-card-content > .omra-card-year,
.omra-card-content > .omra-card-price,
.omra-card-content > .omra-card-link {
  align-self: flex-end;
}
.omra-card-icon {
  font-size: 2rem; margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.omra-card-month {
  font-family: 'Amiri', 'Scheherazade New', serif;
  font-size: 1.35rem; font-weight: 700;
  color: #fff; margin-bottom: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.omra-card-year {
  font-size: 0.75rem; color: var(--yellow);
  font-weight: 700; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.omra-card-price {
  margin-bottom: 14px;
  direction: ltr; text-align: right;
}
.omra-price-from {
  display: block; font-size: 0.68rem;
  color: rgba(255,255,255,0.6); margin-bottom: 2px;
  direction: rtl;
}
.omra-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--yellow);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  display: block; direction: ltr; unicode-bidi: isolate;
}
.omra-price-num em { font-style: normal; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.omra-card-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.omra-card-visual:hover .omra-card-link {
  color: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .omra-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .omra-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .omra-card-visual { min-height: 200px; }
  .omra-track { gap: 16px; }
  .omra-track .omra-card-visual { flex: 0 0 100%; width: 100%; max-width: 100%; }
}

/* ======= OCCASIONS ======= */
.occasions-section {
  margin: 0;
  max-width: none;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(42, 82, 152, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%,  rgba(20, 50, 100, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 80%, rgba(10, 30,  80, 0.25) 0%, transparent 45%),
    linear-gradient(170deg, #0e1d3a 0%, #091525 40%, #060e1c 100%);
  padding: 80px 80px 100px;
}

/* Occasions slider (same pattern as articles) */
.occasions-slider-wrap { max-width: 1200px; margin: 0 auto; }
.occasions-slider { overflow: hidden; }
.occasions-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.occasions-track.occasions-centered { justify-content: center; }

/* 3 per view on desktop */
.occasions-track .occasion-card { flex: 0 0 calc((100% - 40px) / 3); }

.occasions-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.occasions-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid rgba(255,255,255,0.22);
  color: #000; font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s; box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.occasions-arrow:hover:not(:disabled) {
  background: var(--yellow); color: #000;
  border-color: var(--yellow); transform: scale(1.08);
}
.occasions-arrow:disabled { opacity: 0.3; cursor: default; transform: none; }

.occasions-dots { display: flex; gap: 8px; align-items: center; }
.occasion-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none;
  cursor: pointer; transition: all 0.22s;
}
.occasion-dot.active { background: var(--yellow); transform: scale(1.35); }
.occasions-section .section-badge {
  background: rgba(227,167,101,0.18);
  border-color: rgba(227,167,101,0.4);
  color: var(--gold-light);
}
.occasions-section .section-title {
  color: #fff;
}
.occasions-section .section-header .section-title::after {
  display: none;
}
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-content: center;
}
.occasion-card {
  position: relative;
  border-radius: 16px; overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.occasion-card:hover,
.occasion-card h3,
.occasion-card p,
.occasion-card .occasion-link {
  text-decoration: none;
}
.occasion-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
/* Dark gradient overlay — ensures text always readable */
.occasion-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
          to top,
          rgba(10,8,4,0.90) 0%,
          rgba(10,8,4,0.52) 50%,
          rgba(10,8,4,0.18) 100%
  );
  transition: background 0.4s ease;
}
.occasion-card:hover .occasion-overlay {
  background: linear-gradient(
          to top,
          rgba(10,8,4,0.95) 0%,
          rgba(10,8,4,0.65) 55%,
          rgba(10,8,4,0.30) 100%
  );
}
/* Content above overlay */
.occasion-content {
  position: relative; z-index: 2;
  padding: 24px 20px;
  display: flex; flex-direction: column; align-items: flex-end;
  text-align: right;
}
.occasion-icon {
  font-size: 2.4rem; margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.occasion-card h3 {
  font-family: 'Amiri', 'Scheherazade New', serif;
  font-size: 1.2rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.occasion-card p {
  font-size: 0.82rem; color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-bottom: 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.occasion-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-light); font-size: 0.8rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(232,213,163,0.35);
  padding-bottom: 2px; transition: color 0.25s, border-color 0.25s;
}
.occasion-card:hover .occasion-link { color: #fff; border-color: rgba(255,255,255,0.6); }
.occasions-hint {
  margin-top: 16px; text-align: center;
  font-size: 0.78rem; color: var(--muted);
}
.occasions-hint code {
  background: var(--surface3); padding: 2px 6px;
  border-radius: 4px; font-size: 0.75rem; color: var(--gold-dark);
}
@media (max-width: 1100px) {
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .occasions-track .occasion-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 768px) {
  .occasions-section { margin: 0; padding: 60px 24px 80px; }
  .occasions-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .occasion-card { min-height: 220px; }
  .occasions-track { gap: 16px; }
  .occasions-track .occasion-card { flex: 0 0 100%; width: 100%; max-width: 100%; }
}

/* ======= HAJJ SECTION ======= */
.hajj-section {
  position: relative;
  background: var(--surface-2);
  padding: 100px 80px; margin: 0;
  max-width: none;
}
.hajj-section-bg {
  position: absolute; inset: 0;
  background:
          radial-gradient(ellipse at 50% 0%, rgba(227,167,101,0.08) 0%, transparent 60%);
}
.hajj-section .section-header { position: relative; z-index: 1; }

.hajj-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; max-width: 1300px; margin: 0 auto;
}

/* Card */
.hajj-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.hajj-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 48px rgba(227,167,101,0.18);
}
.hajj-card.featured { border-color: var(--gold); border-width: 2px; }

/* Image area */
.hajj-card-img {
  position: relative;
  height: 200px; overflow: hidden;
  flex-shrink: 0;
}
.hajj-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.hajj-card:hover .hajj-card-img img { transform: scale(1.06); }

/* Placeholder when no image */
.hajj-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}

/* Badge on top of image */
.hajj-badge-over {
  position: absolute; top: 14px; left: 14px;
  background: var(--yellow);
  color: var(--midnight);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.hajj-card.featured .hajj-badge-over {
  background: var(--midnight);
  color: var(--yellow);
  border: 1px solid var(--yellow);
}

/* Gradient from image into card body */
.hajj-card-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(22,29,46,0.95));
}

/* Body */
.hajj-card-body {
  padding: 24px;
  flex: 1; display: flex; flex-direction: column;
  background: var(--white);
}
.hajj-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--text); margin-bottom: 12px;
}
.hajj-price { margin-bottom: 20px; }
.price-prefix { display: block; font-size: 0.72rem; color: var(--text-muted); }
.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold-dark);
}
.price-main small { font-size: 1rem; color: var(--text-muted); }
.price-dist { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.hajj-features {
  list-style: none; margin-bottom: 24px; flex: 1;
}
.hajj-features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--surface-3, #ebe7d8);
  font-size: 0.84rem; color: var(--text-muted);
}
.btn-hajj {
  display: block; text-align: center;
  padding: 13px; border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: var(--transition);
}
.btn-hajj:hover, .btn-hajj.featured {
  background: var(--yellow);
  color: var(--midnight);
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(253,208,0,0.35);
}

/* ======= WHY US ======= */
.why-section {
  position: relative;
  overflow: hidden;
  padding: 120px 40px;
  margin: 0;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(42, 82, 152, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%,  rgba(20, 50, 100, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 80%, rgba(10, 30,  80, 0.25) 0%, transparent 45%),
    linear-gradient(170deg, #0e1d3a 0%, #091525 40%, #060e1c 100%);
}

/* Hidden – kept for JS parallax ref but no longer needed */
.why-parallax-bg { display: none; }
.why-overlay     { display: none; }

/* Content above overlay */
.why-content {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
  text-align: center;
}

.why-badge {
  background: rgba(227,167,101,0.2) !important;
  border-color: rgba(227,167,101,0.5) !important;
  color: var(--gold-light) !important;
  margin-bottom: 20px;
  display: inline-block;
}

.why-title {
  color: #fff !important;
  margin-bottom: 20px;
}
.why-title em { color: var(--gold) !important; }
.why-title::after {
  background: linear-gradient(90deg, var(--gold), var(--yellow)) !important;
  margin: 14px auto 0 !important;
}

.why-desc {
  color: rgba(255,255,255,0.75); line-height: 1.9;
  margin-bottom: 48px; font-size: 1rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}

/* Feature cards — glass */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.why-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(227,167,101,0.25);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  text-align: right;
}
.why-feature:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(227,167,101,0.55);
  transform: translateY(-4px);
}
.why-feature h4 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 4px; color: #fff;
}
.why-feature p { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.stats-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  text-align: center; transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.stats-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-gold); }
.stats-card.accent { background: var(--gold-bg); border-color: var(--border-strong); }
.stat-circle { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 8px; }
.stat-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold-dark);
}

/* ======= TESTIMONIALS ======= */
.testimonials-section { background: var(--white); border-radius: 32px; box-shadow: var(--shadow-card); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--gold-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.testimonial-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--text); line-height: 1.8; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.author-name { display: block; font-weight: 700; font-size: 0.88rem; color: var(--text); }
.author-city { font-size: 0.75rem; color: var(--text-muted); }

/* ======= FAQ ======= */
/* ── Articles ── */
.articles-section {
  background: linear-gradient(160deg, #1a2e4a 0%, #0e1d35 60%, #091525 100%);
  padding: 80px 0;
  max-width: 100%;
  width: 100%;
}
.articles-section .section-badge { background: rgba(227,167,101,0.15); color: #e3a765; border-color: rgba(227,167,101,0.3); }
.articles-section .section-title { color: #fff; }
.articles-section .section-title em { color: #e3a765; }
.articles-section .section-divider { background: #e3a765; }
.articles-slider-wrap { max-width: 1100px; margin: 0 auto; }
.articles-slider { overflow: hidden; }
.articles-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.article-card {
  flex: 0 0 calc(50% - 12px);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(184,146,58,0.12);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 16px rgba(28,26,22,0.06);
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(28,26,22,0.11); }
.article-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #ede8d9;
  background-image: linear-gradient(135deg, #f2efe2, #e3d5b0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2.5rem;
}
.article-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-date { font-size: .72rem; color: #b8923a; font-weight: 700; letter-spacing: .05em; margin-bottom: 8px; }
.article-title {
  font-family: 'Amiri', serif;
  font-size: 1.1rem;
  color: #1C1A16;
  margin-bottom: 10px;
  line-height: 1.55;
}
.article-excerpt { font-size: .83rem; color: #6B6457; line-height: 1.7; flex: 1; margin-bottom: 16px; }
.article-read-more { font-size: .8rem; color: #b8923a; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.articles-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.article-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(227,167,101,0.4);
  background: rgba(255,255,255,0.08);
  color: #e3a765;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.article-arrow:hover:not(:disabled) { background: rgba(227,167,101,0.2); border-color: #e3a765; }
.article-arrow:disabled { opacity: 0.3; cursor: default; }
.article-dots { display: flex; gap: 8px; }
.article-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(227,167,101,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.article-dot.active { background: #e3a765; transform: scale(1.3); }
@media (max-width: 768px) {
  .article-card { flex: 0 0 100%; }
  .articles-track { gap: 0; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .article-card { flex: 0 0 calc(50% - 12px); }
}

.faq-section { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(227,167,101,0.1); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; gap: 16px;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
}
.faq-icon {
  font-size: 1.3rem; color: var(--gold);
  transition: transform 0.3s ease; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.8;
}

/* ======= CONTACT ======= */
.contact-section {
  background: var(--white); border-radius: 32px;
  margin: 60px 80px;
  box-shadow: var(--shadow-card);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-content .section-badge { margin-bottom: 16px; }
.contact-content .section-title { margin-bottom: 20px; }
.contact-content > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; font-size: 0.95rem; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-radius: var(--radius);
  background: var(--gold-bg); border: 1px solid var(--border);
  color: var(--text); text-decoration: none;
  font-size: 0.88rem; font-weight: 600;
  transition: var(--transition);
}
.contact-link:hover { border-color: var(--border-strong); color: var(--gold-dark); box-shadow: var(--shadow-gold); }
.contact-link.whatsapp:hover { border-color: #25D366; color: #1a9e4d; }
.contact-icon { font-size: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227,167,101,0.12);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--surface-3, #ebe7d8); }
.form-success {
  background: rgba(46,125,50,0.08);
  border: 1px solid rgba(46,125,50,0.25);
  color: #2E7D32; padding: 14px; border-radius: 8px;
  margin-bottom: 16px; font-size: 0.88rem;
}

/* ======= FOOTER ======= */
.footer { background: #000000; margin-top: 80px; }
.footer-top {
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: 60px; padding: 80px 80px 60px; max-width: 1400px; margin: 0 auto;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.footer-logo-img {
  height: 52px; width: 52px;
  object-fit: contain; border-radius: 8px;
}
.logo-text-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: #F5F0E8;
}
.logo-text-lg strong { color: var(--gold); }
.footer-desc {
  color: rgba(245,240,232,0.55); line-height: 1.8;
  font-size: 0.88rem; margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  transition: var(--transition, all .3s);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(227,167,101,0.12); }
.social-btn.wa:hover { border-color: #25D366; color: #25D366; background: rgba(37,211,102,0.1); }
.social-btn svg { display: block; flex-shrink: 0; }
.footer-links-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.footer-col-title {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(245,240,232,0.5); text-decoration: none;
  font-size: 0.85rem; transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact li {
  font-size: 0.82rem; color: rgba(245,240,232,0.5);
  margin-bottom: 8px; display: flex; gap: 8px;
}
.footer-contact li a { color: rgba(245,240,232,0.5); text-decoration: none; }
.footer-contact li a:hover { color: var(--gold); }
.newsletter h5 {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,240,232,0.5); margin: 20px 0 10px;
}
.newsletter-form {
  position: relative;
  display: block;
}
.newsletter-form input {
  width: 100%;
  padding: 12px 14px;
  padding-left: 58px; /* room for the button */
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  direction: rtl;
  text-align: right;
  color: #F5F0E8; font-size: 0.82rem; outline: none;
  font-family: 'Josefin Sans', sans-serif;
}
.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,58,0.14);
}
.newsletter-form button {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: 50px;
  background: var(--yellow);
  border: none;
  border-radius: 10px;
  color: var(--midnight); font-size: 1rem;
  cursor: pointer; transition: var(--transition);
  font-weight: 700;
}
.newsletter-form button:hover { background: var(--yellow-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 80px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(245,240,232,0.35); }
.footer-ar {
  font-family: 'Amiri', 'Scheherazade New', serif;
  font-size: 0.95rem; color: var(--gold);
  direction: rtl;
}

/* ======= WHATSAPP FLOAT ======= */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition); animation: floatIn 1s ease 2s both;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
@keyframes floatIn { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* ======= ANIMATIONS ======= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .contact-section { margin: 40px 24px; }
  .hajj-section { padding: 60px 24px; }
  .footer-top { padding: 60px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: var(--surface); padding: 80px 24px;
    flex-direction: column; align-items: flex-start;
    transition: right 0.4s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    z-index: 400;
  }
  .nav-menu.open { right: 0; }
  .nav-toggle { display: flex; z-index: 500; }
  .nav-phone { display: none; }
  .hero-inner { padding: 100px 24px 80px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .stat-item { padding: 0 12px; }
  .stat-divider { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
}

/* ======= RTL / ARABIC OVERRIDES ======= */

/* Hero title — larger for Arabic */
.hero-title-fr {
  font-family: 'Amiri', 'Scheherazade New', serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
}
.hero-title-ar {
  font-family: 'Amiri', 'Scheherazade New', serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

/* Section titles */
.section-title {
  font-family: 'Amiri', 'Scheherazade New', serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Stat labels & unit — keep numeric font and LTR direction */
.stat-num, .stat-big, .price-amount, .price-main {
  font-family: 'Cormorant Garamond', serif;
  direction: ltr; unicode-bidi: isolate; display: inline-block;
}

/* Nav mobile menu – RTL: slides from right using transform (no overflow) */
@media (max-width: 768px) {
  .nav-menu {
    right: 0 !important;
    left: auto !important;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1) !important;
  }
  .nav-menu.open {
    transform: translateX(0) !important;
  }
}

/* Backdrop overlay when mobile menu is open */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
  z-index: 399;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-backdrop.visible {
  display: block;
  opacity: 1;
}

/* Prevent body scroll when menu open */
body.menu-open { overflow: hidden; }

/* Scroll hint arrow direction */
.scroll-hint { direction: ltr; }

/* FAQ icon flips for RTL */
.faq-question { flex-direction: row-reverse; }

/* Contact links */
.contact-link { flex-direction: row-reverse; justify-content: flex-end; }

/* Footer bottom row */
.footer-bottom { flex-direction: row-reverse; }

/* ======= PROMO FLYERS – Static 3-per-page grid ======= */
.promos-section { padding-bottom: 60px; }

.promos-slider-wrap {
  max-width: 1200px; margin: 0 auto;
}

.promos-slider { overflow: hidden; }

.promos-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.promo-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.promo-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.promo-slide img {
  width: 100%; display: block;
  object-fit: contain;
  cursor: zoom-in;
  border-radius: 14px;
}

.promo-caption {
  text-align: center; padding: 10px 12px;
  font-size: 0.88rem; color: var(--text-muted);
  font-family: 'Amiri', 'Scheherazade New', serif;
}

.promos-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 24px;
}

.promo-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  color: var(--text); font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s; box-shadow: var(--shadow-card);
}
.promo-arrow:hover {
  background: var(--yellow); color: #000;
  border-color: var(--yellow); transform: scale(1.1);
}

@media (max-width: 1024px) {
  .promos-slider-wrap { padding: 0 16px; }
  .promos-track {
    gap: 16px;
    justify-content: flex-start;
  }
  /* If promos-centered is present (≤ 3 promos), don't center on mobile/tablet */
  .promos-track.promos-centered { justify-content: flex-start !important; }
  .promo-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
.promos-centered { justify-content: center; }
.promo-link-wrap { text-align: center; padding: 10px 16px 16px; }
.promo-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #b8923a, #d4a84b);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  padding: 10px 24px;
  box-shadow: 0 4px 14px rgba(184,146,58,.35);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .02em;
}
.promo-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,146,58,.5);
  color: #fff;
}
.promo-arrow:disabled { opacity: 0.3; cursor: default; transform: none; }

.promo-dots { display: flex; gap: 8px; align-items: center; }
.promo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--surface-3, #ebe7d8); border: none;
  cursor: pointer; transition: all 0.22s;
}
.promo-dot.active { background: var(--yellow); transform: scale(1.35); }


/* ======= LIGHTBOX ======= */
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
#lightbox.open { display: flex !important; }

/* ============================================================
   RESPONSIVE – TABLET (769px – 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Sections */
  .section          { padding: 72px 40px; }
  .hajj-section     { padding: 72px 40px; }
  .occasions-section{ padding: 72px 40px 88px; }
  .contact-section  { margin: 48px 40px; }

  /* Navbar */
  .nav-container    { padding: 0 20px; gap: 20px; }
  .nav-link         { font-size: 0.76rem; padding: 8px 10px; }

  /* Hero */
  .hero-inner       { padding: 100px 40px 80px; }
  .hero-stats       { flex-wrap: wrap; gap: 12px; padding: 18px 24px; }
  .stat-item        { padding: 0 16px; }

  /* Omra */
  .omra-grid        { grid-template-columns: repeat(3, 1fr); }

  /* Occasions */
  .occasions-grid   { grid-template-columns: repeat(3, 1fr); }

  /* Hajj */
  .hajj-grid        { grid-template-columns: repeat(2, 1fr); }

  /* Why */
  .why-section      { padding: 80px 40px; }
  .why-features     { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid     { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-top       { padding: 60px 40px 40px; }
  .footer-bottom    { padding: 20px 40px; }
  .footer-links-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  /* Hero */
  .hero-inner       { padding: 80px 16px 60px; }
  .hero-badge       { font-size: 0.68rem; padding: 6px 14px; }
  .hero-actions     { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn,
  .hero-actions .btn-outline-white { width: 100%; justify-content: center; }
  .hero-stats       { padding: 14px 12px; gap: 8px; }
  .stat-item        { padding: 0 8px; }
  .stat-num         { font-size: 1.8rem; }
  .stat-label       { font-size: 0.62rem; }

  /* Sections */
  .section          { padding: 48px 16px; }
  .section-header   { margin-bottom: 40px; }
  .hajj-section     { padding: 48px 16px; }
  .occasions-section{ padding: 48px 16px 64px; }
  .contact-section  { margin: 32px 16px; }

  /* Grids → single column */
  .omra-grid        { grid-template-columns: 1fr 1fr; gap: 12px; }
  .occasions-grid   { grid-template-columns: 1fr; gap: 14px; }
  .hajj-grid        { grid-template-columns: 1fr; }
  .why-section      { padding: 72px 24px; }
  .why-features     { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }

  /* Omra card */
  .omra-card-visual { min-height: 180px; }
  .omra-card-month  { font-size: 1.1rem; }
  .omra-price-num   { font-size: 1.15rem; }

  /* Occasion card */
  .occasion-card    { min-height: 200px; }

  /* Hajj card */
  .hajj-card-img    { height: 160px; }

  /* FAQ */
  .faq-question     { font-size: 0.9rem; padding: 16px 18px; }

  /* Footer */
  .footer-top       { padding: 48px 16px 32px; }
  .footer-links-grid{ grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom    { padding: 16px; }

  /* Contact form */
  .form-row         { grid-template-columns: 1fr; }
}

/* ============================================================
   UI ENHANCEMENTS
   ============================================================ */

/* ── Announcement bar – animated gradient ── */
.announcement-bar {
  background: linear-gradient(90deg, #f5c200 0%, #fdd000 40%, #ffbe00 70%, #fdd000 100%);
  background-size: 200% auto;
  animation: annGradient 5s linear infinite;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
@keyframes annGradient {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.announcement-bar a { font-weight: 800; text-decoration: none; border-bottom: 1.5px solid rgba(0,0,0,0.35); }

/* ── Navbar – glassmorphism + underline active state ── */
.navbar {
  background: rgba(245, 241, 228, 0.88);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}
.navbar.scrolled {
  background: rgba(245, 241, 228, 0.97);
  box-shadow: 0 2px 32px rgba(0,0,0,0.07), 0 1px 0 rgba(227,167,101,0.18);
}
.nav-link {
  position: relative;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--yellow));
  border-radius: 2px;
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1),
              right 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover::after,
.nav-link.active::after { left: 12%; right: 12%; }

/* ── Buttons – shimmer + gradient ── */
.btn-gold {
  background: linear-gradient(135deg, #fdd000 0%, #f5b800 100%);
  box-shadow: 0 4px 20px rgba(253,208,0,0.38), inset 0 1px 0 rgba(255,255,255,0.28);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-gold:hover::before { left: 150%; }
.btn-gold:hover {
  background: linear-gradient(135deg, #ffe034 0%, #fdd000 100%);
  box-shadow: 0 8px 36px rgba(253,208,0,0.52), inset 0 1px 0 rgba(255,255,255,0.35);
}

/* ── Section badges – gradient fill ── */
.section-badge {
  background: linear-gradient(135deg, rgba(227,167,101,0.18) 0%, rgba(253,208,0,0.14) 100%);
  border: 1px solid rgba(227,167,101,0.45);
  box-shadow: 0 2px 12px rgba(227,167,101,0.1);
}

/* ── Section title – decorative underline ── */
.section-header .section-title::after {
  content: '';
  display: block;
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--yellow));
  border-radius: 3px;
  margin: 14px auto 0;
}
.why-content .section-title::after,
.contact-content .section-title::after {
  margin: 14px 0 0;
}

/* ── Omra + Occasion cards – larger radius ── */
.omra-card-visual { border-radius: 20px; }
.occasion-card    { border-radius: 20px; }

/* ── Hajj cards – depth + featured accent ── */
.hajj-card {
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s cubic-bezier(0.4,0,0.2,1),
              border-color 0.35s ease;
}
.hajj-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(227,167,101,0.18), 0 8px 24px rgba(0,0,0,0.07);
}
.hajj-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--yellow), var(--gold));
  border-radius: 18px 18px 0 0;
  z-index: 1;
}

/* ── Why features – icon container ── */
.why-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(253,208,0,0.15);
  border: 1px solid rgba(227,167,101,0.4);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.why-feature:hover .why-icon {
  background: rgba(253,208,0,0.25);
}

/* ── Stats cards – lift on hover ── */
.stats-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(227,167,101,0.18);
  border-color: var(--border-strong);
}

/* ── Testimonials – decorative quote ── */
.testimonial-card {
  position: relative; overflow: hidden;
  border-radius: 16px;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: -8px; right: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; line-height: 1;
  color: rgba(227,167,101,0.14);
  font-style: italic;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.testimonial-stars,
.testimonial-text,
.testimonial-author { position: relative; z-index: 1; }

/* ── FAQ – improved typography + radius ── */
.faq-item { border-radius: 14px; }
.faq-question {
  font-family: 'Amiri', 'Scheherazade New', serif;
  font-size: 1.05rem; line-height: 1.6;
}

/* ── Contact form inputs – cleaner look ── */
.form-group input,
.form-group select,
.form-group textarea {
  background: #fdfbf5;
  border: 1.5px solid var(--border);
  border-radius: 10px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(227,167,101,0.1);
  background: #ffffff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bdb5a2; }

/* ── Contact section – top accent ── */
.contact-section { position: relative; }
.contact-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 5%; right: 5%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--yellow), var(--gold), transparent);
  border-radius: 3px;
  z-index: 1;
}

/* ── Footer – gradient top separator ── */
.footer::before {
  content: '';
  display: block; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--yellow) 50%, var(--gold-dark) 80%, transparent 100%);
}

/* ── Hero badge – subtle glow pulse ── */
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253,208,0,0.28); }
  50%       { box-shadow: 0 0 0 10px rgba(253,208,0,0); }
}
.hero-badge { animation: fadeInUp 0.8s ease both, badgePulse 3s ease-in-out 1.5s infinite; }

/* ── Scroll hint – refined ── */
.scroll-hint { letter-spacing: 0.2em; font-size: 0.68rem; }

/* ── Smooth card reveal stagger ── */
.omra-card-visual:nth-child(2) { transition-delay: 0.05s; }
.omra-card-visual:nth-child(3) { transition-delay: 0.10s; }
.omra-card-visual:nth-child(4) { transition-delay: 0.15s; }
.omra-card-visual:nth-child(5) { transition-delay: 0.20s; }
.hajj-card:nth-child(2) { transition-delay: 0.08s; }
.hajj-card:nth-child(3) { transition-delay: 0.16s; }
.hajj-card:nth-child(4) { transition-delay: 0.24s; }
.testimonial-card:nth-child(2) { transition-delay: 0.08s; }
.testimonial-card:nth-child(3) { transition-delay: 0.16s; }
