/* ============================================================
   DIVERSIA TRAVEL — Design System
   Palette extracted from brand logo: metallic gold on warm ivory
   ============================================================ */

:root {
  /* Brand tokens — from logo */
  --gold-700: #8a6414;        /* deep bronze gold (logo shadow tones) */
  --gold-600: #a87d1a;
  --gold-500: #c39a2e;        /* primary logo gold */
  --gold-400: #d4b258;
  --gold-300: #e6cf8b;        /* highlight gold */
  --gold-100: #f3e8c9;

  --ivory-50:  #fdfbf6;       /* logo background */
  --ivory-100: #faf6ec;
  --ivory-200: #f4ecda;
  --ivory-300: #eadfc4;

  --ink-900: #2b2113;         /* near-black warm brown (logo "TRAVEL") */
  --ink-700: #4a3b21;
  --ink-500: #6f5f42;
  --ink-300: #a2946f;

  --white: #ffffff;
  --green-wa: #1faa53;        /* WhatsApp */
  --green-wa-dark: #128c43;

  /* Semantic */
  --bg: var(--ivory-50);
  --bg-alt: var(--ivory-100);
  --surface: var(--white);
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --primary: var(--gold-600);
  --primary-strong: var(--gold-700);
  --accent: var(--gold-500);
  --border: #e8dfc8;

  /* Type */
  --font-display: "Marcellus", "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-arabic: "Amiri", "Noto Naskh Arabic", serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(74, 59, 33, 0.07);
  --shadow-md: 0 8px 30px rgba(74, 59, 33, 0.12);
  --shadow-gold: 0 6px 24px rgba(168, 125, 26, 0.25);

  --gradient-gold: linear-gradient(135deg, #8a6414 0%, #c39a2e 45%, #e6cf8b 70%, #a87d1a 100%);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink-900);
}

a { color: var(--primary-strong); text-decoration: none; }
a:hover { color: var(--gold-500); }

ul { list-style: none; }

/* Arabic / RTL */
[dir="rtl"] body,
[dir="rtl"] { font-family: var(--font-arabic), var(--font-body); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: var(--font-arabic); }
[dir="rtl"] .hero-title { line-height: 1.4; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

section { padding: 72px 0; }
@media (max-width: 640px) { section { padding: 52px 0; } }

/* Islamic 8-fold star pattern (low-opacity texture) */
.pattern-bg {
  position: relative;
}
.pattern-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23a87d1a' stroke-width='1' opacity='0.55'%3E%3Cpath d='M48 8 L59 37 L88 48 L59 59 L48 88 L37 59 L8 48 L37 37 Z'/%3E%3Cpath d='M48 20 L56 40 L76 48 L56 56 L48 76 L40 56 L20 48 L40 40 Z'/%3E%3Ccircle cx='48' cy='48' r='6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 96px 96px;
  opacity: 0.06;
  pointer-events: none;
}
.pattern-bg > * { position: relative; }

/* Section headers */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 12px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "◆"; font-size: 7px; color: var(--gold-400);
}
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); }

