/*
  Tawaf — static rebuild
  Ported from the original WordPress/Elementor "Tawaf" template kit.
  Design tokens below are pulled directly from the site's Elementor kit
  (post-5cdeb.css) so the visual identity matches the original.
*/

:root {
  --color-primary: #A8854E;      /* gold — backgrounds, borders, icons */
  --color-primary-text: #8E7142; /* darker gold used for text on light backgrounds — 4.5:1+ contrast (WCAG AA) */
  --color-secondary: #947139;    /* deep gold */
  --color-text: #171717;
  --color-accent: #DCD3C7;       /* warm beige */
  --color-white: #FFFFFF;
  --color-cream: #F2EFE5;
  --color-surface: #F7F7F5;
  --color-text-muted: #6F634E;
  --color-border: rgba(35, 33, 28, 0.3);

  --font-heading: "Fraunces", "Georgia", serif;
  --font-body: "Heebo", Arial, sans-serif;

  --container-width: 1200px;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 2px rgba(23,23,23,0.04), 0 12px 32px -12px rgba(23,23,23,0.14);
  --shadow-hover: 0 2px 4px rgba(23,23,23,0.05), 0 28px 56px -20px rgba(23,23,23,0.24);
  --hairline: 1px solid rgba(23,23,23,0.08);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Bangla pages: Fraunces/Heebo have no Bangla glyphs at all, so both the
   heading and body typeface switch to the self-hosted Bangla font. Latin
   text mixed into Bangla copy (numbers, brand names) still renders from the
   same family since it also has full Latin coverage. */
:root[lang="bn"], html[lang="bn"] {
  --font-heading: "Li Ador Noirrit", "Fraunces", "Georgia", serif;
  --font-body: "Li Ador Noirrit", "Heebo", Arial, sans-serif;
}
[lang="bn"] body { line-height: 1.75em; }
[lang="bn"] .eyebrow, [lang="bn"] .main-nav a, [lang="bn"] .link-more, [lang="bn"] .btn {
  text-transform: none; /* Bangla script has no concept of letter-casing */
}

::selection { background: var(--color-accent); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }

/* Visually hidden but still announced by screen readers. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link (visible only when focused) — accessibility. */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--color-text);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--color-text);
  background: var(--color-white);
  /* Belt-and-braces against sideways panning on phones. `clip` (not `hidden`)
     because `hidden` would make body a scroll container and break the sticky
     header; older engines fall back to the `hidden` declaration above it. */
  overflow-x: hidden;
  overflow-x: clip;
}
/* Set while the mobile nav drawer is open so the page behind it can't scroll. */
body.nav-is-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15em;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--color-text);
}
p { margin: 0 0 1em; text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(64px, 7.5vw, 112px) 0;
}
.section--tight { padding: clamp(44px, 5vw, 64px) 0; }
.section--cream { background: var(--color-cream); }
.section--surface { background: var(--color-surface); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-text);
  margin-bottom: 16px;
}
.eyebrow i { display: none; }
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn i { transition: transform 0.25s var(--ease); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }
.btn--block { white-space: normal; }
.btn:hover { background: var(--color-secondary); border-color: var(--color-secondary); box-shadow: 0 10px 24px -12px rgba(148,113,57,0.7); }
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--outline:hover { background: var(--color-text); color: var(--color-white); border-color: var(--color-text); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.header-cta {
  background: transparent;
  color: var(--color-primary-text);
  border: 1.5px solid var(--color-primary);
  border-radius: 100px;
  padding: 11px 22px;
}
.header-cta:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); box-shadow: none; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--color-white);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-cream);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
}
.topbar-info {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar-info a { display: inline-flex; align-items: center; gap: 8px; opacity: 0.85; color: var(--color-text); }
.topbar-info a:hover { opacity: 1; color: var(--color-primary-text); }
.topbar-social { display: flex; gap: 16px; }
.topbar-social a {
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
  font-size: 15px;
}
.topbar-social a:hover { color: var(--color-primary-text); }

/* ---------- Language switcher ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 100px;
  background: var(--color-surface);
  margin-right: 6px;
}
.lang-switch a {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.lang-switch a[lang="bn"] { font-family: "Li Ador Noirrit", var(--font-body); }
.lang-switch a:hover { color: var(--color-text); }
.lang-switch a.is-active { background: var(--color-primary); color: var(--color-white); }
@media (max-width: 560px) {
  /* The address link is too long for a phone-width row; the phone number and
     language switcher (both requested to stay visible on mobile) fit fine.
     Specificity note: `.topbar-info a` above is a class+element selector
     (0,1,1) — a bare `.topbar-address` class (0,1,0) loses to it regardless
     of source order, so this has to be scoped through `.topbar-info` too. */
  .topbar-info .topbar-address { display: none; }
  .topbar .container { font-size: 13px; gap: 10px; }
  .topbar-info .topbar-phone i { font-size: 12px; }
}
@media (max-width: 360px) {
  /* At the very narrowest widths, drop the icon and shorten nothing else —
     the number itself is the part that must stay readable. */
  .topbar-info .topbar-phone i { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(23,23,23,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px -14px rgba(23,23,23,0.35); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.site-logo { flex-shrink: 0; display: flex; align-items: center; gap: 11px; }
.site-logo img { height: 44px; width: auto; }
/* Two name variants live in the markup (--short and --full); the full
   two-line wordmark (big lead word over a smaller rest) is used at every
   width so desktop/tablet match the phone treatment exactly. `.site-logo`
   is `display:flex`, so these spans are flex items — flex items are
   always block-level boxes, meaning `max-width` (unlike on a plain inline
   span) DOES constrain them and force a wrap. `white-space: nowrap` keeps
   each line (lead word, rest) from breaking mid-line. */
.site-logo__name {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
  white-space: nowrap;
}
.site-logo__name--short { display: none; }
.site-logo__name--full { display: flex; flex-direction: column; max-width: 13ch; }
.site-logo__name strong,
.site-logo__name small {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}
.site-logo__name small { font-size: 12px; font-weight: 500; color: var(--color-text-muted); }

.main-nav { flex: 1; min-width: 0; display: flex; justify-content: center; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav > ul > li { position: relative; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-primary-text); }

.has-dropdown > a i { font-size: 10px; transition: transform 0.2s ease; }
.has-dropdown:hover > a i { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 14px;
}
.dropdown-menu li a:hover { background: var(--color-surface); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-text);
}

.nav-overlay { display: none; }

/* Drawer-only blocks — hidden on desktop, where the real header already shows
   the logo/name and the topbar already shows phone/language. Scoped through
   .main-nav so these outrank `.main-nav a { display: inline-flex }`, which
   would otherwise force them visible inside the desktop nav. */
.main-nav .main-nav__brand,
.main-nav .main-nav__meta { display: none; }

@media (max-width: 900px) {
  /* The mobile drawer is a `position: fixed` DESCENDANT of .site-header, so the
     header must not create a containing block for it. `backdrop-filter` (and
     transform/filter/perspective) would do exactly that, which collapsed the
     drawer to the header's own 320x114 box: the menu rendered transparent,
     its links spilled down over the page, and the off-screen copy doubled the
     document width so the whole site could be panned sideways. Keep the mobile
     header a plain opaque bar — do not reintroduce backdrop-filter here. */
  .site-header {
    backdrop-filter: none;
    background: var(--color-white);
  }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 22px 24px 26px;
    transform: translateX(100%);
    /* Closed drawer stays out of the a11y tree and can't be tapped or focused. */
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: transform 0.3s ease, visibility 0.3s ease;
    z-index: 90;
  }
  .main-nav.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: flex-start; width: 100%; gap: 4px; }
  .main-nav > ul > li { width: 100%; }
  .main-nav a { width: 100%; padding: 12px 0; justify-content: space-between; }

  /* Brand sits at the top of the drawer: logo beside the name, name wrapping to
     two tight lines. The right padding keeps it clear of the close button
     (top:24px, absolute) while the bottom border still spans full width. */
  .main-nav .main-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 42px 18px 0;
    margin-bottom: 6px;
    border-bottom: var(--hairline);
  }
  .main-nav__brand img { height: 38px; width: auto; flex-shrink: 0; }
  /* max-width used to be a fixed 15ch, sized for the short "Travels Int'l"
     text. Now that this shows the full "Travels International" name, a
     guessed character count is the wrong tool — flex:1 + min-width:0 makes
     it take exactly whatever's left in the row after the logo and gap,
     on any drawer width, so the two-line strong/small stack (flex-direction:
     column, unrelated to this) never gets a third line from a wrapped word. */
  .main-nav__brand-name {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    text-transform: none;
    letter-spacing: 0;
  }
  .main-nav__brand-name strong {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.2;
    color: var(--color-text);
  }
  .main-nav__brand-name small {
    font-family: var(--font-heading);
    font-size: 11.5px;
    line-height: 1.3;
    color: var(--color-text-muted);
  }

  /* Phone + language pinned to the bottom of the drawer. */
  .main-nav .main-nav__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    margin-top: auto;
    padding-top: 22px;
    border-top: var(--hairline);
  }
  /* Scoped through .main-nav to beat `.main-nav a`, which sets width:100% and
     justify-content:space-between for the menu links — that flung the icon and
     the number to opposite edges of the drawer. */
  .main-nav .main-nav__phone {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    width: auto;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-primary-text);
  }
  .main-nav__phone i { font-size: 13px; }
  .main-nav .main-nav__meta .lang-switch { margin-right: 0; }
  .main-nav .main-nav__meta .lang-switch a { width: auto; padding: 6px 16px; font-size: 13px; justify-content: center; }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(23,23,23,0.5);
    z-index: 89;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-overlay.is-open { opacity: 1; visibility: visible; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: var(--color-surface);
    margin: 4px 0 4px 12px;
  }
  .has-dropdown.is-open .dropdown-menu { display: block; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
  }
  .site-header .container { gap: 12px; padding-top: 12px; padding-bottom: 12px; }
  .site-logo { gap: 9px; min-width: 0; }
}
@media (max-width: 560px) {
  /* Logo + company name + hamburger all have to fit a narrow phone. The nav
     is already a hamburger here, so the logo owns the row — shrink the
     two-line wordmark a bit further than the tablet/desktop size. */
  .site-logo img { height: 36px; }
  .site-logo__name strong { font-size: 16px; }
  .site-logo__name small { font-size: 10.5px; }
}
@media (max-width: 380px) {
  .site-logo img { height: 32px; }
  .site-logo__name { max-width: 12ch; }
  .site-logo__name strong { font-size: 14px; }
  .site-logo__name small { font-size: 9.5px; }
}
@media (min-width: 901px) {
  .nav-close { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--color-text);
  color: var(--color-white);
  text-align: center;
  padding: 130px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(111,99,78,0.45), rgba(23,23,23,0.6));
}
.hero .container { position: relative; z-index: 2; }
.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero .arabic {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(36px, 6vw, 64px);
  max-width: 780px;
  margin: 0 auto 28px;
}
.hero .btn:hover { background: var(--color-secondary); border-color: var(--color-secondary); }

