/* ============================================================
   PERFECT UMRAH & TRAVELS — Main Stylesheet
   Brand Colors: Navy Blue #0a2d6e, Royal Blue #1a56db, Gold #febf18
   ============================================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all 0.2s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* CSS Variables */
:root {
  --primary: #1248a8;
  --primary-dark: #0a2d6e;
  --primary-mid: #1a56db;
  --accent: #febf18;
  --accent-light: #fecf4a;
  --accent-dark: #e0a800;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(10,45,110,0.12);
  --shadow-lg: 0 12px 48px rgba(10,45,110,0.20);
  --radius: 12px;
  --radius-sm: 8px;
}

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  z-index: 1000;
  position: relative;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.top-bar a, .top-bar span { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 0.4rem; }
.top-bar a:hover { color: var(--accent); }
.top-bar .fa, .top-bar .fab { color: var(--accent); font-size: 0.75rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(18,72,168,0.98); backdrop-filter: blur(12px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 1rem; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
/* PNG logo image — white on transparent, sized for navbar */
.logo-img {
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
  /* PNG is white; brighten slightly for crisp rendering */
  filter: brightness(1) drop-shadow(0 1px 2px rgba(0,0,0,0.15));
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.logo:hover .logo-img { opacity: 0.88; }
/* Footer variant — slightly smaller */
.logo-img--footer {
  width: 130px;
  opacity: 0.92;
}
/* Legacy logo-icon / logo-svg-wrap kept for safety */
.logo-icon {
  width: 48px; height: 48px; overflow: visible; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; flex-shrink: 0;
}
.logo-svg-wrap {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0;
  width: 48px !important;
  height: 48px !important;
}
.logo-svg-wrap svg { display: block; }
.logo-icon img { width: 38px; height: 38px; object-fit: contain; filter: brightness(0) invert(1); }
.logo-text { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.logo-main { font-size: 1.35rem; font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.01em; }
.logo-sub { font-size: 0.62rem; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; flex-wrap: nowrap; }
.nav-links a { color: rgba(255,255,255,0.9); padding: 0.5rem 0.55rem; border-radius: 6px; font-size: 0.82rem; font-weight: 500; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: rgba(254,191,24,0.12); }
.nav-cta { background: var(--accent) !important; color: var(--primary-dark) !important; padding: 0.5rem 1.25rem !important; border-radius: 8px !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
.nav-toggle { display: none; color: var(--white); font-size: 1.3rem; padding: 0.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s ease; border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-gold { background: var(--accent); color: var(--primary-dark); }
.btn-gold:hover { background: var(--accent-light); color: var(--primary-dark); }
.btn-navy { background: var(--primary); color: var(--white); }
.btn-navy:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: var(--primary-dark); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.7); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: var(--primary); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/static/hero-kaaba.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,45,110,0.72) 0%, rgba(18,72,168,0.60) 50%, rgba(26,86,219,0.45) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 6rem 0; }
.hero-trust-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(254,191,24,0.15); border: 1px solid rgba(254,191,24,0.45);
  color: var(--accent); padding: 0.5rem 1.25rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem;
}
.gold-text { color: var(--accent); }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.3rem); color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 580px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.hero-stat { padding: 0 2rem; text-align: center; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll a { color: rgba(255,255,255,0.5); font-size: 1.5rem; animation: bounce 2s infinite; display: block; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--accent); padding: 1rem 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: var(--primary-dark); font-weight: 700; font-size: 0.9rem; padding: 0.25rem 1.5rem; }
.trust-item .fa { font-size: 1rem; }
.trust-sep { width: 1px; height: 24px; background: rgba(10,45,110,0.25); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-navy { background: var(--primary); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin: 0.5rem 0 1rem; color: var(--text); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.75); }
.section-eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: rgba(254,191,24,0.12); padding: 0.35rem 1rem; border-radius: 50px; border: 1px solid rgba(254,191,24,0.3); }
.section-eyebrow--gold { color: var(--accent); background: rgba(254,191,24,0.15); border-color: rgba(254,191,24,0.35); }

/* ============================================================
   PACKAGE CARDS — v3 Premium Design
   ============================================================ */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.packages-grid--wide { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }

/* Card shell */
.pkg-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(10,45,110,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10,45,110,0.16);
}
/* Featured card gets gold border + extra glow */
.pkg-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 24px rgba(254,191,24,0.20);
}
.pkg-card--featured:hover {
  box-shadow: 0 18px 52px rgba(254,191,24,0.28);
}

/* "Most Popular" ribbon — diagonal top-right */
.pkg-ribbon {
  position: absolute;
  top: 14px; right: -28px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 2.5rem;
  transform: rotate(35deg);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ── IMAGE HERO ── */
.pkg-img-link { display: block; text-decoration: none; }
.pkg-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.pkg-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-img { transform: scale(1.07); }
.pkg-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.0) 30%,
    rgba(10,45,110,0.55) 75%,
    rgba(10,45,110,0.85) 100%
  );
}
/* Price overlay on image */
.pkg-img-price {
  position: absolute;
  bottom: 14px; left: 16px;
  display: flex; align-items: baseline; gap: 4px;
}
.pkg-img-price-from {
  font-size: 0.72rem; color: rgba(255,255,255,0.8); font-weight: 500;
}
.pkg-img-price-val {
  font-size: 1.9rem; font-weight: 900; color: #fff;
  line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.pkg-img-price-pp {
  font-size: 0.72rem; color: rgba(255,255,255,0.75); font-weight: 500;
}
/* Badge on image top-left */
.pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--badge-bg, #16a34a);
  color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* ── CARD BODY ── */
.pkg-body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  flex: 1;
}

/* Title row */
.pkg-title-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem;
}
.pkg-name {
  font-size: 1.15rem; font-weight: 800; color: var(--primary); line-height: 1.25; margin: 0 0 0.2rem;
}
.pkg-duration {
  font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem;
}
.pkg-duration .fa-moon { color: var(--accent); }
.pkg-rating { display: flex; gap: 2px; flex-shrink: 0; }
.pkg-rating .fa-star { color: var(--accent); font-size: 0.65rem; }