.divider-ornament {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--gold-400); margin: 0 auto;
}
.divider-ornament::before, .divider-ornament::after {
  content: ""; height: 1px; width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.divider-ornament::after { background: linear-gradient(90deg, var(--gold-400), transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(168,125,26,0.35); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--primary-strong);
  border: 1.5px solid var(--gold-500);
}
.btn-outline:hover { background: var(--gold-100); color: var(--primary-strong); }
.btn-whatsapp {
  background: var(--green-wa); color: var(--white);
}
.btn-whatsapp:hover { background: var(--green-wa-dark); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink-900); }
.btn-light:hover { background: var(--ivory-200); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Top info strip (Hijri · Makkah/Madinah time & weather) ---------- */
.top-strip {
  background: var(--ink-900);
  color: var(--gold-100);
  font-size: 12px;
}
.top-strip-inner {
  display: flex; align-items: center; gap: 20px;
  height: 32px; overflow: hidden; white-space: nowrap;
}
.ts-social { display: inline-flex; align-items: center; gap: 4px; }
.ts-social a {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-300); transition: color 0.2s, background 0.2s;
}
.ts-social a:hover { color: var(--white); background: rgba(230,207,139,0.18); }
.ts-social svg { width: 13px; height: 13px; }
.ts-item { display: inline-flex; align-items: center; gap: 6px; color: rgba(243,232,201,0.85); }
.ts-item strong { color: var(--gold-300); font-weight: 700; }
.ts-item .ts-temp { color: rgba(243,232,201,0.65); }
.ts-sep { color: var(--gold-600); }
.ts-hijri { color: var(--gold-300); font-weight: 600; }
.ts-note { margin-inline-start: auto; color: rgba(243,232,201,0.75); }
.ts-note a { color: var(--gold-300); font-weight: 700; }
@media (max-width: 860px) { .ts-note { display: none; } }
@media (max-width: 700px) {
  .top-strip-inner {
    height: auto; min-height: 32px;
    flex-wrap: wrap; justify-content: center;
    padding: 5px 10px; gap: 3px 12px;
  }
  .ts-sep { display: none; }
}
@media (max-width: 420px) {
  .ts-hijri { flex-basis: 100%; justify-content: center; }
  .ts-item { font-size: 11.5px; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 251, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.site-header.scrolled {
  background: rgba(253, 251, 246, 0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gold-300);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.brand-mark img { width: 88%; height: 88%; object-fit: contain; }
.brand-text { line-height: 1.15; }
.brand-text .brand-name {
  font-family: var(--font-display); font-size: 19px; letter-spacing: 0.04em;
  color: var(--ink-900); display: block;
}
.brand-text .brand-name span { color: var(--primary); }
.brand-text .brand-tag {
  font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-300);
}
/* Header: only "DIVERSIA TRAVEL" — tagline hidden (still shown in footer) */
.site-header .brand-tag { display: none; }

.main-nav ul { display: flex; gap: 2px; }
.main-nav a {
  display: block; padding: 8px 11px; border-radius: 8px;
  color: var(--ink-700); font-weight: 500; font-size: 13.5px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--primary-strong); background: var(--gold-100); }
.main-nav a.active { color: var(--primary-strong); }
.main-nav a.active::after {
  content: ""; display: block; height: 2px; margin-top: 1px;
  background: var(--gradient-gold); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch button.lang-current {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 14px;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  color: var(--ink-700); cursor: pointer;
}
.lang-switch button.lang-current:hover { border-color: var(--gold-400); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow-md);
  min-width: 150px; padding: 6px; display: none; z-index: 50;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block; width: 100%; text-align: start;
  padding: 9px 12px; border: none; background: none; border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; color: var(--ink-700);
  cursor: pointer;
}
.lang-menu button:hover { background: var(--ivory-100); }
.lang-menu button.active { color: var(--primary-strong); font-weight: 700; background: var(--gold-100); }

/* Currency toggle */
.currency-toggle {
  display: inline-flex; border: 1px solid var(--border); border-radius: 999px;
  overflow: hidden; background: var(--white);
}
.currency-toggle button {
  border: none; background: none; padding: 8px 12px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  color: var(--ink-300); cursor: pointer;
}
.currency-toggle button.active { background: var(--gradient-gold); color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink-900);
  border-radius: 2px; transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 74px; left: 0; right: 0;
    background: var(--ivory-50); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul { flex-direction: column; padding: 14px 20px 22px; gap: 2px; }
  .main-nav a { padding: 12px 10px; font-size: 16px; }
  .header-actions .btn-header-cta { display: none; }
}
@media (max-width: 480px) {
  .brand-text .brand-tag { display: none; }
  .currency-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding: 130px 0 90px;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(30,22,8,0.6) 0%, rgba(30,22,8,0.35) 45%, rgba(30,22,8,0.78) 100%),
    url("../images/hero-kaaba.jpg") center 30% / cover no-repeat,
    linear-gradient(180deg, #3b2c12 0%, #8a6414 38%, #d4a94e 62%, #6b4e17 100%);
}
/* Kaaba silhouette (decorative fallback — hidden now that a real hero photo is set) */
.hero-bg::after {
  display: none;
  content: "";
  position: absolute; inset-inline: 0; bottom: 0; height: 34%;
  opacity: 0.85;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 340' preserveAspectRatio='xMidYMax meet'%3E%3Cg%3E%3Crect x='450' y='60' width='300' height='280' fill='%23140e05'/%3E%3Crect x='450' y='118' width='300' height='34' fill='%23c39a2e'/%3E%3Crect x='585' y='210' width='40' height='130' fill='%23271c0a'/%3E%3Cpath d='M0 340 L0 300 Q80 260 160 300 L160 340 Z' fill='%23201607'/%3E%3Cpath d='M1040 340 L1040 300 Q1120 260 1200 300 L1200 340 Z' fill='%23201607'/%3E%3Crect x='60' y='170' width='14' height='170' fill='%23201607'/%3E%3Cpath d='M53 170 L80 170 L67 130 Z' fill='%23201607'/%3E%3Crect x='1126' y='170' width='14' height='170' fill='%23201607'/%3E%3Cpath d='M1119 170 L1146 170 L1133 130 Z' fill='%23201607'/%3E%3Cpath d='M0 340 L1200 340 L1200 322 Q600 290 0 322 Z' fill='%23150e04'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%; background-position: center bottom;
  background-repeat: no-repeat;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(230,207,139,0.45);
  backdrop-filter: blur(6px);
  border-radius: 999px; padding: 7px 16px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--gold-100); margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.9rem);
  color: var(--white); margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-title em { font-style: normal; color: var(--gold-300); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.88);
  max-width: 540px; margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Hero slider ---------- */