.page-hero {
  position: relative;
  background-color: var(--color-text);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
  padding: 110px 0 70px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(111,99,78,0.55), rgba(23,23,23,0.82));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--color-white); font-size: clamp(32px, 5vw, 52px); margin: 0; }
.page-hero .arabic { font-family: var(--font-heading); font-size: 20px; color: var(--color-accent); margin-bottom: 8px; }
.breadcrumb { margin-top: 14px; font-size: 14px; opacity: 0.8; }
.breadcrumb a:hover { color: var(--color-accent); }

/* ---------- Icon box / feature grid ---------- */
/* A bordered, transparent bar that sits inside the dark hero (not a floating
   white card) — rounded top corners, thin dividers between columns. */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}
.icon-box {
  padding: 34px 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,0.25);
  text-align: left;
}
.icon-grid .icon-box:last-child { border-right: none; }
.icon-box i {
  font-size: 24px;
  color: var(--color-white);
  flex-shrink: 0;
}
.icon-box h5 { font-size: 17px; margin-bottom: 6px; color: var(--color-white); }
.icon-box p { margin: 0; color: rgba(255,255,255,0.7); font-size: 14px; }

@media (max-width: 900px) {
  .icon-grid { grid-template-columns: 1fr; margin-top: 24px; border-radius: 20px; }
  .icon-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
  .icon-grid .icon-box:last-child { border-bottom: none; }
}