/* Hotel proximity pills */
.pkg-hotels {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.pkg-hotel-pill {
  display: flex; align-items: flex-start; gap: 0.5rem;
  background: #f0f4ff;
  border: 1px solid rgba(18,72,168,0.12);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem; color: var(--text);
}
.pkg-hotel-pill .fa-mosque { color: var(--accent); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }

/* Features grid */
.pkg-features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.3rem 0.5rem; list-style: none;
  margin: 0; padding: 0;
}
.pkg-features-grid li {
  display: flex; align-items: flex-start; gap: 0.4rem;
  font-size: 0.8rem; color: var(--text); line-height: 1.4;
}
.pkg-features-grid .fa-circle-check { color: #16a34a; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }

/* Trust row */
.pkg-trust-row {
  display: flex; gap: 0; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}
.pkg-trust-row span {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
  padding: 0 0.7rem;
  border-right: 1px solid var(--border);
}
.pkg-trust-row span:first-child { padding-left: 0; }
.pkg-trust-row span:last-child { border-right: none; }
.pkg-trust-row .fa { color: var(--accent); font-size: 0.7rem; }

/* Urgency signal */
.pkg-urgency {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: #b45309; font-weight: 600;
}
.pkg-urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #f59e0b; flex-shrink: 0;
  animation: dotBlink 1.6s ease-in-out infinite;
}