.hero-slider { position: relative; min-height: 88vh; overflow: hidden; padding: 0; display: block; }
.hero-slider .slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 185px 0 90px;
  opacity: 0; visibility: hidden; z-index: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 1.2s ease, visibility 0.9s;
  background-size: cover; background-position: center 35%;
}
.hero-slider .slide.is-active {
  opacity: 1; visibility: visible; z-index: 1; transform: scale(1);
}
.slide-umrah {
  background-image: linear-gradient(180deg, rgba(30,22,8,0.62), rgba(30,22,8,0.4) 45%, rgba(30,22,8,0.75)), url("../images/madinah-sunset.jpg");
}
.slide-hajj {
  background-image: linear-gradient(180deg, rgba(30,22,8,0.6), rgba(30,22,8,0.38) 45%, rgba(30,22,8,0.78)), url("../images/hero-kaaba.jpg");
}
.slide-tours {
  background-image: linear-gradient(180deg, rgba(30,22,8,0.62), rgba(30,22,8,0.42) 45%, rgba(30,22,8,0.75)), url("../images/istanbul-ortakoy.jpg");
  background-position: center;
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(253,251,246,0.14); color: var(--white);
  border: 1px solid rgba(230,207,139,0.45);
  backdrop-filter: blur(6px);
  display: grid; place-items: center; cursor: pointer;
  transition: background 0.25s;
}
.slider-arrow:hover { background: rgba(168,125,26,0.65); }
.slider-arrow.prev { inset-inline-start: 18px; }
.slider-arrow.next { inset-inline-end: 18px; }
.slider-arrow svg { width: 20px; height: 20px; }
.slider-dots {
  position: absolute; bottom: 26px; left: 0; right: 0; z-index: 5;
  display: flex; justify-content: center; gap: 10px;
}
.slider-dots button {
  width: 34px; height: 5px; border-radius: 999px; border: none; cursor: pointer;
  background: rgba(253,251,246,0.35); transition: background 0.3s;
}
.slider-dots button.active { background: var(--gold-300); }
.slide .hero-badge, .slide .hero-title, .slide .hero-sub, .slide .hero-ctas {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide.is-active .hero-badge { opacity: 1; transform: none; transition-delay: 0.25s; }
.slide.is-active .hero-title { opacity: 1; transform: none; transition-delay: 0.4s; }
.slide.is-active .hero-sub { opacity: 1; transform: none; transition-delay: 0.55s; }
.slide.is-active .hero-ctas { opacity: 1; transform: none; transition-delay: 0.7s; }
@media (max-width: 640px) {
  .hero-slider { min-height: 92vh; }
  .slider-arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider .slide, .slide .hero-badge, .slide .hero-title, .slide .hero-sub, .slide .hero-ctas { transition: none; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--ink-900);
  color: var(--gold-100);
  padding: 26px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-item .t-icon { color: var(--gold-400); margin-bottom: 4px; }
.trust-item .t-icon svg { width: 26px; height: 26px; }
.trust-item strong {
  font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-300);
}
.trust-item span { font-size: 12.5px; color: rgba(243,232,201,0.75); letter-spacing: 0.04em; }
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
}

/* ---------- Cards & arches ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

.pkg-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Mihrab arch image frame */
.arch-frame {
  margin: 22px 22px 0;
  border-radius: 160px 160px 14px 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  position: relative;
  border: 1.5px solid var(--gold-300);
  box-shadow: inset 0 0 0 5px var(--ivory-50);
}
.arch-frame .ph { position: absolute; inset: 5px; border-radius: 150px 150px 10px 10px; }
.arch-frame img.ph { width: calc(100% - 10px); height: calc(100% - 10px); object-fit: cover; }