/* ---------- Section headers ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head > *:first-child { min-width: 0; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 0; max-width: 20ch; }
@media (max-width: 700px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ---------- Package cards ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.package-grid--3 { grid-template-columns: repeat(3, 1fr); }
.package-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--hairline);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.package-card__media { position: relative; overflow: hidden; }
.package-card__media img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.7s var(--ease); }
.package-card:hover .package-card__media img { transform: scale(1.05); }
.package-card__price {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  background: rgba(255,255,255,0.94);
  color: var(--color-text);
  border-radius: 100px;
  padding: 9px 18px;
  line-height: 1.1;
  box-shadow: 0 6px 18px -8px rgba(23,23,23,0.4);
}
.package-card__price small { font-size: 13px; }
.package-card__price strong { font-family: var(--font-heading); font-size: 22px; }
.package-card__body { padding: 26px; background: var(--color-white); color: var(--color-text); flex: 1; display: flex; flex-direction: column; }
.package-card__body h5 { color: var(--color-text); font-size: 22px; }
.package-card__meta { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 24px; }
.package-card__meta li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--color-text-muted); }
.package-card__meta i { color: var(--color-primary-text); width: 18px; }
.package-card__body .btn { margin-top: auto; background: transparent; color: var(--color-text); border-color: var(--color-primary); }
.package-card__body .btn:hover { background: var(--color-primary); color: var(--color-white); }

/* ---------- Ticket cards ---------- */
.ticket-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--hairline);
  box-shadow: var(--shadow-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.ticket-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.ticket-card__route { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 19px; color: var(--color-text); }
.ticket-card__route i { color: var(--color-primary-text); font-size: 15px; }
.ticket-card__date { font-size: 14px; color: var(--color-text-muted); display: flex; align-items: center; gap: 8px; }
.ticket-card__date i { color: var(--color-primary-text); width: 16px; }
.ticket-card__meta-line { font-size: 13.5px; color: var(--color-text-muted); display: flex; align-items: center; gap: 8px; margin: 0; }
.ticket-card__meta-line i { color: var(--color-primary-text); width: 16px; }
.ticket-card__price { margin: 4px 0; }
.ticket-card__price strong { font-family: var(--font-heading); font-size: 24px; color: var(--color-primary-text); }
.ticket-card__seats, .ticket-card__notes { font-size: 13px; color: var(--color-text-muted); display: flex; align-items: flex-start; gap: 8px; margin: 0; }
.ticket-card__seats i, .ticket-card__notes i { color: var(--color-primary-text); width: 16px; flex-shrink: 0; margin-top: 2px; }
.ticket-card .btn { margin-top: auto; }

/* ---------- Ticket search ---------- */
.ticket-search {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 36px;
}
.ticket-search .form-field { flex: 1; min-width: 180px; margin-bottom: 0; }
.ticket-search .btn, .ticket-search .btn--outline { flex-shrink: 0; }

/* Select2/flatpickr ship with their own default theme (Bootstrap-blue
   highlights, 4px corners, a fixed 28px height) — restyle to match this
   site's inputs instead of leaving the ticket search bar visibly off-brand.
   !important is needed here: select2.min.css is linked from within this
   page's own content (after style.css in document order), so for
   equal-specificity rules it would otherwise win the cascade and silently
   override these sizes. */
.select2-container--default .select2-selection--single {
  height: auto !important;
  padding: 13px 16px !important;
  border: 1px solid rgba(23,23,23,0.15) !important;
  border-radius: 8px !important;
  background: var(--color-white) !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 !important;
  line-height: 1.4 !important;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
}
.select2-container--default .select2-selection--single .select2-selection__placeholder { color: rgba(23,23,23,0.35); }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 100% !important; top: 0 !important; right: 12px !important; }
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(168,133,78,0.16);
}
.select2-dropdown { border-color: rgba(23,23,23,0.15); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-card); }
.select2-search--dropdown .select2-search__field {
  border-radius: 6px;
  border: 1px solid rgba(23,23,23,0.15);
  padding: 8px 10px;
  font-family: var(--font-body);
}
.select2-search--dropdown .select2-search__field:focus { outline: none; border-color: var(--color-primary); }
.select2-results__option--highlighted[aria-selected] { background: var(--color-primary) !important; color: var(--color-white) !important; }
.select2-container--default .select2-results__option[aria-selected="true"] { background: var(--color-surface); }