/* ── WA CTA BLOCK ── */
.pkg-cta-block {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-top: auto;
}
.pkg-cta-wa {
  display: flex; align-items: center; gap: 0.85rem;
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.pkg-cta-wa:hover {
  background: #128C7E;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.pkg-cta-wa-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.pkg-cta-wa-text {
  flex: 1; display: flex; flex-direction: column; gap: 1px;
}
.pkg-cta-wa-text strong { font-size: 0.9rem; font-weight: 700; line-height: 1.2; }
.pkg-cta-wa-text small { font-size: 0.72rem; opacity: 0.85; font-weight: 400; }
.pkg-cta-arrow { font-size: 0.75rem; opacity: 0.7; flex-shrink: 0; }
/* Call link */
.pkg-cta-call {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem;
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.pkg-cta-call:hover {
  border-color: var(--primary); background: var(--primary); color: #fff;
}
.pkg-cta-call .fa-phone { font-size: 0.8rem; }

/* Keep old .package-card styles for any fallback markup */
.package-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; position: relative; transition: all 0.3s ease; display: flex; flex-direction: column;
}
.package-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.package-card--highlight { border: 2px solid var(--accent); box-shadow: var(--shadow); }
.package-popular-ribbon {
  background: var(--accent); color: var(--primary-dark); font-weight: 800; font-size: 0.75rem;
  text-align: center; padding: 0.4rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.package-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.package-header { padding: 1.5rem 1.5rem 1rem; }
.package-badge { display: inline-block; color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 0.75rem; text-transform: uppercase; }
.package-header h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.package-sub { color: var(--text-muted); font-size: 0.9rem; }
.package-price { padding: 1rem 1.5rem; background: #f0f4ff; border-top: 1px solid var(--border); display: flex; align-items: baseline; gap: 0.3rem; }
.price-from { font-size: 0.8rem; color: var(--text-muted); }
.price-amount { font-size: 2rem; font-weight: 800; color: var(--primary); }
.price-per { font-size: 0.8rem; color: var(--text-muted); }
.package-features { padding: 1.25rem 1.5rem; flex: 1; }
.package-features li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.9rem; color: var(--text); border-bottom: 1px solid #f1f2f4; }
.package-features li:last-child { border-bottom: none; }
.package-features .fa-check { color: #16a34a; flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }
.package-features .fa-mosque { color: var(--accent); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }
.package-actions { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid var(--border); }

/* ============================================================
   FLIGHTS EXCLUDED BANNER
   ============================================================ */
.flights-excl-banner {
  background: #fff7ed; border-bottom: 2px solid #fb923c;
}
.flights-excl-inner {
  display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0; flex-wrap: wrap;
}
.flights-excl-icon {
  width: 40px; height: 40px; background: #fb923c; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.flights-excl-inner > div {
  flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 0.15rem;
}
.flights-excl-inner > div strong { font-size: 0.9rem; color: #92400e; }
.flights-excl-inner > div span { font-size: 0.8rem; color: #78350f; }

/* ============================================================
   PACKAGE FILTER TABS + DURATION PILLS
   ============================================================ */
.pkg-filter-section {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; z-index: 90; box-shadow: 0 2px 12px rgba(10,45,110,0.06);
}
.pkg-filter-tabs {
  display: flex; gap: 0.35rem; padding: 0.85rem 0 0; flex-wrap: wrap;
}
.pkg-tab {
  padding: 0.55rem 1.1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
  border: 1.5px solid var(--border); background: #f9fafb; color: var(--text);
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 0.35rem;
  white-space: nowrap;
}
.pkg-tab:hover { border-color: var(--primary); color: var(--primary); background: #eef2ff; }
.pkg-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.pkg-duration-pills {
  display: flex; align-items: center; gap: 0.4rem; padding: 0.6rem 0 0.85rem; flex-wrap: wrap;
}
.pkg-dur-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.pkg-dur-pill {
  padding: 0.3rem 0.85rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  border: 1.5px solid var(--border); background: #f9fafb; color: var(--text);
  cursor: pointer; transition: all 0.2s;
}
.pkg-dur-pill:hover { border-color: var(--accent); color: #92400e; }
.pkg-dur-pill.active { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }

/* ============================================================
   CATEGORY HEADERS
   ============================================================ */
.pkg-cat-header {
  display: flex; align-items: flex-start; gap: 1.25rem; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.5rem 1.75rem; margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(10,45,110,0.05);
}
.pkg-cat-header > div { flex: 1; min-width: 200px; }
.pkg-cat-title { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; }
.pkg-cat-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.pkg-cat-price-tag {
  display: flex; align-items: baseline; gap: 0.2rem;
  font-size: 0.78rem; color: var(--text-muted); white-space: nowrap;
  background: #f0f4ff; border-radius: 10px; padding: 0.6rem 1rem;
}
.pkg-cat-price-tag strong { font-size: 1.6rem; font-weight: 900; color: var(--primary); }
.pkg-cat-price-tag small { font-size: 0.72rem; }

/* Category badge chips */
.pkg-cat-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 0.4rem 0.9rem; border-radius: 50px;
  white-space: nowrap; flex-shrink: 0;
}
.pkg-cat-badge--budget  { background: #f3f4f6; color: #374151; border: 1.5px solid #d1d5db; }
.pkg-cat-badge--economy { background: #f0fdf4; color: #166534; border: 1.5px solid #bbf7d0; }
.pkg-cat-badge--standard{ background: #fff7ed; color: #92400e; border: 1.5px solid #fed7aa; }
.pkg-cat-badge--luxury  { background: #faf5ff; color: #6b21a8; border: 1.5px solid #e9d5ff; }
.pkg-cat-badge--ultra   { background: #fefce8; color: #713f12; border: 1.5px solid #fde68a; }
.pkg-cat-badge--hajj    { background: #f0fdf4; color: #14532d; border: 1.5px solid #86efac; }
.pkg-cat-badge--special { background: #eff6ff; color: #1e40af; border: 1.5px solid #bfdbfe; }
/* Special tab highlight */
.pkg-tab--special { background: linear-gradient(135deg, #1d4ed8, #6d28d9) !important; color: #fff !important; border-color: #1d4ed8 !important; }
.pkg-tab--special:hover, .pkg-tab--special.active { background: linear-gradient(135deg, #1e40af, #5b21b6) !important; color: #fff !important; }

/* ============================================================
   PKG CARD — new sub-elements (meta row, stars, inc/exc)
   ============================================================ */
.pkg-meta-row { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.2rem; }
.pkg-stars { display: flex; gap: 1px; }
.pkg-stars .fa-star, .pkg-stars .fa-star-o { font-size: 0.65rem; }

/* Flight excluded notice inside card */
.pkg-flight-note {
  display: flex; align-items: center; gap: 0.5rem;
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: 8px;
  padding: 0.45rem 0.75rem; font-size: 0.75rem; color: #92400e; font-weight: 600;
}
.pkg-flight-note .fa-plane-slash { color: #fb923c; }

/* Includes / Excludes 2-col split */
.pkg-inc-exc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.pkg-inc, .pkg-exc {
  border-radius: 8px; overflow: hidden;
}
.pkg-inc-title, .pkg-exc-title {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
}
.pkg-inc-title { background: #f0fdf4; color: #166534; }
.pkg-exc-title { background: #fef2f2; color: #991b1b; }
.pkg-inc ul, .pkg-exc ul { padding: 0.4rem 0.65rem 0.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.pkg-inc li, .pkg-exc li {
  display: flex; align-items: flex-start; gap: 0.35rem;
  font-size: 0.72rem; color: var(--text); line-height: 1.4;
}
.pkg-inc li .fa-check  { color: #16a34a; font-size: 0.65rem; margin-top: 2px; flex-shrink: 0; }
.pkg-exc li .fa-xmark  { color: #dc2626; font-size: 0.65rem; margin-top: 2px; flex-shrink: 0; }

/* Bespoke CTA block */
.bespoke-cta {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 16px; padding: 2.5rem 2rem;
}
.bespoke-cta-text { flex: 1; min-width: 200px; }
.bespoke-cta-text h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.bespoke-cta-text p  { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.bespoke-cta-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* ============================================================
   WHY GRID
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 2rem; transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }
.why-icon { width: 52px; height: 52px; background: rgba(254,191,24,0.18); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--accent); margin-bottom: 1.25rem; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.7; }

/* ============================================================
   VISA SECTION
   ============================================================ */
.visa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.visa-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem 1rem; text-align: center; transition: all 0.3s ease; display: block; color: var(--text);
}
.visa-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-3px); color: var(--text); }
.visa-flag { font-size: 2.5rem; margin-bottom: 0.75rem; }
.visa-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.visa-card p { font-size: 0.8rem; color: var(--text-muted); }
.visa-card--cta { background: var(--primary); border-color: var(--primary); }
.visa-card--cta h4, .visa-card--cta p { color: rgba(255,255,255,0.9); }
.visa-card--cta .visa-flag { color: var(--accent); }
.visa-card--cta:hover { background: var(--primary-dark); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%); padding: 4rem 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(254,191,24,0.05)"/><circle cx="20" cy="80" r="30" fill="rgba(254,191,24,0.04)"/></svg>') no-repeat center/cover; }
.cta-banner-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 0.5rem; }
.cta-banner-text p { color: rgba(255,255,255,0.78); font-size: 1rem; }
.cta-banner-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   TRANSPORT SECTION
   ============================================================ */
.transport-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.transport-text .section-eyebrow { margin-bottom: 1rem; }
.transport-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--primary); margin-bottom: 1rem; }
.transport-text p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.transport-features { margin-bottom: 2rem; }
.transport-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; color: var(--text); font-size: 0.95rem; }
.transport-features .fa-check-circle { color: var(--accent); }
.transport-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius); padding: 2.5rem; text-align: center; color: var(--white);
}
.transport-card i { color: var(--accent); font-size: 3rem; margin-bottom: 1rem; }
.transport-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.transport-card p { color: rgba(255,255,255,0.78); }
.transport-card--large { padding: 3rem 2rem; }
.cities-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1rem; }
.cities-grid span { background: rgba(254,191,24,0.16); border: 1px solid rgba(254,191,24,0.35); color: var(--accent); padding: 0.3rem 0.75rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; }

/* ============================================================
   NOTICE SECTION
   ============================================================ */
.notice-section { background: #fefce8; padding: 2rem 0; }
.notice-card { display: flex; gap: 1.25rem; align-items: flex-start; background: #fff8e1; border: 1px solid #f59e0b; border-radius: var(--radius); padding: 1.5rem; }
.notice-icon { color: #f59e0b; font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.notice-text h5 { font-weight: 700; color: #92400e; margin-bottom: 0.5rem; }
.notice-text p { font-size: 0.9rem; color: #78350f; line-height: 1.6; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero { position: relative; min-height: 380px; display: flex; align-items: center; background: var(--primary); overflow: hidden; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,45,110,0.90) 0%, rgba(18,72,168,0.82) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 5rem 0; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 600px; margin-bottom: 1rem; }

/* Page hero backgrounds — all Islamic pilgrimage themed */
.page-hero--packages {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=uHG97LYpYSTnFP%2Bu1Kmr7HHf7HVaP8NhYczDddUE1%2F2NDVVDd0AjyTEWxQeRFltmMg%2BKfMNb%2B5%2B0TSfGezJYRAwNU78mMPNef2G7OCFLM7XYrK9cAjkKT5K%2FeSgJswMLhuAZBQ%3D%3D&u2=04OXFMEdyfSHkQDZ&width=2560');
  background-size: cover; background-position: center;
}
.page-hero--visa {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=T%2BCbsGSPdrrY%2FYiHa%2BKpcp8ZUpE3GNgMvn5iDcMjtlIXCOZAlh2cKax459uOKNIDdgVzn5bCFZAZCLdkoj2cj1yC%2FBwjslDwuRCMVe0ZMd46CAGi%2F2wQdTI2Ljsd0UVdiSP9twel%2FxAl8c%2Bp0V9u&u2=5%2FiY1PPKCWEzsCFd&width=2560');
  background-size: cover; background-position: center;
}
.page-hero--hajj {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=sHGHGj4%2Fx%2BB82JLRnQ5Z8f466BrwdULmXTCzGOeEngCJhRQ5y0n4eSeNkX%2F4LHOAYNuNJpJvD2ECc8%2BSzVFTDU0E6ObyDDuNnKR1deaHFKga&u2=zpWW77%2BBiCQlseX1&width=2560');
  background-size: cover; background-position: center;
}
.page-hero--transport {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=oukkS63YI1VcY%2BHBsdFS6JgzIYvJtpWbryB5d%2BZJvgVYZkwGKQbG3%2BEw7ohI1N4MEyaHVUMhDder0fQBldtusHthWdxr9TJU5KeARQR2xGGfw0MVIkJztB0FbyltnjFNPYe3fRQGsqFszw%3D%3D&u2=o7rzeBj8U1f5H9xK&width=2560');
  background-size: cover; background-position: center;
}
.page-hero--about {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=XS8OcTn3dg8Vi5SvjnSBCJ41G1Kbivo5XS7wjeinorm29y8%2Fz1xS3FsI5mAuB7TapYY4he5%2B5FDBqujblgidAE1fs1kw3Y4SCUmyz1Kgp5QaDFq3epJVr84QQCTokAqWwGEt3c4aXdPy1IU2QpvWYoEw&u2=Q5kcZqO9Nb2i4jP8&width=2560');
  background-size: cover; background-position: center;
}
.page-hero--contact {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=mm6BoglhaCus5TB9s7LV4y7NfilnlfDCWBxkvA7KPsqC6DBTl34t2dUcQ9DIFDEorLD8y8k8liy4ur75jX4vIVe9ufBVksnd9O%2Fuewac%2BKf%2FNl4Xk7iBTjL6jTNQyF%2FRfPqq&u2=1DXIM3sYGj4lrMxt&width=2560');
  background-size: cover; background-position: center;
}
.page-hero--simple { background: var(--primary); min-height: 250px; }
.trust-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(254,191,24,0.15); border: 1px solid rgba(254,191,24,0.45); color: var(--accent); padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: var(--accent); }
.breadcrumb .fa-chevron-right { font-size: 0.7rem; }

/* ============================================================
   VISA TYPES PAGE
   ============================================================ */
.visa-types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.visa-type-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all 0.3s ease; }
.visa-type-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.visa-type-flag { font-size: 3rem; margin-bottom: 1rem; }
.visa-type-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.visa-type-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.visa-type-card h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); margin: 1rem 0 0.5rem; }
.visa-type-card ul li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.88rem; color: var(--text); padding: 0.3rem 0; }
.visa-type-card ul .fa-check { color: #16a34a; font-size: 0.75rem; margin-top: 3px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.about-text .section-eyebrow { margin-bottom: 1rem; display: inline-block; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--primary); margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; font-size: 0.98rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stat { background: var(--primary); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.about-stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); margin-bottom: 0.25rem; }
.about-stat span:last-child { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.cert-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2rem; text-align: center; }
.cert-badge { display: inline-flex; align-items: center; justify-content: center; width: 70px; height: 70px; background: var(--accent); color: var(--primary-dark); border-radius: 50%; font-size: 1.1rem; font-weight: 900; margin-bottom: 1rem; }
.cert-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.cert-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.3rem); color: var(--primary); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-method { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 44px; height: 44px; background: rgba(254,191,24,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1rem; flex-shrink: 0; }
.contact-method strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-method a { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.contact-method a:hover { color: var(--accent); }
.contact-wa-link { color: #16a34a !important; font-weight: 600; font-size: 0.95rem; cursor: pointer; background: none; border: none; padding: 0; }
.contact-method span { color: var(--text); font-size: 0.95rem; }
.opening-hours { background: #f0f4ff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid rgba(18,72,168,0.12); }
.opening-hours h4 { font-weight: 700; margin-bottom: 1rem; color: var(--primary); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; font-size: 0.9rem; }
.hours-grid span:nth-child(odd) { color: var(--text-muted); }
.hours-grid span:nth-child(even) { font-weight: 600; color: var(--primary); }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--primary); margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: 8px; padding: 0.75rem 1rem;
  font-size: 0.95rem; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(254,191,24,0.12); }
.form-notice { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.form-success { background: #dcfce7; border: 1px solid #86efac; color: #166534; border-radius: 8px; padding: 1rem; display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.82); }
.footer-top { padding: 4rem 0 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 1rem 0 1.25rem; line-height: 1.7; }
.footer-logo { margin-bottom: 0.75rem; display: inline-flex; }
/* Footer logo — PNG on dark background, no box needed */
.footer-logo { margin-bottom: 0.75rem; display: inline-flex; }
.footer-logo .logo-icon,
.footer-logo .logo-svg-wrap {
  background: none !important;
  border: none !important;
}
.footer-logo .logo-icon img { filter: brightness(0) invert(1); }
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 0.5rem 0.875rem; text-align: center; min-width: 90px; }
.badge-label { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.badge-num { display: block; font-size: 0.9rem; font-weight: 700; color: var(--accent); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact .fa, .footer-contact .fab { color: var(--accent); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-bottom { padding: 1.5rem 0 1rem; text-align: center; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--accent); }
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.35); max-width: 800px; margin: 0 auto; padding: 0 1.25rem 1rem; line-height: 1.6; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998; display: flex; flex-direction: column; gap: 0.75rem; }
.float-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: all 0.2s ease;
  border: none; font-family: inherit;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.float-call { background: var(--accent); color: var(--primary-dark); }
.float-wa { background: #25D366; color: #fff; }
.float-btn .fa, .float-btn .fab { font-size: 1.1rem; }

/* ============================================================
   WHATSAPP MODAL
   ============================================================ */
.wa-modal { position: fixed; inset: 0; z-index: 1100; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); padding: 1rem; }
.wa-modal.open { display: flex; }
.wa-modal-box { background: var(--white); border-radius: var(--radius); max-width: 400px; width: 100%; padding: 2rem; position: relative; }
.wa-close { position: absolute; top: 1rem; right: 1rem; font-size: 1.5rem; color: var(--text-muted); background: none; border: none; cursor: pointer; line-height: 1; padding: 0.25rem; }
.wa-header { display: flex; align-items: center; gap: 0.75rem; font-size: 1.15rem; font-weight: 800; color: #075e54; margin-bottom: 0.75rem; }
.wa-header .fab { font-size: 1.5rem; color: #25D366; }
.wa-modal-box > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.wa-agents { display: flex; flex-direction: column; gap: 0.75rem; }
.wa-agent { display: flex; align-items: center; gap: 1rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 1rem; color: var(--text); transition: all 0.2s; }
.wa-agent:hover { background: #dcfce7; transform: translateX(4px); }
.wa-agent .fab { font-size: 1.5rem; color: #25D366; flex-shrink: 0; }
.wa-agent strong { display: block; font-size: 0.95rem; color: var(--primary); }
.wa-agent span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   LEGAL CONTENT
   ============================================================ */
.legal-content { max-width: 800px; }
.legal-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 2rem 0 0.75rem; }
.legal-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.legal-content a { color: var(--accent); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   TEXT UTILITIES
   ============================================================ */
.text-center { text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .transport-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--primary-dark); flex-direction: column; align-items: flex-start;
    gap: 0; padding: 5rem 1.5rem 2rem; z-index: 1000;
    transition: right 0.3s ease; box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.875rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; }
  .nav-cta { background: var(--accent) !important; margin-top: 1rem; text-align: center; border-radius: 8px !important; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1rem; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0 1rem; }
  .top-bar-right { display: none; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .contact-section { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .floating-btns { bottom: 1rem; right: 1rem; }
  .float-btn span { display: none; }
  .float-btn { padding: 0.875rem; border-radius: 50%; }
  .trust-strip-inner { justify-content: flex-start; overflow-x: auto; }
  .trust-sep { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .visa-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  /* Filter tabs scroll on mobile */
  .pkg-filter-section { top: 0; }
  .pkg-filter-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.25rem; scrollbar-width: none; }
  .pkg-filter-tabs::-webkit-scrollbar { display: none; }
  .pkg-duration-pills { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .pkg-duration-pills::-webkit-scrollbar { display: none; }
  /* Inc/Exc stack on mobile */
  .pkg-inc-exc { grid-template-columns: 1fr; }
  /* Cat header stack */
  .pkg-cat-header { flex-direction: column; gap: 0.75rem; }
  .pkg-cat-price-tag { align-self: flex-start; }
  /* Bespoke CTA */
  .bespoke-cta { flex-direction: column; gap: 1.5rem; }
  /* Flights banner */
  .flights-excl-inner { gap: 0.75rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section { padding: 3.5rem 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   WHATSAPP BUTTON VARIANTS
   ============================================================ */
.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-wa:hover {
  background: #128C7E;
  color: #fff;
  border-color: #128C7E;
}
.btn-navy-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-navy-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-hero {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.95);
}
.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* ============================================================
   WA PULSE ANIMATIONS
   ============================================================ */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes waPulseSubtle {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.3); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.wa-pulse {
  animation: waPulse 2s infinite;
}
.wa-pulse-subtle {
  animation: waPulseSubtle 2.5s infinite;
}

/* ============================================================
   ONLINE STATUS DOT
   ============================================================ */
.wa-online-dot {
  display: inline-block;
  width: 9px; height: 9px;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotBlink 1.8s ease-in-out infinite;
}
.wa-online-dot.lg {
  width: 13px; height: 13px;
}
.wa-online-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ============================================================
   STICKY MOBILE WA BAR
   ============================================================ */
.wa-sticky-bar {
  display: none; /* shown only on mobile via media query */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1050;
  background: #075e54;
  padding: 0.75rem 1rem;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.3);
}
.wa-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}
.wa-sticky-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
}
.wa-sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.wa-sticky-btn:hover { background: #128C7E; color: #fff; }
.wa-sticky-btn .fab { font-size: 1.05rem; }

/* ============================================================
   WA ENQUIRY BANNER (homepage strip)
   ============================================================ */
.wa-enquiry-banner {
  background: linear-gradient(90deg, #064e3b 0%, #065f46 50%, #047857 100%);
  padding: 1.25rem 0;
  border-top: 3px solid #25D366;
  border-bottom: 3px solid rgba(37,211,102,0.3);
}
.wa-enquiry-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.wa-enquiry-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
}
.wa-enquiry-left strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.wa-enquiry-left p {
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  margin: 0;
}
.wa-enquiry-btns {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   WA PAGE BANNER (packages/services top bar)
   ============================================================ */
.wa-page-banner {
  background: #ecfdf5;
  border-bottom: 2px solid #6ee7b7;
  padding: 0.85rem 0;
}
.wa-page-banner .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.wa-page-banner .fab {
  font-size: 1.35rem;
  color: #16a34a;
  flex-shrink: 0;
}
.wa-page-banner span {
  flex: 1;
  font-size: 0.9rem;
  color: #166534;
}
.wa-page-banner strong { color: #14532d; }

/* ============================================================
   PACKAGE CARD IMAGE WRAP
   ============================================================ */
.pkg-img-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.pkg-img-wrap .package-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.package-card:hover .pkg-img-wrap .package-img {
  transform: scale(1.06);
}
.pkg-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(10,45,110,0.45) 100%);
  pointer-events: none;
}

/* ============================================================
   MOBILE NAV WA ICON
   ============================================================ */
.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.nav-wa-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-wa-mobile:hover {
  background: #128C7E;
  color: #fff;
  transform: scale(1.1);
}

/* ============================================================
   HERO SOCIAL PROOF ROTATOR
   ============================================================ */
.hero-wa-social {
  display: inline-flex;
  align-items: center;
  background: rgba(37,211,102,0.14);
  border: 1px solid rgba(37,211,102,0.35);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  transition: opacity 0.3s ease;
}

/* ============================================================
   WA MODAL — ENHANCED
   ============================================================ */
.wa-modal-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: #075e54;
  border-radius: 10px 10px 0 0;
  padding: 1rem 1.25rem;
  margin: -2rem -2rem 1.25rem;
}
.wa-modal-avatar {
  width: 44px; height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  flex-shrink: 0;
}
.wa-modal-header .wa-header {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.wa-modal-header .wa-online-status {
  color: rgba(255,255,255,0.8);
}
.wa-modal-header .wa-online-dot { background: #25D366; }
.wa-modal-body {
  margin-bottom: 1rem;
}
.wa-bubble {
  background: #e9f7ef;
  border: 1px solid #c3e6cb;
  border-radius: 0 10px 10px 10px;
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  color: #1a1a1a;
  position: relative;
}
.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border: 8px solid transparent;
  border-top-color: #e9f7ef;
  border-right-color: #e9f7ef;
}
.wa-bubble p { margin: 0 0 0.5rem; }
.wa-bubble p:last-child { margin: 0; }

/* WA agents inside modal */
.wa-agent-avatar {
  width: 40px; height: 40px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #16a34a;
  flex-shrink: 0;
  transition: background 0.2s;
}
.wa-agent-avatar.main {
  background: #25D366;
  color: #fff;
}
.wa-agent:hover .wa-agent-avatar { background: #25D366; color: #fff; }
.wa-agent-info {
  flex: 1;
}
.wa-agent-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary);
}
.wa-agent-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.wa-agent-arrow {
  color: var(--text-muted);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.wa-agent:hover .wa-agent-arrow {
  transform: translateX(3px);
  color: #25D366;
}
.wa-modal-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.wa-modal-footer .fab { color: #25D366; font-size: 0.9rem; }

/* ============================================================
   WA CONTACT PAGE ROWS
   ============================================================ */
.wa-agents-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.wa-agent-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--text);
  transition: all 0.2s;
}
.wa-agent-row:hover {
  background: #dcfce7;
  transform: translateX(4px);
  box-shadow: 0 3px 12px rgba(37,211,102,0.15);
}
.wa-link-big {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 1rem;
}
.wa-link-big:hover {
  background: #128C7E;
  color: #fff;
  transform: translateY(-2px);
}
.wa-link-big .fab { font-size: 1.3rem; }
.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* OR divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.or-divider::before, .or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 768px) {
  /* Show sticky WA bar on mobile */
  .wa-sticky-bar { display: block; }

  /* Add bottom padding on mobile so content doesn't hide behind sticky bar */
  body { padding-bottom: 70px; }

  /* Logo scales down on mobile */
  .logo-img { width: 118px; }
  .logo-img--footer { width: 110px; }

  /* Show mobile nav WA icon + adjust floating buttons */
  .nav-right-mobile { display: flex; }

  /* Adjust floating buttons up on mobile (above sticky bar) */
  .floating-btns { bottom: 5rem; right: 1rem; }

  /* WA enquiry banner stacks on mobile */
  .wa-enquiry-inner { flex-direction: column; align-items: flex-start; }
  .wa-enquiry-btns { width: 100%; }
  .wa-enquiry-btns .btn { flex: 1; justify-content: center; }

  /* WA page banner */
  .wa-page-banner .container { gap: 0.5rem; }
  .wa-page-banner span { font-size: 0.82rem; }

  /* Hero social proof */
  .hero-wa-social { font-size: 0.78rem; padding: 0.4rem 0.75rem; }

  /* Package image height on mobile */
  .pkg-img-wrap .package-img { height: 170px; }

  /* WA enquiry banner text */
  .wa-enquiry-left { gap: 0.75rem; }
  .wa-enquiry-left strong { font-size: 0.95rem; }
  .wa-enquiry-left p { font-size: 0.8rem; }

  /* WA modal fits mobile */
  .wa-modal-header { padding: 0.875rem 1rem; margin: -2rem -2rem 1rem; }
}

@media (max-width: 480px) {
  /* Smaller wa sticky */
  .wa-sticky-text { font-size: 0.78rem; }
  .wa-sticky-btn { padding: 0.5rem 0.875rem; font-size: 0.82rem; }

  /* Nav WA icon smaller */
  .nav-wa-mobile { width: 34px; height: 34px; font-size: 1.1rem; }

  /* Package image height */
  .pkg-img-wrap .package-img { height: 150px; }

  /* WA link big */
  .wa-link-big { padding: 0.875rem 1.5rem; font-size: 0.95rem; }

  /* Stacked hero CTA on very small */
  .hero-btns .btn { width: 100%; justify-content: center; }
}

/* Touch-friendly tap targets on mobile */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 48px; }
  .wa-sticky-btn { min-height: 44px; }
  .nav-links a { min-height: 48px; padding-top: 0.875rem; padding-bottom: 0.875rem; }
  .wa-agent, .wa-agent-row { min-height: 56px; }
  .float-btn { min-width: 48px; min-height: 48px; }
}

/* ============================================================
   NEW COMPONENTS — Phase 1/2/3 additions
   ============================================================ */

/* ── AI CITATION BOX ── */
.ai-citation-box {
  background: #eff6ff;
  border-left: 4px solid #1248a8;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.ai-citation-label {
  color: #1248a8;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ai-citation-question {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
  font-family: 'Inter', sans-serif;
}
.ai-citation-answer {
  color: #374151;
  line-height: 1.75;
  margin: 0;
  font-size: 1rem;
}

/* ── FAQ ACCORDION ── */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(18,72,168,0.08); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  background: #fff;
  gap: 1rem;
  transition: background 0.2s, color 0.2s;
}
.faq-trigger:hover, .faq-trigger[aria-expanded="true"] {
  background: #eff6ff;
  color: #1248a8;
}
.faq-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: #6b7280;
  transition: transform 0.25s ease;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: #1248a8; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-answer.open {
  max-height: 600px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  color: #374151;
  line-height: 1.75;
  font-size: 0.97rem;
  margin: 0;
}

/* ── PAGE HEROES — new pages ── */
.page-hero--women    { background: linear-gradient(135deg, #831843 0%, #1248a8 100%); }
.page-hero--short    { background: linear-gradient(135deg, #0a2d6e 0%, #1248a8 100%); }
.page-hero--payment  { background: linear-gradient(135deg, #065f46 0%, #1248a8 100%); }
.page-hero--budget   { background: linear-gradient(135deg, #374151 0%, #1248a8 100%); }
.page-hero--city     { background: linear-gradient(135deg, #0369a1 0%, #1248a8 100%); }
.page-hero--cost     { background: linear-gradient(135deg, #92400e 0%, #0a2d6e 100%); }

/* ── NAVBAR DROPDOWNS ── */
.nav-links li { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(10,45,110,0.18);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 9000;
  border: 1px solid rgba(18,72,168,0.1);
}
.nav-links li:hover .nav-dropdown-menu,
.nav-links li:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  color: #1a1a2e;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: #eff6ff; color: #1248a8; }
.nav-dropdown-menu a i { color: #c9a227; font-size: 0.75rem; width: 14px; text-align: center; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-dropdown-caret {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.2s;
}
.nav-links li:hover .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0.35rem 1rem;
}

/* Mobile dropdowns become accordion */
@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.07);
    padding: 0;
    display: none;
  }
  .nav-dropdown-menu.mobile-open { display: block; }
  .nav-dropdown-menu a {
    color: rgba(255,255,255,0.85);
    padding: 0.55rem 1rem 0.55rem 2.5rem;
    font-size: 0.88rem;
  }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: #febf18; }
  .nav-dropdown-menu a i { color: #febf18; }
  .nav-dropdown-trigger { color: rgba(255,255,255,0.9); }
  .nav-dropdown-caret { color: rgba(255,255,255,0.6); }
}

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(18,72,168,0.07);
  border: 1px solid #e5e7eb;
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(18,72,168,0.12); }
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: #1248a8;
}
.benefit-card h4 { font-size: 0.95rem; font-weight: 700; color: #111827; margin-bottom: 0.4rem; }
.benefit-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.55; margin: 0; }

@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ── MAHRAM RULING BOX ── */
.ruling-box {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  border: 2px solid #c9a227;
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.ruling-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.ruling-content h3 { color: #92400e; font-size: 1.2rem; margin-bottom: 0.75rem; }
.ruling-content p { color: #374151; line-height: 1.75; margin-bottom: 0.5rem; font-size: 0.97rem; }
.ruling-content p:last-child { margin-bottom: 0; }
.ruling-update-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #065f46;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* ── TESTIMONIAL CARDS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(18,72,168,0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars { color: #febf18; font-size: 0.9rem; letter-spacing: 0.1em; }
.testimonial-text { color: #374151; line-height: 1.7; font-size: 0.97rem; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #1248a8, #0a2d6e);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: #111827; font-size: 0.9rem; }
.testimonial-detail { font-size: 0.8rem; color: #6b7280; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── ITINERARY TIMELINE ── */
.itinerary-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}
.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1248a8, #c9a227);
}
.itinerary-day {
  position: relative;
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 10px rgba(18,72,168,0.07);
  border: 1px solid #e5e7eb;
}
.itinerary-day::before {
  content: '';
  position: absolute;
  left: -2.05rem;
  top: 1.4rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #1248a8;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #1248a8;
}
.itinerary-day-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1248a8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.itinerary-day h4 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 0.4rem; }
.itinerary-day p { font-size: 0.92rem; color: #6b7280; line-height: 1.6; margin: 0; }

/* ── PAYMENT PLAN TABLE ── */
.payment-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.payment-plan-card {
  background: #fff;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.payment-plan-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(18,72,168,0.12); }
.payment-plan-card.featured { border-color: #1248a8; }
.payment-plan-header {
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: #f9fafb;
}
.payment-plan-card.featured .payment-plan-header { background: linear-gradient(135deg, #1248a8, #0a2d6e); color: #fff; }
.payment-plan-months {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1248a8;
  line-height: 1;
}
.payment-plan-card.featured .payment-plan-months { color: #febf18; }
.payment-plan-months span { font-size: 1rem; font-weight: 500; color: #6b7280; }
.payment-plan-card.featured .payment-plan-months span { color: rgba(255,255,255,0.7); }
.payment-plan-label { font-size: 0.85rem; color: #6b7280; margin-top: 0.25rem; font-weight: 600; }
.payment-plan-card.featured .payment-plan-label { color: rgba(255,255,255,0.8); }
.payment-plan-body { padding: 1.5rem; }
.payment-plan-example {
  background: #eff6ff;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.payment-plan-example .pkg-name { font-size: 0.85rem; color: #6b7280; margin-bottom: 0.25rem; }
.payment-plan-example .monthly { font-size: 1.5rem; font-weight: 800; color: #1248a8; }
.payment-plan-example .monthly span { font-size: 0.9rem; font-weight: 500; color: #6b7280; }
.payment-plan-features { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.payment-plan-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #374151; }
.payment-plan-features li i { color: #16a34a; font-size: 0.8rem; flex-shrink: 0; }

@media (max-width: 768px) { .payment-plans-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } }

/* ── COMPLIANCE BOX ── */
.compliance-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #16a34a;
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.compliance-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.compliance-content h3 { color: #065f46; font-size: 1.15rem; margin-bottom: 0.5rem; }
.compliance-content p { color: #374151; line-height: 1.7; margin: 0; }

/* ── COST TABLE ── */
.cost-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.cost-table th {
  background: #1248a8;
  color: #fff;
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.cost-table th:first-child { border-radius: 8px 0 0 0; }
.cost-table th:last-child { border-radius: 0 8px 0 0; }
.cost-table td {
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  vertical-align: top;
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: #f9fafb; }
.cost-table .col-label { font-weight: 600; color: #111827; }
.cost-table .col-budget { color: #374151; }
.cost-table .col-std { color: #b45309; }
.cost-table .col-lux { color: #7c3aed; }
.cost-table tfoot td {
  font-weight: 700;
  background: #f1f5f9;
  border-top: 2px solid #1248a8;
  color: #111827;
}

/* ── TIPS GRID ── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.tip-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.tip-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: #1248a8; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
}
.tip-card h5 { font-size: 0.9rem; font-weight: 700; color: #111827; margin-bottom: 0.25rem; }
.tip-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.5; margin: 0; }

@media (max-width: 640px) { .tips-grid { grid-template-columns: 1fr; } }

/* ── CITY PAGE ── */
.city-airport-card {
  background: linear-gradient(135deg, #0a2d6e, #1248a8);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.airport-stat { text-align: center; }
.airport-stat .stat-icon { font-size: 1.5rem; margin-bottom: 0.5rem; opacity: 0.85; }
.airport-stat .stat-val { font-size: 1.1rem; font-weight: 700; color: #febf18; margin-bottom: 0.2rem; }
.airport-stat .stat-lbl { font-size: 0.8rem; opacity: 0.8; }
@media (max-width: 640px) { .city-airport-card { grid-template-columns: repeat(2, 1fr); } }

.departures-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.departures-table th { background: #f1f5f9; padding: 0.75rem 1rem; text-align: left; font-size: 0.85rem; font-weight: 600; color: #374151; border-bottom: 2px solid #e5e7eb; }
.departures-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #e5e7eb; font-size: 0.9rem; color: #374151; }
.departures-table tr:hover td { background: #f9fafb; }
.dep-badge { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.78rem; font-weight: 600; padding: 0.2rem 0.65rem; border-radius: 50px; }
.dep-badge.available { background: #dcfce7; color: #065f46; }
.dep-badge.filling { background: #fef3c7; color: #92400e; }

/* ── 3-STEP HOW IT WORKS ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
}
.step-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(18,72,168,0.06);
  position: relative;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #1248a8, #0a2d6e);
  color: #fff; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(18,72,168,0.3);
}
.step-card h4 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.6; margin: 0; }

@media (max-width: 640px) { .steps-row { grid-template-columns: 1fr; } }

/* ── PACKAGE HIGHLIGHT BOX (for curated pages) ── */
.pkg-highlight-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid #1248a8;
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.pkg-highlight-box .highlight-icon { font-size: 2.5rem; flex-shrink: 0; }
.pkg-highlight-box h3 { font-size: 1.1rem; font-weight: 700; color: #1248a8; margin-bottom: 0.4rem; }
.pkg-highlight-box p { color: #374151; font-size: 0.95rem; line-height: 1.65; margin: 0; }
@media (max-width: 640px) { .pkg-highlight-box { flex-direction: column; } }

/* ── WHO-IS-THIS-FOR GRID ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.who-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(18,72,168,0.06);
  transition: transform 0.2s;
}
.who-card:hover { transform: translateY(-3px); }
.who-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.who-card h4 { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.who-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.6; margin: 0; }
@media (max-width: 640px) { .who-grid { grid-template-columns: 1fr; } }

/* ── SEASONAL PRICE TABLE ── */
.season-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.season-table th { background: #0a2d6e; color: #fff; padding: 0.75rem 1rem; font-size: 0.85rem; font-weight: 600; text-align: left; }
.season-table td { padding: 0.7rem 1rem; border-bottom: 1px solid #e5e7eb; font-size: 0.9rem; color: #374151; }
.season-table tr:nth-child(even) td { background: #f9fafb; }
.price-badge { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.price-badge.low { background: #dcfce7; color: #065f46; }
.price-badge.mid { background: #fef3c7; color: #92400e; }
.price-badge.high { background: #fee2e2; color: #991b1b; }

/* ── HIDDEN COSTS WARNING BOX ── */
.warning-box {
  background: #fff7ed;
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.warning-box h4 { color: #92400e; font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.warning-box ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.warning-box li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.93rem; color: #374151; }
.warning-box li i { color: #f59e0b; font-size: 0.8rem; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════
   GOOGLE REVIEWS SECTION
   ══════════════════════════════════════════════════════════════ */

/* Rating header badges */
.reviews-header-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.review-platform-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.review-platform-badge .badge-logo {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.badge-logo--google { color: #4285F4; }
.badge-logo--tp     { color: #00b67a; }
.review-platform-badge .badge-score {
  font-size: 1.45rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}
.review-platform-badge .badge-stars {
  color: #febf18;
  font-size: 0.78rem;
  letter-spacing: 1px;
}
.review-platform-badge .badge-count {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 1px;
}
.review-platform-badge .badge-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* Trustpilot CTA badge — free-tier compliant text-only block */
.trustpilot-cta-badge {
  background: #fff;
  border: 1.5px solid #00b67a;
  border-radius: 12px;
  padding: 0.85rem 1.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  max-width: 320px;
}
.tp-cta-inner { display: flex; flex-direction: column; gap: 0.3rem; }
.tp-cta-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tp-cta-label {
  font-size: 0.9rem;
  color: #111827;
  line-height: 1.3;
}
.tp-cta-stars {
  color: #00b67a;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.tp-cta-sub {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}
.tp-cta-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #00b67a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
  transition: color 0.2s;
}
.tp-cta-link:hover { color: #007a54; text-decoration: underline; }

/* Google attribution line */
.google-attribution {
  font-size: 0.72rem;
  color: #9ca3af;
  text-align: center;
  margin: -0.75rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.google-attribution i { color: #4285F4; }

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1.25rem;
  box-shadow: 0 2px 12px rgba(18,72,168,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(18,72,168,0.12);
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-avatar--google { background: #4285F4; }
.review-avatar--tp     { background: #00b67a; }
.review-meta { flex: 1; min-width: 0; }
.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-source-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2px;
}
.review-source-icon { font-size: 0.72rem; }
.review-source-icon--google { color: #4285F4; }
.review-source-icon--tp     { color: #00b67a; }
.review-source-label { font-size: 0.72rem; color: #6b7280; }
.review-stars {
  color: #febf18;
  font-size: 0.8rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.review-text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
  flex: 1;
  position: relative;
}
.review-text::before {
  content: '\201C';
  font-size: 3rem;
  color: #e0e7ff;
  position: absolute;
  top: -0.6rem;
  left: -0.3rem;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.review-text p {
  padding-left: 1.4rem;
  margin: 0;
}
.review-date {
  font-size: 0.73rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

/* "See all reviews" footer row */
.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.review-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid;
}
.review-link-btn--google {
  color: #4285F4;
  border-color: #4285F4;
  background: #fff;
}
.review-link-btn--google:hover { background: #eff6ff; }
.review-link-btn--tp {
  color: #00b67a;
  border-color: #00b67a;
  background: #fff;
}
.review-link-btn--tp:hover { background: #f0fdf4; }

/* Mini review strip (3 cards on inner pages) */
.mini-reviews-strip {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 2.5rem 0;
}
.mini-reviews-strip .reviews-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .mini-reviews-strip .reviews-grid { grid-template-columns: 1fr; }
}

/* ── Resource Hub Grid ──────────────────────────────────── */
.resource-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.resource-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10,45,110,0.1);
  border-color: #1a56db;
}
.resource-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg,#0a2d6e,#1a56db);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #febf18;
}
.resource-card h4 { font-size: 1.05rem; font-weight: 700; color: #0a2d6e; margin: 0; }
.resource-card p  { font-size: .9rem; color: #4b5563; margin: 0; flex: 1; }
.resource-link    { font-size: .85rem; font-weight: 600; color: #1a56db; margin-top: auto; }
@media (max-width: 900px) {
  .resource-hub-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .resource-hub-grid { grid-template-columns: 1fr; }
}

/* ── Timeline (First-Timer Guide) ───────────────────────── */
.timeline-list { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  background: #febf18;
  border-radius: 50%;
  margin-top: .35rem;
  position: relative;
  z-index: 1;
}
.timeline-item:not(:last-child) .timeline-dot::after {
  content: '';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 1rem + 1rem);
  background: #e5e7eb;
  z-index: 0;
}
.timeline-body h5 { color: #0a2d6e; font-weight: 700; margin: 0 0 .35rem; font-size: 1rem; }
.timeline-body p  { color: #4b5563; margin: 0; font-size: .95rem; }

/* ============================================================
   HAJJ 2027 PAGE COMPONENTS
   ============================================================ */

/* Hajj Dates Box */
.hajj-dates-box {
  background: linear-gradient(135deg, #0a2d6e, #1a56db);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  margin-bottom: 1rem;
}
.hajj-dates-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hajj-date-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.hajj-date-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #febf18, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.25rem;
  color: #fff;
}
.hajj-date-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.35rem;
}
.hajj-date-val {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.hajj-date-val span {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}
.hajj-date-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 700px) {
  .hajj-dates-inner { flex-direction: column; align-items: stretch; }
  .hajj-date-item { text-align: left; display: flex; align-items: center; gap: 1rem; min-width: unset; }
  .hajj-date-icon { margin: 0; flex-shrink: 0; width: 2.75rem; height: 2.75rem; font-size: 1rem; }
  .hajj-date-divider { width: 100%; height: 1px; }
}

/* Hajj Steps Timeline */
.hajj-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.hajj-step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}
.hajj-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 3.25rem;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
  z-index: 0;
}
.hajj-step-num {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background: linear-gradient(135deg, #0a2d6e, #1a56db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(10,45,110,0.25);
}
.hajj-step-body {
  padding-top: 0.5rem;
}
.hajj-step-body h4 {
  color: #0a2d6e;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.hajj-step-body p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 560px) {
  .hajj-step { gap: 1rem; }
  .hajj-step-num { width: 2.5rem; height: 2.5rem; min-width: 2.5rem; font-size: 0.95rem; }
  .hajj-step:not(:last-child)::before { left: 1.25rem; top: 2.75rem; }
}

/* Info box */
.info-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  color: #1e40af;
  font-size: 0.95rem;
  line-height: 1.6;
}
.info-box i { margin-top: 0.15rem; font-size: 1.1rem; flex-shrink: 0; }

/* Related links row */
.related-links-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 1.25rem 1.5rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}
.related-links-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #1a56db;
  font-weight: 500;
  transition: all 0.2s;
}
.related-link:hover {
  background: #1a56db;
  color: #fff;
  border-color: #1a56db;
}