/* Photographic placeholder scenes (SVG + gradient, no external assets) */
.ph {
  background-size: cover; background-position: center bottom;
  background-repeat: no-repeat;
}
.ph-kaaba {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMax slice'%3E%3Crect x='130' y='95' width='140' height='205' fill='%23161006'/%3E%3Crect x='130' y='122' width='140' height='18' fill='%23c39a2e'/%3E%3Crect x='192' y='200' width='24' height='100' fill='%23241a0a'/%3E%3Cpath d='M0 300 L400 300 L400 286 Q200 268 0 286 Z' fill='%23191204'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 50% 30%, rgba(230,207,139,0.5), transparent 60%),
    linear-gradient(180deg, #4a3410 0%, #a87d1a 55%, #e0b95d 100%);
}
.ph-madinah {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMax slice'%3E%3Cpath d='M200 118 Q158 132 158 178 L242 178 Q242 132 200 118 Z' fill='%23164a2e'/%3E%3Crect x='150' y='178' width='100' height='122' fill='%231c1408'/%3E%3Crect x='90' y='120' width='12' height='180' fill='%231c1408'/%3E%3Cpath d='M84 120 L108 120 L96 82 Z' fill='%231c1408'/%3E%3Crect x='298' y='120' width='12' height='180' fill='%231c1408'/%3E%3Cpath d='M292 120 L316 120 L304 82 Z' fill='%231c1408'/%3E%3Cpath d='M0 300 L400 300 L400 288 Q200 272 0 288 Z' fill='%23150f04'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #35270e 0%, #8a6414 50%, #dcc07a 100%);
}
.ph-tours {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMax slice'%3E%3Cpath d='M120 150 Q95 160 95 190 L145 190 Q145 160 120 150 Z' fill='%23201607'/%3E%3Crect x='100' y='190' width='40' height='110' fill='%23201607'/%3E%3Cpath d='M250 105 Q210 122 210 170 L290 170 Q290 122 250 105 Z' fill='%23281d0b'/%3E%3Crect x='218' y='170' width='64' height='130' fill='%23281d0b'/%3E%3Crect x='320' y='130' width='10' height='170' fill='%23201607'/%3E%3Cpath d='M315 130 L335 130 L325 96 Z' fill='%23201607'/%3E%3Cpath d='M0 300 L400 300 L400 287 Q200 270 0 287 Z' fill='%23170f05'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #52380f 0%, #b98f2f 55%, #ecd18e 100%);
}
.ph-nigeria {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMax slice'%3E%3Cpath d='M110 300 Q100 190 170 170 Q250 150 268 230 Q278 300 278 300 Z' fill='%23241a0b'/%3E%3Cpath d='M0 300 L400 300 L400 288 Q200 274 0 288 Z' fill='%23191104'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #3f2d0e 0%, #9c7a24 55%, #e2c176 100%);
}
.ph-istanbul {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMax slice'%3E%3Cpath d='M200 100 Q150 118 150 172 L250 172 Q250 118 200 100 Z' fill='%231b1307'/%3E%3Crect x='140' y='172' width='120' height='128' fill='%231b1307'/%3E%3Crect x='80' y='110' width='10' height='190' fill='%23221808'/%3E%3Cpath d='M75 110 L95 110 L85 70 Z' fill='%23221808'/%3E%3Crect x='310' y='110' width='10' height='190' fill='%23221808'/%3E%3Cpath d='M305 110 L325 110 L315 70 Z' fill='%23221808'/%3E%3Cpath d='M0 300 L400 300 L400 285 Q200 268 0 285 Z' fill='%23140d04'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #472f10 0%, #a87d1a 52%, #e8c87e 100%);
}
.ph-dubai {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMax slice'%3E%3Cpath d='M200 40 L188 300 L212 300 Z' fill='%231d1508'/%3E%3Crect x='120' y='170' width='36' height='130' fill='%23251b0b'/%3E%3Crect x='260' y='150' width='42' height='150' fill='%23251b0b'/%3E%3Cpath d='M0 300 L400 300 L400 287 Q200 272 0 287 Z' fill='%23170f05'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #543a12 0%, #c39a2e 58%, #f0d795 100%);
}
.ph-egypt {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMax slice'%3E%3Cpath d='M60 300 L180 130 L300 300 Z' fill='%23231908'/%3E%3Cpath d='M230 300 L320 190 L400 300 Z' fill='%232c200c'/%3E%3Cpath d='M0 300 L400 300 L400 290 Q200 278 0 290 Z' fill='%23191104'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #4d3510 0%, #b98f2f 55%, #eeD292 100%);
}
.ph-morocco {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMax slice'%3E%3Crect x='170' y='80' width='60' height='220' fill='%23201607'/%3E%3Cpath d='M165 80 L235 80 L228 58 L172 58 Z' fill='%23201607'/%3E%3Cpath d='M120 300 L120 220 Q140 195 160 220 L160 300 Z' fill='%23281d0b'/%3E%3Cpath d='M240 300 L240 220 Q260 195 280 220 L280 300 Z' fill='%23281d0b'/%3E%3Cpath d='M0 300 L400 300 L400 288 Q200 274 0 288 Z' fill='%23170f05'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #45300f 0%, #a87d1a 55%, #e6c878 100%);
}

.pkg-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg-body h3 { font-size: 1.35rem; }
.pkg-body p { color: var(--text-muted); font-size: 14.5px; flex: 1; }
.pkg-meta { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary-strong); }
.price-from { font-size: 12px; color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.08em; }
.pkg-ctas { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.pkg-ctas .btn { padding: 10px 18px; font-size: 13.5px; flex: 1; }

.chip {
  display: inline-block; background: var(--gold-100); color: var(--gold-700);
  border-radius: 999px; padding: 4px 12px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; width: fit-content;
}
.chip-green { background: #e3f5e9; color: #14713a; }

/* ---------- Feature list ("Why choose us") ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 58px; height: 58px; margin: 0 auto 16px;
  border-radius: 50% 50% 8px 8px;
  background: var(--gold-100); color: var(--primary-strong);
  display: grid; place-items: center;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--text-muted); }

/* ---------- Why tiles (service grid) ---------- */
.why-tiles {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
@media (max-width: 1000px) { .why-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .why-tiles { grid-template-columns: repeat(2, 1fr); } }
.why-tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 12px 18px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.why-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.why-tile .wt-icon { font-size: 30px; line-height: 1; display: block; margin-bottom: 10px; }
.why-tile .wt-label { font-size: 13.5px; font-weight: 600; color: var(--ink-700); line-height: 1.35; }
.benefit-bars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
@media (max-width: 860px) { .benefit-bars { grid-template-columns: 1fr; } }
.benefit-bar {
  border-inline-start: 3px solid var(--gold-500);
  background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px; font-size: 14px; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
  display: flex; gap: 10px; align-items: flex-start;
}
.benefit-bar .bb-icon { font-size: 20px; line-height: 1.2; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); position: relative;
}
.testimonial::before {
  content: "\201C"; font-family: var(--font-display);
  font-size: 64px; line-height: 1; color: var(--gold-300);
  position: absolute; top: 14px; inset-inline-start: 20px;
}
.testimonial p { margin-top: 26px; font-size: 15px; color: var(--ink-700); font-style: italic; }
.testimonial .t-author { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-gold); color: var(--white);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
  font-family: var(--font-body);
}
.t-author strong { display: block; font-size: 14.5px; }
.t-author span { font-size: 12.5px; color: var(--text-muted); }
.stars { color: var(--gold-500); letter-spacing: 2px; font-size: 13px; margin-top: 10px; }

/* ---------- Hijri / prayer widget ---------- */
.hijri-strip {
  background: linear-gradient(135deg, var(--ink-900), #40310f);
  color: var(--gold-100); border-radius: var(--radius-lg);
  padding: 30px 34px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.hijri-strip .hijri-date { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-300); }
.hijri-strip .greg-date { font-size: 13.5px; color: rgba(243,232,201,0.7); }
.prayer-times { display: flex; gap: 26px; flex-wrap: wrap; }
.prayer-times div { text-align: center; }
.prayer-times span { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(243,232,201,0.65); }
.prayer-times strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); font-weight: 400; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-gold); color: var(--white);
  text-align: center; padding: 68px 0;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn-light { box-shadow: 0 6px 20px rgba(43,33,19,0.25); }