.flatpickr-day.selected, .flatpickr-day.selected:hover, .flatpickr-day.selected:focus {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.flatpickr-day.today { border-color: var(--color-primary); }
.flatpickr-day:hover { background: var(--color-surface); }

@media (max-width: 1024px) {
  .package-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .package-grid, .package-grid--3 { grid-template-columns: 1fr; }
}

/* ---------- Blog / news cards ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
}
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__thumb img { transition: transform 0.7s var(--ease); }
.post-card__thumb {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-surface));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px 0 0; }
.post-card__meta { font-size: 13px; color: var(--color-text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.03em; }
.post-card h2, .post-card h3 { font-size: 21px; margin-bottom: 10px; line-height: 1.3em; }
.post-card h2 a, .post-card h3 a { transition: color 0.25s var(--ease); }
.post-card:hover h2 a, .post-card:hover h3 a { color: var(--color-primary-text); }
.post-card__body a.read-more { color: var(--color-primary-text); font-size: 14px; font-weight: 500; }

@media (max-width: 1024px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* ---------- Two-column content / image blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

.stat-list { display: flex; gap: 40px; margin-top: 28px; flex-wrap: wrap; }
.stat-list li strong { display: block; font-family: var(--font-heading); font-size: 34px; color: var(--color-primary-text); }
.stat-list li span { font-size: 14px; color: var(--color-text-muted); }

/* ---------- Steps ---------- */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card { text-align: center; padding: 10px; }
.step-card .step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-accent);
  margin-bottom: 8px;
}
@media (max-width: 900px) { .step-grid { grid-template-columns: 1fr; } }

/* Numbered step list (home page "Easy Process") */
.step-list { margin-top: 36px; display: flex; flex-direction: column; }
.step-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23,23,23,0.08);
}
.step-list .step-row:first-child { padding-top: 0; }
.step-row .step-number {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-text-muted);
  min-width: 28px;
}
.step-row h5 { font-size: 19px; margin-bottom: 6px; }
.step-row p { margin: 0; color: var(--color-text-muted); font-size: 14px; }

.process-collage { position: relative; display: flex; justify-content: center; }
.process-collage__main { width: 85%; }
.process-collage__figure {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 42%;
}
@media (max-width: 900px) {
  .process-collage { margin-top: 20px; }
}
.process-collage--right .process-collage__figure { left: auto; right: 0; }
.process-collage__accent {
  position: absolute;
  left: -2%;
  top: 4%;
  width: 30%;
  z-index: -1;
}

/* ---------- Feature list (features page) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 40px; }
.feature-card { display: flex; align-items: flex-start; gap: 18px; text-align: left; }
.feature-card img { width: 56px; height: 56px; flex-shrink: 0; margin-top: 4px; }
.feature-card h5 { font-size: 18px; margin: 0 0 6px; }
.feature-card p { margin: 0; color: var(--color-text-muted); font-size: 14px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* Icon + title + description list (home page "Elevate Your Faith") */
.icon-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  align-content: center;
}
.icon-list-item { display: flex; align-items: flex-start; gap: 18px; }
.icon-list-item img { width: 40px; height: 40px; flex-shrink: 0; margin-top: 4px; }
.icon-list-item h5 { font-size: 18px; margin-bottom: 6px; }
.icon-list-item p { margin: 0; color: var(--color-text-muted); font-size: 14px; }
@media (max-width: 700px) { .icon-list-grid { grid-template-columns: 1fr; } }

/* ---------- Services list ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(23,23,23,0.08);
}
.service-row:last-child { border-bottom: none; }
.service-row:nth-child(even) .split { direction: rtl; }
.service-row:nth-child(even) .split > * { direction: ltr; }
@media (max-width: 900px) { .service-row { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; } }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-card p { font-style: italic; font-size: 18px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial-card .author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author strong { display: block; font-size: 15px; }
.testimonial-card .author span { font-size: 13px; color: var(--color-text-muted); }

/* Full-bleed photo testimonial with a single floating card (home page) */
.testimonial-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.testimonial-slider { position: relative; max-width: 420px; }
.testimonial-slider .testimonial-card {
  display: none;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial-slider .testimonial-card.is-active { display: block; }
.testimonial-slider .stars { color: var(--color-primary-text); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-slider .testimonial-card p { font-style: normal; }
.testimonial-slider .testimonial-card::after {
  content: '\201D';
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--color-accent);
}
.testimonial-dots { display: flex; gap: 8px; margin-top: 18px; }
.testimonial-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
}
.testimonial-dots button.is-active { background: var(--color-white); }
@media (max-width: 700px) {
  .testimonial-photo { padding: 60px 0; min-height: auto; }
}

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 500; }
.form-field label .required { color: var(--color-primary-text); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid rgba(23,23,23,0.15);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-text);
}
.form-field input,
.form-field select,
.form-field textarea { transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(168,133,78,0.16);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(23,23,23,0.35); }
.form-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-note.is-success { display: block; background: #e7f3ea; color: #205c30; }
.form-note.is-error { display: block; background: #fbeaea; color: #7c2222; }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-info-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list i {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-primary-text);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-list strong { display: block; font-size: 15px; }
.contact-info-list span { font-size: 14px; color: var(--color-text-muted); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-embed--full { border-radius: 0; height: 480px; min-height: 480px; }

/* ---------- Contact page visual (photo + decorative background image) ---------- */
.contact-visual { position: relative; }
.contact-visual .contact-visual__deco {
  position: absolute;
  right: -6%;
  bottom: -30%;
  width: 70%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .contact-visual .contact-visual__deco { display: none; }
}

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

/* ---------- Package detail (single-package page) ---------- */
.package-hero-media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; }
.package-hero-media img { width: 100%; max-height: 480px; object-fit: cover; }
.package-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.room-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 32px; }
.room-option {
  border: 1px solid rgba(23,23,23,0.12);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background: var(--color-white);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.room-option:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.room-option.is-selected { border-color: var(--color-primary); background: var(--color-cream); }
.room-option strong { display: block; font-family: var(--font-heading); font-size: 24px; margin: 6px 0; color: var(--color-primary-text); }
.booking-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 24px;
}
.booking-card .price { font-family: var(--font-heading); font-size: 36px; color: var(--color-primary-text); margin-bottom: 4px; }
@media (max-width: 900px) {
  .package-detail-grid { grid-template-columns: 1fr; }
  .room-options { grid-template-columns: 1fr 1fr; }
}

/* ---------- Single post page ---------- */
.post-content { max-width: 760px; margin: 0 auto; }
.post-content img { border-radius: var(--radius-lg); margin: 24px 0; }
.post-content h2 { margin-top: 40px; }
.post-meta { display: flex; gap: 20px; font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; flex-wrap: wrap; }

/* ---------- Tabs (used on About / Features) ---------- */
.tabs-nav { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.tabs-nav button {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(23,23,23,0.15);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
}
.tabs-nav button { transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease); }
.tabs-nav button:hover { border-color: var(--color-primary); color: var(--color-primary-text); }
.tabs-nav button.is-active { background: var(--color-text); color: var(--color-white); border-color: var(--color-text); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-media { max-width: min(280px, 42%); border-radius: 10px; }
.tab-media--left { float: left; margin: 0 24px 16px 0; }
.tab-media--right { float: right; margin: 0 0 16px 24px; }
@media (max-width: 640px) {
  .tab-media--left, .tab-media--right { float: none; max-width: 100%; margin: 0 0 16px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.82);
  padding: clamp(56px, 6vw, 88px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h6 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { transition: color 0.2s var(--ease); }
.footer-grid a:hover { color: var(--color-primary-text); }
.footer-grid p { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.7em; }
.footer-grid ul a { font-size: 15px; color: rgba(255,255,255,0.72); display: inline-flex; align-items: center; gap: 9px; }
.footer-grid ul i { color: var(--color-primary-text); font-size: 13px; }
.footer-logo img { height: 48px; margin-bottom: 16px; background: var(--color-white); border-radius: 50%; padding: 4px; }
/* Licence strip — government/industry registration numbers, shown above the
   copyright line so they're the last thing a hesitant visitor reads. */
.footer-licences {
  margin-top: 44px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: baseline;
  gap: 14px 22px;
  flex-wrap: wrap;
}
.footer-licences__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.footer-licences ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-licences li {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  font-size: 12.5px;
}
.footer-licences strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.footer-licences span { color: rgba(255,255,255,0.62); font-variant-numeric: tabular-nums; }

.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom__credit a { color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom__credit a:hover { color: var(--color-primary-text); }
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Refinements ---------- */

/* Hero: deeper cinematic overlay, more vertical presence */
.hero { padding: clamp(96px, 12vw, 160px) 0 0; }
.hero::before {
  background:
    radial-gradient(120% 90% at 50% 20%, rgba(23,23,23,0.25), rgba(23,23,23,0.72) 75%),
    linear-gradient(180deg, rgba(111,99,78,0.35), rgba(23,23,23,0.55));
}
.hero h1 { letter-spacing: -0.025em; }
.hero .arabic { letter-spacing: 0.04em; opacity: 0.92; }

/* Page hero: consistent breathing room under the sticky header */
.page-hero { padding: clamp(80px, 9vw, 128px) 0 clamp(60px, 7vw, 88px); }
.breadcrumb { display: inline-flex; gap: 10px; align-items: center; letter-spacing: 0.02em; }

/* Section headings read as a pair with the eyebrow */
h2 { letter-spacing: -0.025em; }
.split h2 { font-size: clamp(28px, 3.6vw, 40px); }
.split p { color: var(--color-text-muted); }

/* Cards on light backgrounds keep a hairline so they don't float */
.testimonial-card { border: var(--hairline); }
.testimonial-slider .testimonial-card { border-color: rgba(255,255,255,0.6); }
.testimonial-slider .testimonial-card p { font-size: 19px; line-height: 1.6em; }
.testimonial-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,23,23,0.35), rgba(23,23,23,0) 60%);
  pointer-events: none;
}
.testimonial-photo .container { position: relative; z-index: 1; }

/* Booking card clears the sticky header */
.booking-card { top: 104px; border: var(--hairline); }

/* Icon lists: gold-tinted icon plates for a more finished look */
.icon-list-item img, .feature-card img { transition: transform 0.4s var(--ease); }
.icon-list-item:hover img, .feature-card:hover img { transform: translateY(-3px); }

/* Service rows */
.service-row h2 { font-size: clamp(26px, 3.2vw, 36px); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ---------- Reference-match refinements (home) ---------- */

/* Nav: tracked uppercase like the live template */
.main-nav a { text-transform: uppercase; letter-spacing: 0.07em; font-size: 13.5px; }
.dropdown-menu li a { text-transform: none; letter-spacing: 0; font-size: 14px; }

/* Section-head CTA is a plain gold text link, not a pill */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.link-more i { font-size: 11px; transition: transform 0.25s var(--ease); }
.link-more:hover { color: var(--color-secondary); }
.link-more:hover i { transform: translateX(4px); }

/* Packages: 4-up, flat bordered cards, cream price tab */
.package-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.package-grid--4 .package-card {
  border-radius: 4px;
  border: 1px solid rgba(23,23,23,0.10);
  box-shadow: none;
}
.package-grid--4 .package-card:hover {
  transform: none;
  box-shadow: 0 18px 40px -26px rgba(23,23,23,0.35);
}
.package-grid--4 .package-card__media img { height: 165px; }
.package-grid--4 .package-card__body { padding: 22px 20px 24px; }
.package-grid--4 .package-card__body h5 { font-size: 21px; }
.package-grid--4 .package-card__meta { margin: 14px 0 22px; gap: 8px; }
.package-grid--4 .package-card__meta li { font-size: 13.5px; }
.package-card__price {
  top: 0;
  right: 0;
  background: #efeae0;
  border-radius: 0 0 0 16px;
  padding: 8px 16px 10px;
  box-shadow: none;
  align-items: baseline;
  gap: 4px;
}
.package-card__price small { font-size: 12px; opacity: 0.7; }
.package-card__price strong { font-size: 21px; font-weight: 500; }

@media (max-width: 1100px) { .package-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .package-grid--4 { grid-template-columns: 1fr; } }

/* Services: white card inset over the photo */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 430px;
  color: var(--color-text);
}
.service-card > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.service-card:hover > img { transform: scale(1.05); }
.service-card__panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: var(--color-white);
  padding: 24px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
  box-shadow: 0 18px 40px -28px rgba(23,23,23,0.5);
}
.service-card__panel h3 {
  font-size: 26px;
  margin: 0 0 8px;
  line-height: 1.1;
}
.service-card__panel p {
  margin: 0;
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.55em;
}
.service-card__panel i {
  color: var(--color-primary-text);
  font-size: 20px;
  transition: transform 0.3s var(--ease);
}
.service-card:hover .service-card__panel i { transform: translate(3px, -3px); }
@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

/* News cards: flat, square thumbs, serif headline */
.post-card__thumb { border-radius: 0; height: 200px; }
.post-card h2, .post-card h3 { font-size: 24px; line-height: 1.25em; }
.post-card__body { padding: 22px 0 0; }


/* Tablet band fixes (~640-1100px) */
@media (max-width: 1100px) {
  .split { grid-template-columns: 1fr; }
  .split > img { width: 100%; }
}
@media (max-width: 1100px) and (min-width: 641px) {
  .icon-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .icon-list-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-head h2 { max-width: none; }
}


/* ---------- Page hero: centered, per live template ---------- */
.page-hero {
  text-align: center;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: clamp(96px, 11vw, 150px) 0;
}
.page-hero h1 { font-size: clamp(38px, 6vw, 68px); letter-spacing: -0.02em; }
.page-hero .arabic { font-size: 19px; margin-bottom: 14px; }
.page-hero > .container > p:not(.arabic) {
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  max-width: 52ch;
  margin: 18px auto 0;
}
.page-hero .breadcrumb { display: none; }

/* ---------- Single package detail ---------- */
.pkg-detail { display: grid; grid-template-columns: 0.8fr 1.25fr; gap: 46px; align-items: start; }
.pkg-detail__media img { width: 100%; height: 545px; object-fit: cover; display: block; }
@media (max-width: 1024px) { .pkg-detail__media img { height: 340px; } }

.room-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0 0 34px; }
.room-option {
  border: none;
  border-radius: 0;
  background: #f6f5f3;
  padding: 18px 12px 24px;
  transform: none !important;
}
.room-option span {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23,23,23,0.14);
  margin: 0 12px 14px;
}
.room-option strong { font-family: var(--font-heading); font-size: 30px; font-weight: 400; }
.room-option.is-selected {
  background: #6b5b45;
  color: var(--color-white);
  padding: 12px 12px 30px;
}
.room-option.is-selected span { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.35); }