/* ---------- Newsletter ---------- */
.newsletter-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center;
}
@media (max-width: 800px) { .newsletter-box { grid-template-columns: 1fr; } }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 200px;
  padding: 13px 18px; border: 1px solid var(--border); border-radius: 999px;
  font-family: var(--font-body); font-size: 14.5px; background: var(--ivory-50);
}
.newsletter-form input:focus { outline: 2px solid var(--gold-400); border-color: transparent; }

/* ---------- Tables (package comparison) ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: var(--surface); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 14.5px; }
.compare-table th, .compare-table td { padding: 15px 18px; text-align: start; border-bottom: 1px solid var(--border); }
.compare-table thead th {
  background: var(--ink-900); color: var(--gold-100);
  font-family: var(--font-display); font-weight: 400; font-size: 1.02rem;
  letter-spacing: 0.03em;
}
.compare-table thead th.tier-featured { background: var(--gold-600); color: var(--white); }
.compare-table tbody tr:nth-child(even) { background: var(--ivory-100); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--ink-700); white-space: nowrap; }
.compare-table .price { font-size: 1.15rem; }
.compare-table .yes { color: #14713a; font-weight: 700; }
.compare-table .no { color: #b3541e; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-inline-start: 34px; }
.timeline::before {
  content: ""; position: absolute; inset-block: 8px; inset-inline-start: 11px;
  width: 2px; background: linear-gradient(180deg, var(--gold-400), var(--gold-100));
}
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; inset-inline-start: -30px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gradient-gold); border: 3px solid var(--ivory-50);
  box-shadow: 0 0 0 2px var(--gold-400);
}
.timeline-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline-item h3 .step-no { color: var(--gold-500); margin-inline-end: 8px; font-size: 0.95rem; }
.timeline-item p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 15.5px; font-weight: 600; color: var(--ink-900);
  text-align: start;
}
.faq-q .faq-icon {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-100); color: var(--primary-strong);
  display: grid; place-items: center; font-size: 16px; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gradient-gold); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--text-muted); font-size: 14.5px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink-700); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: 14.5px; background: var(--ivory-50);
  color: var(--text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--gold-400); border-color: transparent;
}
.form-note { font-size: 12.5px; color: var(--ink-300); }
.form-success {
  display: none; background: #e3f5e9; border: 1px solid #b5e2c4; color: #14713a;
  padding: 14px 18px; border-radius: 10px; font-size: 14.5px; margin-top: 14px;
}
.form-success.show { display: block; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.contact-line { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px dashed var(--border); align-items: flex-start; }
.contact-line:last-child { border-bottom: none; }
.contact-line .c-icon {
  flex: none; width: 40px; height: 40px; border-radius: 50% 50% 8px 8px;
  background: var(--gold-100); color: var(--primary-strong); display: grid; place-items: center;
}
.contact-line .c-icon svg { width: 19px; height: 19px; }
.contact-line strong { display: block; font-size: 14.5px; }
.contact-line span, .contact-line a { font-size: 14px; color: var(--text-muted); }
.map-placeholder {
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 H60 M30 0 V60' stroke='%23d4b258' stroke-width='0.6' opacity='0.4'/%3E%3C/svg%3E"),
    var(--ivory-200);
  min-height: 260px; display: grid; place-items: center;
  color: var(--ink-500); font-size: 14px; text-align: center; padding: 20px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 185px 0 70px;
  background:
    linear-gradient(180deg, rgba(30,22,8,0.72), rgba(30,22,8,0.55)),
    linear-gradient(160deg, #3b2c12 0%, #8a6414 55%, #b98f2f 100%);
  color: var(--white); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23e6cf8b' stroke-width='1'%3E%3Cpath d='M48 8 L59 37 L88 48 L59 59 L48 88 L37 59 L8 48 L37 37 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 96px; opacity: 0.08; pointer-events: none;
}
/* Inner-page hero photo variants */
.page-hero--hajj, .page-hero--umrah, .page-hero--tours, .page-hero--about, .page-hero--contact {
  background-size: cover; background-position: center 35%; background-repeat: no-repeat;
}
.page-hero--hajj {
  background-image: linear-gradient(180deg, rgba(30,22,8,0.74), rgba(30,22,8,0.58)), url("../images/kaaba-haram.jpg");
}
.page-hero--umrah {
  background-image: linear-gradient(180deg, rgba(30,22,8,0.66), rgba(30,22,8,0.52)), url("../images/madinah-sunset.jpg");
}
.page-hero--tours {
  background-image: linear-gradient(180deg, rgba(30,22,8,0.68), rgba(30,22,8,0.54)), url("../images/jerusalem-aqsa.jpg");
  background-position: center 42%;
}
.page-hero--about {
  background-image: linear-gradient(180deg, rgba(30,22,8,0.7), rgba(30,22,8,0.55)), url("../images/madinah-nabawi.jpg");
}
.page-hero--contact {
  background-image: linear-gradient(180deg, rgba(30,22,8,0.72), rgba(30,22,8,0.58)), url("../images/madinah-nabawi.jpg");
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto; position: relative; }
.breadcrumb { position: relative; font-size: 13px; color: var(--gold-300); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }

/* ---------- Team / About ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-photo {
  width: 130px; height: 150px; margin: 0 auto 14px;
  border-radius: 70px 70px 12px 12px;
  background: var(--gradient-gold);
  display: grid; place-items: center;
  color: var(--white); font-family: var(--font-display); font-size: 2rem;
  border: 4px solid var(--white); box-shadow: var(--shadow-md);
}
.team-card h3 { font-size: 1.05rem; }
.team-card span { font-size: 13px; color: var(--text-muted); }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 760px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
.stat-band .stat strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--primary-strong); display: block; }
.stat-band .stat span { font-size: 13.5px; color: var(--text-muted); }

/* ---------- References / partners strip ---------- */
.refs-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 46px 0 50px;
}
.refs-title {
  text-align: center;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.refs-title::before, .refs-title::after {
  content: ""; height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.refs-title::after { background: linear-gradient(90deg, var(--gold-400), transparent); }
.refs-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 22px 42px;
}
.ref-logo {
  height: 48px; display: flex; align-items: center;
}
.ref-logo img {
  max-height: 44px; width: auto; max-width: 132px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.ref-logo:hover img { filter: none; transform: scale(1.06); }
@media (max-width: 640px) {
  .refs-grid { gap: 16px 26px; }
  .ref-logo { height: 38px; }
  .ref-logo img { max-height: 34px; max-width: 104px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900); color: rgba(243,232,201,0.8);
  padding: 64px 0 0; margin-top: 0;
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
  padding-bottom: 44px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--gold-300); font-size: 1.05rem; margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.site-footer ul li { margin-bottom: 9px; }
.site-footer a { color: rgba(243,232,201,0.8); }
.site-footer a:hover { color: var(--gold-300); }
.footer-brand p { margin-top: 12px; max-width: 300px; font-size: 13.5px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(230,207,139,0.35);
  display: grid; place-items: center; color: var(--gold-300);
  transition: all 0.25s;
}
.footer-social a:hover { background: var(--gold-600); border-color: var(--gold-600); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }
.payment-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.payment-row span {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(230,207,139,0.25);
  border-radius: 6px; padding: 5px 11px; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--gold-100);
}
.footer-bottom {
  border-top: 1px solid rgba(230,207,139,0.18);
  padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(243,232,201,0.55);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-wa); color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(18, 140, 67, 0.45);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.08); color: var(--white); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float .wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--green-wa);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float .wa-pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Departure cards (Umrah — date-based packages) ---------- */