.pkg-intro { display: grid; grid-template-columns: 1.5fr 0.85fr; gap: 34px; align-items: start; margin-bottom: 34px; }
.pkg-intro > p { margin: 0; font-size: 15.5px; line-height: 1.75em; }
.pkg-intro > p::first-letter {
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 0.85;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--color-text);
}
.pkg-intro .package-card__meta { margin: 0; }

/* Tabs as folder tabs over a bordered panel */
.pkg-tabs .tabs-nav {
  display: flex;
  gap: 0;
  border: none;
  margin: 0;
}
.pkg-tabs .tabs-nav button {
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  padding: 14px 22px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: -1px;
}
.pkg-tabs .tabs-nav button.is-active {
  background: var(--color-white);
  border-color: rgba(23,23,23,0.14);
  border-bottom-color: var(--color-white);
  color: var(--color-text);
}
.pkg-tabs__body { border: 1px solid rgba(23,23,23,0.14); padding: 26px; }
.pkg-tabs .tab-panel { display: none; }
.pkg-tabs .tab-panel.is-active { display: block; }
.pkg-tabs .tab-media { width: 42%; float: left; margin: 0 24px 16px 0; }
.pkg-tabs .tab-panel p { font-size: 15px; }

/* Book Your Seat form */
.booking-form { max-width: 780px; }
.booking-form h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 26px; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.booking-form .form-field { margin-bottom: 22px; }
.booking-form label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-text);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(23,23,23,0.55);
  border-radius: 0;
  padding: 15px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-white);
}
.booking-form textarea { min-height: 175px; resize: vertical; }
.booking-form .btn { border-radius: 100px; padding: 15px 30px; }

@media (max-width: 1024px) {
  .pkg-detail { grid-template-columns: 1fr; }
  .pkg-intro { grid-template-columns: 1fr; }
  .booking-form .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 640px) {
  .room-options { grid-template-columns: 1fr; }
  .pkg-tabs .tab-media { width: 100%; float: none; margin: 0 0 16px; }
}


/* Room tiles: readable prices, raised selected tile (reference) */
.room-options { align-items: start; }
.room-option, .room-option.is-selected { padding: 18px 12px 24px; }
.room-option strong { color: var(--color-text); }
.room-option.is-selected { margin-top: -14px; padding-bottom: 32px; }
.room-option.is-selected strong { color: var(--color-white); }