.departure-list { display: flex; flex-direction: column; gap: 26px; }
.departure-card {
  display: grid; grid-template-columns: 320px 1fr 270px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.departure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.departure-card.featured { border: 1.5px solid var(--gold-400); }
.departure-media { position: relative; min-height: 250px; }
.departure-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.date-badge {
  position: absolute; top: 14px; inset-inline-start: 14px; z-index: 1;
  background: var(--ink-900); color: var(--gold-300);
  padding: 7px 14px; border-radius: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.date-badge.gold { background: var(--gradient-gold); color: var(--white); }
.departure-body { padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; }
.departure-body h3 { font-size: 1.35rem; }
.departure-body > p { color: var(--text-muted); font-size: 14px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; color: var(--ink-700); }
.meta-row span { display: inline-flex; align-items: center; gap: 6px; }
.meta-row svg { width: 15px; height: 15px; color: var(--gold-600); flex: none; }
.hotel-lines { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; }
.hotel-lines .hotel-line {
  display: flex; align-items: center; gap: 8px;
  color: var(--ink-700);
}
.hotel-line .stars-sm { color: var(--gold-500); font-size: 11px; letter-spacing: 1px; }
.hotel-line .city { font-weight: 700; min-width: 72px; }
.hotel-line .dist { color: var(--ink-300); font-size: 12px; }
.departure-prices {
  background: var(--ivory-100);
  border-inline-start: 1px solid var(--border);
  padding: 24px 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.departure-prices .pp-note {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-300); margin-bottom: 6px;
}
.room-price {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px dashed var(--border);
}
.room-price:last-of-type { border-bottom: none; }
.room-price span { font-size: 13.5px; color: var(--ink-700); }
.room-price strong { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; color: var(--primary-strong); }
.departure-prices .btn { margin-top: 12px; padding: 11px 18px; font-size: 13.5px; }
@media (max-width: 1020px) {
  .departure-card { grid-template-columns: 1fr; }
  .departure-media { min-height: 210px; }
  .departure-prices { border-inline-start: none; border-top: 1px solid var(--border); }
}

/* ---------- Compact price cards (tiered packages) ---------- */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .price-cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 26px 24px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 1.5px solid var(--gold-400); position: relative; }
.price-card.featured::before {
  content: "★ MOST COMFORT";
  position: absolute; top: -11px; inset-inline-start: 22px;
  background: var(--gradient-gold); color: var(--white);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 999px;
}
.pc-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: -26px -26px 0; }
.pc-photos figure { margin: 0; position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.pc-photos img { width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block; transition: transform 0.4s ease; }
.price-card:hover .pc-photos img { transform: scale(1.05); }
.pc-photos figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(20,14,4,0.85));
  color: var(--gold-100); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 10px 7px; text-align: center;
}
.pc-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pc-head h3 { font-size: 1.2rem; }
.pc-nights {
  background: var(--ink-900); color: var(--gold-300);
  border-radius: 999px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; white-space: nowrap; letter-spacing: 0.04em;
}
.pc-from {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.pc-from .pf-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-300); }
.pc-from strong {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.9rem; color: var(--primary-strong); line-height: 1;
}
.hotel-panel {
  background: var(--ivory-100); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.hotel-row { display: flex; align-items: center; gap: 10px; min-height: 26px; }
.hotel-row .city {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold-700); min-width: 64px;
}
.hotel-row .hotel-logo { height: 20px; width: auto; max-width: 84px; object-fit: contain; flex: none; }
.hotel-row .hname { font-size: 13px; color: var(--ink-700); }
.hotel-row .hname small { color: var(--ink-300); }
.price-card .room-price { padding: 8px 0; }
.price-card .room-price span em { font-style: normal; font-size: 11.5px; color: var(--ink-300); }
.price-card .btn { margin-top: 8px; }
.pc-group-title {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--ink-900);
  margin: 40px 0 20px;
}
.pc-group-title::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-400), transparent); }
.pc-group-title .chip { font-size: 12px; }