/* Scope nav flex to the top level so dropdowns stack (and don't cause overflow).
   Must stay desktop-only: unscoped, this sits ~1000 lines after the mobile
   drawer rules and won the cascade at equal specificity, re-centering the
   drawer's links and forcing a 34px gap between them. */
@media (min-width: 901px) {
  .main-nav > ul { display: flex; align-items: center; gap: 34px; }
}
.main-nav .dropdown-menu {
  display: block;
  flex-direction: column;
  width: auto;
  gap: 0;
}
@media (max-width: 900px) {
  .main-nav .dropdown-menu { display: none; }
  .has-dropdown.is-open .dropdown-menu { display: block; }
}


/* About: pull quote + author */
.about-quote { margin: 40px 0 0; }
.about-quote p {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.55em;
  font-weight: 400;
  margin: 0 0 26px;
}
.about-quote .author { display: flex; align-items: center; gap: 16px; }
.about-quote .author img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.about-quote .author strong {
  display: block;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-quote .author span { font-size: 15px; color: var(--color-text-muted); }
.about-lead::first-letter {
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 0.86;
  float: left;
  padding: 6px 12px 0 0;
}


/* Contact form: square outlined fields, uppercase labels, gold pill submit */
form[data-static-form] .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
form[data-static-form] .form-field--full { grid-column: 1 / -1; }
form[data-static-form] label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}
form[data-static-form] label .required { display: none; }
form[data-static-form] input,
form[data-static-form] select,
form[data-static-form] textarea {
  width: 100%;
  border: 1px solid rgba(23,23,23,0.55);
  border-radius: 0;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-white);
  color: var(--color-text);
}
form[data-static-form] textarea { min-height: 220px; resize: vertical; }
form[data-static-form] .btn {
  width: auto;
  border-radius: 100px;
  padding: 16px 30px;
  margin-top: 26px;
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  form[data-static-form] .form-grid { grid-template-columns: 1fr; }
}


/* Keep the contact decorative graphic inside its box */
.contact-visual { overflow: hidden; }
.contact-visual__deco { right: 0; max-width: 100%; max-height: 100%; object-fit: contain; }


/* Features page: 3-up icon rows */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 54px 48px; }
.feature-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: start;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.feature-card img { width: 56px; height: 56px; object-fit: contain; }
.feature-card h5 { font-size: 22px; margin: 0 0 8px; }
.feature-card p { margin: 0; font-size: 14.5px; color: var(--color-text-muted); line-height: 1.6em; }
@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }


/* News archive cards: image + serif headline only */
.post-grid { gap: 46px 34px; }
.post-card__body { padding: 20px 0 0; }
.post-card h2 { font-size: 25px; line-height: 1.3em; margin: 0; }


/* Post page: article + package sidebar */
.post-layout { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(0, 0.62fr); gap: 54px; align-items: start; }
.post-content { max-width: none; }
.post-content img { width: 100%; margin: 30px 0; display: block; }
.post-content p { font-size: 15.5px; line-height: 1.8em; }
.post-lead::first-letter {
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 0.86;
  float: left;
  padding: 6px 10px 0 0;
}
.post-sidebar { position: sticky; top: 104px; display: grid; gap: 26px; }
.post-sidebar .package-card { border-radius: 4px; border: 1px solid rgba(23,23,23,0.10); box-shadow: none; }
.post-sidebar .package-card:hover { transform: none; }
.post-sidebar .package-card__media img { height: 175px; }
.post-sidebar .package-card__body { padding: 22px 20px 24px; }
.post-sidebar .package-card__body h5 { font-size: 21px; }
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) { .post-sidebar { grid-template-columns: 1fr; } }


/* ==========================================================================
   Platform additions — pagination, search, itinerary, badges, team, states
   Added for the dynamic Hajj/Umrah + Blog platform, using the same tokens.
   ========================================================================== */

/* ---------- Pagination ---------- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: clamp(40px, 5vw, 64px); flex-wrap: wrap; }
.pagination__link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 14px;
  border-radius: 100px;
  border: 1px solid rgba(23,23,23,0.14);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  background: var(--color-white);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.pagination__link:hover { border-color: var(--color-primary); color: var(--color-primary-text); }
.pagination__link.is-active { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }
.pagination__link.is-disabled { opacity: 0.35; pointer-events: none; }
.pagination__ellipsis { color: var(--color-text-muted); padding: 0 4px; }

/* ---------- Listing search / filter bar ---------- */
.search-bar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.search-bar input[type="text"],
.search-bar input[type="search"] {
  flex: 1;
  min-width: 200px;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid rgba(23,23,23,0.15);
  border-radius: 8px;
  background: var(--color-white);
}
.search-bar input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(168,133,78,0.16); }
.search-bar .btn { flex-shrink: 0; }

/* ---------- Package type badge ---------- */
.type-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--color-text);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ---------- Availability badge ---------- */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  background: var(--color-cream);
  border-radius: 100px;
  padding: 8px 16px;
  margin: 0 0 20px;
}
.availability-badge i { color: var(--color-primary-text); }

/* ---------- Itinerary ---------- */
.itinerary-list { display: flex; flex-direction: column; margin: 0; }
.itinerary-list__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23,23,23,0.08);
}
.itinerary-list__row:last-child { border-bottom: none; }
.itinerary-list__day {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-primary-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.itinerary-list__desc { margin: 0; color: var(--color-text-muted); font-size: 15px; }
@media (max-width: 640px) {
  .itinerary-list__row { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Inclusions / exclusions ---------- */
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.inc-list, .exc-list { display: flex; flex-direction: column; gap: 14px; margin: 0; }
.inc-list li, .exc-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--color-text-muted); }
.inc-list i { color: #2f7d4f; margin-top: 3px; }
.exc-list i { color: #b0483f; margin-top: 3px; }
@media (max-width: 640px) { .inc-exc-grid { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-card__photo { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px; height: 280px; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h5 { font-size: 19px; margin-bottom: 4px; }
.team-card span { font-size: 14px; color: var(--color-primary-text); }
.team-card__bio { margin: 10px 0 0; font-size: 13.5px; color: var(--color-text-muted); line-height: 1.6em; }

/* ---------- Contact info extras ---------- */
.contact-info-list__alt { display: block; margin-top: 3px; font-size: 14px; color: var(--color-text-muted); }
.contact-info-list__alt a { color: var(--color-primary-text); }
.contact-info-list__urgent {
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-left: -18px;
  margin-right: -18px;
}

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; }
.faq-group { margin-bottom: 40px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
}
.faq-group__head i { color: var(--color-primary); font-size: 17px; }
.faq-group__head h2 { font-size: clamp(21px, 2.4vw, 26px); margin: 0; }
.faq-group__count {
  margin-left: auto; font-size: 13px; font-weight: 600;
  color: var(--color-text-muted); background: var(--color-surface);
  padding: 3px 11px; border-radius: 100px;
}
.faq-item { border-bottom: var(--hairline); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 2px; cursor: pointer; list-style: none;
  font-size: 17px; font-weight: 500; line-height: 1.5em;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-primary-text); }
.faq-item summary i {
  flex-shrink: 0; font-size: 13px; color: var(--color-primary);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary { color: var(--color-primary-text); }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item__answer { padding: 0 2px 22px; color: var(--color-text-muted); line-height: 1.75em; max-width: 68ch; }
.faq-aside { position: sticky; top: 100px; }
.faq-help {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
}
.faq-help > i { font-size: 26px; color: var(--color-primary); }
.faq-help h3 { font-size: 20px; margin: 14px 0 8px; }
.faq-help p { font-size: 14.5px; color: var(--color-text-muted); margin-bottom: 20px; line-height: 1.65em; }
.faq-help .btn { margin-bottom: 10px; }
.faq-help .btn:last-child { margin-bottom: 0; }
.empty-note { color: var(--color-text-muted); text-align: center; padding: 40px 0; }
@media (max-width: 940px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-aside { position: static; }
}

/* ---------- Policy pages ---------- */
.page-hero--compact { padding-top: 130px; padding-bottom: 60px; }
.policy-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 44px; align-items: start; }
.policy-body { max-width: 72ch; }
.policy-body h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 34px 0 12px; }
.policy-body h3 { font-size: 19px; margin: 26px 0 10px; }
.policy-body h2:first-child, .policy-body h3:first-child { margin-top: 0; }
.policy-body p, .policy-body li { color: var(--color-text-muted); line-height: 1.8em; }
.policy-body ul, .policy-body ol { padding-left: 1.3em; margin: 0 0 18px; }
.policy-body li { margin-bottom: 8px; }
.policy-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 18px; }
.policy-nav {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.policy-nav h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin: 0 0 14px; }
.policy-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.policy-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 14.5px; color: var(--color-text);
}
.policy-nav a i { width: 16px; color: var(--color-primary); font-size: 13px; }
.policy-nav a:hover { background: var(--color-white); }
.policy-nav a.is-active { background: var(--color-white); color: var(--color-primary-text); font-weight: 600; }
.policy-help { background: var(--color-cream); border-radius: var(--radius); padding: 22px; }
.policy-help p { font-size: 14px; color: var(--color-text-muted); margin: 0 0 14px; line-height: 1.6em; }
@media (max-width: 940px) {
  .policy-layout { grid-template-columns: 1fr; gap: 32px; }
  .policy-aside { position: static; }
}

/* ---------- Trust: stats + credentials ---------- */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.trust-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1;
  color: var(--color-primary-text);
}
.trust-stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.credentials-note { max-width: 68ch; margin: -8px 0 30px; color: var(--color-text-muted); }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.credential-card {
  background: var(--color-white);
  border: var(--hairline);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.credential-card > i { font-size: 18px; color: var(--color-primary); }
.credential-card h5 { font-size: 16px; margin: 14px 0 6px; }
.credential-card__no {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}
.credential-card span { font-size: 13px; color: var(--color-text-muted); line-height: 1.5em; display: block; }
@media (max-width: 640px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonial grid (non-slider, About page) ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- Empty state (before real content is added) ---------- */
.empty-state {
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 24px;
  color: var(--color-text-muted);
}
.empty-state i { font-size: 34px; color: var(--color-accent); margin-bottom: 18px; display: block; }
.empty-state h3 { margin-bottom: 8px; }

/* The floating WhatsApp bubble was removed: it collided with the Tawk.to chat
   launcher in the same corner, leaving two overlapping buttons on phones. Tawk
   is now the only floating element; WhatsApp stays reachable via the header CTA,
   the CTA bands, and the per-package/per-ticket enquiry buttons. */

/* ---------- WhatsApp CTA band (package listing pages) ---------- */
.whatsapp-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #E9F7EF;
  border: var(--hairline);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.whatsapp-cta-band__inner h2 { font-size: 24px; margin-bottom: 6px; }
.whatsapp-cta-band__inner p { margin: 0; color: var(--color-text-muted); }
.whatsapp-cta-band__btn { background: #25D366; border-color: #25D366; }
.whatsapp-cta-band__btn:hover { background: #1EBE57; border-color: #1EBE57; }
@media (max-width: 700px) {
  .whatsapp-cta-band__inner { flex-direction: column; text-align: center; padding: 28px 24px; }
}