/* ---------- Hotel gallery ---------- */
.hotel-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 860px) { .hotel-gallery { grid-template-columns: 1fr; } }
.hotel-fig {
  margin: 0; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-margin-top: 130px;
}
.hotel-fig:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hotel-fig img { width: 100%; height: auto; display: block; }
.hotel-fig figcaption {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 14px 20px;
}
.hotel-fig figcaption strong { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; color: var(--ink-900); }
.hotel-fig figcaption .chip { flex: none; }
.hname a { color: inherit; text-decoration: underline; text-decoration-color: var(--gold-400); text-underline-offset: 3px; }
.hname a:hover { color: var(--primary-strong); }

/* ---------- Included / checklist columns ---------- */
.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 800px) { .check-cols { grid-template-columns: 1fr; } }
.check-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.check-card.gold-edge { border-top: 4px solid var(--gold-500); }
.check-card h3 { font-size: 1.2rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.check-card h3 svg { width: 22px; height: 22px; color: var(--gold-600); }
.check-card ul { display: flex; flex-direction: column; gap: 10px; }
.check-card li {
  position: relative; padding-inline-start: 30px;
  font-size: 14.5px; color: var(--ink-700);
}
.check-card li::before {
  content: "✓";
  position: absolute; inset-inline-start: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-700);
  font-size: 12px; font-weight: 700;
  display: grid; place-items: center;
}

/* ---------- Day-by-day itinerary ---------- */
.day-chip {
  flex: none; width: 54px; height: 30px; border-radius: 8px;
  background: var(--gradient-gold); color: var(--white);
  font-size: 12px; font-weight: 700;
  display: grid; place-items: center; letter-spacing: 0.04em;
}
.faq-item.itin .faq-q { gap: 14px; justify-content: flex-start; }
.faq-item.itin .faq-q .faq-icon { margin-inline-start: auto; }

/* ---------- Lead capture band ---------- */
.lead-band {
  background: linear-gradient(135deg, var(--ink-900), #40310f);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--gold-100);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.lead-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23e6cf8b' stroke-width='1'%3E%3Cpath d='M48 8 L59 37 L88 48 L59 59 L48 88 L37 59 L8 48 L37 37 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 96px; opacity: 0.07; pointer-events: none;
}
.lead-band > * { position: relative; }
.lead-band h2 { color: var(--gold-300); font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 10px; }
.lead-band p { font-size: 14px; color: rgba(243,232,201,0.8); }
.lead-band form { display: flex; flex-direction: column; gap: 12px; }
.lead-band input, .lead-band select {
  padding: 13px 16px; border-radius: 10px; border: 1px solid rgba(230,207,139,0.35);
  background: rgba(255,255,255,0.06); color: var(--white);
  font-family: var(--font-body); font-size: 14.5px;
}
.lead-band input::placeholder { color: rgba(243,232,201,0.5); }
.lead-band select { color: var(--gold-100); }
.lead-band select option { color: var(--ink-900); }
.lead-band input:focus, .lead-band select:focus { outline: 2px solid var(--gold-400); }
@media (max-width: 800px) { .lead-band { grid-template-columns: 1fr; padding: 34px 26px; } }

/* ---------- Utility ---------- */
.bg-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; }
.skip-link {
  position: absolute; top: -48px; left: 12px; z-index: 200;
  background: var(--ink-900); color: var(--white);
  padding: 10px 18px; border-radius: 8px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
