/* ==========================================================================
   Karvan e Hanfi — Homepage Styles
   Author: Addensoft
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --green-dark:  #123524;   /* header/footer dark green */
  --green-deep:  #133524;   /* darker sections */
  --green:       #1c4a33;
  --gold:        #FFC433;   /* primary gold */
  --gold-dark:   #B8860B;   /* readable gold: text-on-light + hover state */
  --gold-light:  #d9b862;
  --ink:         #26312b;   /* headings */
  --text:        #5c6a62;   /* body text */
  --muted:       #8a948e;
  --bg:          #ffffff;
  --bg-soft:     #f7f8f6;
  --line:        #e7e9e6;
  --wrap:        1300px;    /* global wrapper (mini) */
  --radius:      12px;
  --shadow:      0 15px 40px rgba(18, 53, 36, .08);
  --shadow-sm:   0 8px 24px rgba(18, 53, 36, .07);
  --font-body:   'Poppins', sans-serif;
  --font-head:   'Syne', sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; overflow-x: clip; width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg.ic { width: 1em; height: 1em; fill: currentColor; stroke: none; flex-shrink: 0; }
/* arrow-style icons drawn with strokes */
.hero__btn svg.ic, .btn svg.ic, .footer__newsletter svg.ic, .acard__link svg.ic { }
.btn svg.ic path[d^="M5 12"], .hero__btn svg.ic path { }

/* ---------- Layout Wrapper ---------- */
.wrapper {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: .25s ease;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn--gold   { background: var(--gold); color: #1a1a1a; width: fit-content; }
.btn--gold:hover { background: var(--gold-dark); color: #fff; }
.btn--green  { background: var(--green-dark); color: #fff; }
.btn--green:hover { background: var(--green); }
.btn--outline {
  background: transparent; color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn--outline:hover { background: var(--green-dark); color: #fff; }
.btn--outline-light { color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: var(--gold); border-color: var(--gold); color: #1a1a1a; }
.btn--sm { padding: 10px 18px; font-size: 13px; }

/* ---------- Section Titles ---------- */
.section { padding: 70px 0; }
.section__title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}
.section__title--light { color: #fff; text-align: left; }
.section__divider {
  height: 34px;
  margin: 10px 0 42px;
  background: url('../images/title-divider.png') no-repeat center center;
  background-size: auto 34px;   /* keep ornament crisp, height-driven */
}
.section__divider span { display: none; }   /* old drawn dots no longer used */
/* left-aligned variant (e.g. Top Destinations on dark bg) */
.section__divider--gold { background-position: left center; margin: 10px 0 24px; }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.16,.8,.24,1), transform .8s cubic-bezier(.16,.8,.24,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal="up"]    { transform: translateY(50px); }
[data-reveal="down"]  { transform: translateY(-42px); }
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="zoom"]  { transform: scale(.9); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--green-deep);
  color: #dfe6e1;
  font-size: 13px;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar__contact { display: flex; gap: 26px; }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; color: #dfe6e1; transition: .2s; }
.topbar__link:hover { color: var(--gold-light); }
.topbar__link .ic { color: var(--gold); font-size: 14px; }
.topbar__social { display: flex; align-items: center; gap: 12px; }
.topbar__social a { display: inline-flex; color: #dfe6e1; transition: .2s; }
.topbar__social a:hover { color: var(--gold-light); }
.topbar__social .ic { font-size: 15px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  background: #fff;
  position: sticky; top: 0; z-index: 60;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.10); }
.header__inner { display: flex; align-items: center; height: 100px; gap: 14px; transition: height .3s ease; }
.header.is-scrolled .header__inner { height: 74px; }
.header.is-scrolled .logo__mark { width: 46px; height: 46px; }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark { width: 56px; height: 56px; fill: var(--gold); flex-shrink: 0; transition: width .3s ease, height .3s ease; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.logo__text strong { font-family: var(--font-head); font-size: 19px; color: var(--green-dark); letter-spacing: .5px; }
.logo__text small { font-size: 12px; color: var(--muted); letter-spacing: .3px; }
.logo--light .logo__text strong { color: #fff; }
.logo--light .logo__text small { color: #b9c4bd; }
/* footer column is narrower than the nowrap logo text — let it size down and wrap there */
.footer .logo__text { white-space: normal; }
.footer .logo__text strong { font-size: 17px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  font-size: 16px; font-weight: 500; color: #33403a; padding: 8px 12px; position: relative; transition: .2s; white-space: nowrap;
}
.nav__link:hover { color: var(--gold-dark); }
.nav__link.is-active { color: var(--gold-dark); }
.nav__link.is-active::after {
  content: ""; position: absolute; bottom: 2px; left: 10px; right: 10px; height: 2px; background: var(--gold);
}
.header__cta { margin-left: 15px; }

.header__call {
  display: flex; align-items: center; gap: 8px;
  margin-left: 10px; padding: 6px 14px 6px 6px;
  border-radius: 30px;
  background: var(--gold);
  color: #1a1a1a; transition: background .2s, color .2s;
  flex-shrink: 0; white-space: nowrap;
}
.header__call:hover { background: var(--gold-dark); color: #fff; }
.header__call-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,.14);
  display: flex; align-items: center; justify-content: center;
}
.header__call:hover .header__call-icon { background: rgba(255,255,255,.22); }
.header__call-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.header__call-text { display: flex; flex-direction: column; line-height: 1.25; white-space: nowrap; }
.header__call-text small { font-size: 10px; color: currentColor; opacity: .75; font-weight: 500; }
.header__call-text strong { font-size: 13px; font-weight: 700; white-space: nowrap; letter-spacing: .2px; color: currentColor; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 2px; background: var(--green-dark); transition: .3s; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background-color: #16362a;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
}
/* each slide carries its own photo (inline style); the gradient overlay stays identical to the old banner */
.hero__slide {
  position: absolute; inset: 0;
  background: #16362a center/cover no-repeat;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .9s ease, visibility 0s linear .9s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; transition: opacity .9s ease, visibility 0s; z-index: 1; }
.hero__slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,26,18,.92) 0%, rgba(8,26,18,.78) 28%, rgba(8,26,18,.45) 55%, rgba(8,26,18,.12) 78%, rgba(8,26,18,0) 100%);
}
.hero__inner { width: 100%; position: relative; z-index: 1; }
.hero__slide .hero__content { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.hero__slide.is-active .hero__content { opacity: 1; transform: none; transition-delay: .35s; }

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: .25s;
}
.hero__arrow:hover { background: var(--gold); border-color: var(--gold); color: #1a1a1a; }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }
.hero__arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* bottom offset clears the features bar, which overlaps the hero's bottom edge */
.hero__dots { position: absolute; bottom: 84px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 2; }
.hero__dot { width: 10px; height: 10px; border-radius: 5px; background: rgba(255,255,255,.45); border: none; padding: 0; cursor: pointer; transition: .25s; }
.hero__dot.is-active { background: var(--gold); width: 26px; }

@media (prefers-reduced-motion: reduce) {
  .hero__slide, .hero__slide .hero__content { transition: none; }
}
.hero__content { max-width: 560px; padding: 40px 0 90px; }
.hero__title {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero__title span { color: var(--gold-light); }
.hero__text { font-size: 16px; color: #e6ebe7; margin-bottom: 28px; font-weight: 300; }
.hero__btn { padding: 14px 30px; font-size: 15px; }

/* small overlapping Kaaba image card at bottom-left */
.hero__card {
  position: absolute;
  left: max(25px, calc((100% - var(--wrap)) / 2 + 25px));
  bottom: -55px;
  width: 250px; height: 160px;
  border-radius: 12px;
  border: 5px solid #fff;
  background: #234 url('../images/hero-kaaba.jpg') center/cover no-repeat;
  box-shadow: var(--shadow);
  z-index: 5;
}

/* ==========================================================================
   FEATURES BAR
   ========================================================================== */
.features { position: relative; margin-top: -60px; z-index: 10; }
.features__bar {
  background: #FFC433;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 34px 20px;
}
.feature { text-align: center; padding: 0 18px; position: relative; }
.feature:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 12%; height: 76%; width: 1px; background: rgba(0,0,0,.14);
}
.feature__icon {
  width: 78px; height: 78px; margin: 0 auto 14px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  background-image: url('../images/feature-icons.png');
  background-repeat: no-repeat;
  background-size: 500% 100%;      /* 5 icons across, each tile fills the circle exactly */
  background-position-y: 50%;
}
/* map each feature to its slice of the sprite (tile i of 5 → i/4 * 100%) */
.feature:nth-child(1) .feature__icon { background-position-x: 0%; }   /* Kaaba   */
.feature:nth-child(2) .feature__icon { background-position-x: 25%; }  /* Checklist */
.feature:nth-child(3) .feature__icon { background-position-x: 50%; }  /* Hand+coin */
.feature:nth-child(4) .feature__icon { background-position-x: 75%; }  /* Headset  */
.feature:nth-child(5) .feature__icon { background-position-x: 100%; } /* Group    */
.feature__icon svg { display: none; }  /* hide fallback SVGs; sprite is used */
.feature h4 { font-size: 15px; color: #111; margin-bottom: 6px; font-weight: 700; }
.feature p { font-size: 12.5px; color: #2a2a2a; line-height: 1.5; }

/* ==========================================================================
   PROMO BLOCKS (Best Hajj / Best Umrah)
   ========================================================================== */
.promo { padding: 100px 0 40px; }
.promo__block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.promo__block + .promo__block { margin-top: 100px; }
.promo__block--reverse .promo__img { order: 2; }
.promo__block--reverse .promo__content { order: 1; }

.promo__img img {
  width: 100%; display: block;
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
}

.promo__title {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: #1c2b6b;
  margin-bottom: 20px;
  line-height: 1.2;
}
.promo__content p { color: var(--text); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.promo__content p:last-child { margin-bottom: 0; }
.promo__content p strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   POPULAR PACKAGES
   ========================================================================== */
.packages { padding-top: 100px; }
.packages__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.packages__intro { padding-right: 10px; }
.packages__intro p { margin-bottom: 26px; color: var(--text); }

.pkg-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
}
.pkg-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.pkg-card__img {
  height: 160px; background: #d9d4c8 center/cover no-repeat; position: relative;
}
.pkg-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--green-dark); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  padding: 5px 12px; border-radius: 5px;
}
.pkg-card__badge--gold { background: var(--gold); color: #1a1a1a; }
.pkg-card__body { padding: 18px 18px 20px; }
.pkg-card__body h3 { font-size: 17px; color: var(--ink); margin-bottom: 12px; font-weight: 600; }
.pkg-card__meta { display: flex; gap: 18px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.pkg-card__meta li { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); }
.pkg-card__meta .ic { color: var(--gold-dark); font-size: 15px; }
.pkg-card__foot { display: flex; justify-content: space-between; align-items: center; }
.pkg-card__price small { display: block; font-size: 11px; color: var(--muted); }
.pkg-card__price strong { font-size: 18px; color: var(--gold-dark); font-family: var(--font-head); }

/* ==========================================================================
   TOP DESTINATIONS
   ========================================================================== */
.destinations {
  background: url('../images/destinations-bg.png') center/cover;
  background-blend-mode: multiply;
  position: relative;
}
.destinations::before { content: ""; position: absolute; inset: 0;}
.destinations__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center;
  padding: 60px 25px;
}
.destinations__img {
  height: 300px; border-radius: 12px; background: #2a4a3a center/cover no-repeat;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
}
.destinations__content p { color: #cdd8d1; margin-bottom: 30px; max-width: 420px; }

.dest-icons { display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 34px; }
.dest-icon { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12.5px; color: #e6ebe7; transition: .2s; }
.dest-icon__circle {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold-dark);
  transition: .25s;
}
.dest-icon__circle svg { width: 60px; height: 60px; }
.dest-icon:hover .dest-icon__circle { background: #fff; color: #fff; border-color: var(--gold); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.why__item {
  text-align: center;
  padding: 0 22px;
  position: relative;
}
/* thin vertical dividers between columns */
.why__item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 8%; height: 84%;
  width: 1px; background: var(--line);
}
.why__icon {
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.why__icon img{
      height: 80px;
    margin: 0 auto;
}
.why__icon svg { width: 65px; height: 65px; fill-rule: evenodd; }
.why__item h4 { font-size: 15px; color: var(--ink); margin-bottom: 8px; font-weight: 600; }
.why__item p { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ==========================================================================
   GOVERNMENT RECOGNITION / CERTIFICATE
   ========================================================================== */
.certify { background: var(--bg-soft); }
.certify__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center;
}
.certify__content .section__title { text-align: left; }
.certify__content p { margin: 4px 0 22px; max-width: 460px; color: var(--text); }
.certify__points { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.certify__points li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.certify__points .ic {
  color: #fff; background: var(--green-dark); border-radius: 50%;
  padding: 5px; width: 22px; height: 22px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}

.certify__gallery {
  display: flex; justify-content: center; align-items: flex-start; gap: 26px;
  padding: 30px 10px;
}
.certify__card {
  position: relative;
  width: 230px; flex-shrink: 0;
  background: #fff; border: none; padding: 8px; border-radius: 10px;
  box-shadow: 0 18px 38px rgba(18,53,36,.18);
  cursor: pointer; transition: transform .3s ease, box-shadow .3s ease;
  transform: rotate(-4deg);
}
.certify__card--offset { transform: rotate(3deg); margin-top: 34px; }
.certify__card:hover { box-shadow: 0 22px 46px rgba(18,53,36,.26); }
.certify__card:nth-child(1):hover { transform: rotate(-4deg) translateY(-6px); }
.certify__card--offset:hover { transform: rotate(3deg) translateY(-6px); }
.certify__card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 4px; display: block; background: var(--bg-soft);
}
/* obvious "add your image" placeholder shown until a real certificate photo is dropped in */
.certify__placeholder {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  position: absolute; inset: 8px;
  background: var(--bg-soft); border: 2px dashed var(--line); border-radius: 4px;
  color: var(--muted); font-size: 12px; text-align: center; padding: 16px;
}
.certify__placeholder .ic { width: 30px; height: 30px; color: var(--gold-dark); }
.certify__card--empty img { display: none; }
.certify__card--empty .certify__placeholder { display: flex; }

/* ==========================================================================
   BOOK YOUR JOURNEY
   ========================================================================== */
.book {
  /* full-width green band; drop your gold-ornament artwork in as book-bg */
  background: var(--green-dark) url('../images/book-bg.png') center/cover no-repeat;
  padding: 52px 0 58px;
  text-align: center;
}
#book .wrapper{
  max-width: 1050px;
}
.book__title { font-family: var(--font-head); font-size: 30px; font-weight: 600; color: #fff; }
.book__subtitle { color: #cdd8d1; margin: 8px 0 28px; font-size: 14.5px; }

/* solid white form card */
.book__form {
  background: #fff;
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 20px;
  align-items: end;
  text-align: left;
}
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 9px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: 13.5px; color: var(--ink);
  transition: border-color .2s;
}
.field input::placeholder { color: #9aa39d; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c19a3e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); }
.book__submit { justify-content: center; height: 46px; white-space: nowrap; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { background: #fff; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tcard {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  position: relative;
}
.tcard__quote {
  font-family: var(--font-head); font-size: 54px; color: var(--gold-dark);
  line-height: .5; position: absolute; top: 26px; left: 22px; opacity: .35;
}
.tcard p { position: relative; z-index: 1; padding-top: 18px; font-size: 14px; color: var(--text); margin-bottom: 22px; }
.tcard__author { display: flex; align-items: center; gap: 13px; }
.tcard__avatar {
  width: 48px; height: 48px; border-radius: 50%; background: #cbd3cd center/cover no-repeat; flex-shrink: 0;
}
.tcard__author strong { display: block; font-size: 14.5px; color: var(--ink); }
.tcard__author small { font-size: 12px; color: var(--muted); }
.stars { color: var(--gold-dark); font-size: 13px; letter-spacing: 1px; margin-top: 2px; }

.dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #d3dad4; cursor: pointer; transition: .2s; }
.dot.is-active { background: var(--gold); width: 22px; border-radius: 5px; }

/* ==========================================================================
   FAQ + NEED HELP
   ========================================================================== */
.faq-section__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; border: 1px solid var(--line);
    border-radius: var(--radius);}
.faq { background: #fff; padding: 28px; }
.faq__title { font-family: var(--font-head); font-size: 22px; color: var(--ink); font-weight: 700;  }

/* small left-aligned dash-dot divider, distinct from the big section ornament */
.faq__divider { display: flex; align-items: center; gap: 6px; margin: 10px 0 22px; }
.faq__divider span {
  width: 46px; height: 2px; background: var(--gold); position: relative;
}
.faq__divider span::before,
.faq__divider span::after {
  content: ""; position: absolute; top: 50%; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%; transform: translateY(-50%) rotate(45deg);
}
.faq__divider span::before { left: -10px; }
.faq__divider span::after  { right: -10px; }

.acc-item { border: 1px solid var(--line); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.acc-item__head {
  width: 100%; text-align: left; background: #fff; border: none; cursor: pointer;
  padding: 5px 16px; font-size: 13.5px; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit;
}
.acc-item__sign { color: var(--gold-dark); font-size: 18px; font-weight: 400; transition: .25s; flex-shrink: 0; }
.acc-item.is-open .acc-item__sign { transform: rotate(45deg); }
.acc-item__body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-item__body p { padding: 4px 16px 16px; font-size: 13px; color: var(--muted); }
.acc-item.is-open .acc-item__body { max-height: 200px; }
.faq__btn { margin-top: 14px; }
.faq__btn .ic { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Need Help card: split info / photo panel ---------- */
.need-help-wrap { position: relative; padding-top: 28px; }
.need-help {
  border-radius: var(--radius); overflow: hidden; position: relative;
  min-height: 300px; display: flex;
  box-shadow: var(--shadow-sm);
}
.need-help__info {
  background: var(--green-dark);
  flex: 1 1 56%;
  padding: 36px 32px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.need-help__photo {
  flex: 1 1 44%;
  background: #cbd3cd center/cover no-repeat;
}
.need-help h3 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.need-help p { color: #cdd8d1; margin-bottom: 20px; font-size: 13.5px; }
.need-help__phone { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 600; margin-bottom: 22px; }
.need-help__phone .ic { color: var(--gold); font-size: 22px; }
.need-help .btn { align-self: flex-start; }
.need-help .btn .ic { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- 3D book graphic overlapping the Need Help card ---------- */
.travel-book {
  position: absolute;
  right: 6%;
  bottom: -22px;
  width: 92px;
  height: 128px;
  z-index: 4;
}
.travel-book__pages {
  position: absolute;
  inset: 5px -5px -5px 9px;
  background: linear-gradient(135deg, #fdfdfb, #e7e6e0);
  border-radius: 2px 5px 5px 2px;
  box-shadow: 0 16px 28px rgba(0,0,0,.30);
}
.travel-book__cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #1c4a33 0%, #0d2417 100%);
  border: 1px solid rgba(193,154,62,.6);
  border-radius: 3px 7px 7px 3px;
  transform: rotate(-5deg);
  transform-origin: bottom left;
  box-shadow: -2px 0 0 rgba(255,255,255,.08) inset, 0 16px 26px rgba(0,0,0,.32);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 4px; padding: 10px 8px;
}
.travel-book__kicker {
  font-size: 8px; letter-spacing: .6px; text-transform: uppercase; color: var(--gold-light);
}
.travel-book__title {
  font-family: var(--font-head); font-size: 12px; font-weight: 700; color: #fff; line-height: 1.2;
}
.travel-book__subtitle { font-size: 9px; color: #cdd8d1; }

/* ==========================================================================
   ARTICLES
   ========================================================================== */
.articles__grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.1fr; gap: 22px; }
.acard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .3s; }
.acard:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.acard__img { height: 130px; background: #d9d4c8 center/cover no-repeat; position: relative; }
.acard__tag {
  position: absolute; bottom: 10px; left: 10px; background: var(--gold); color: #1a1a1a;
  font-size: 10.5px; font-weight: 600; padding: 3px 10px; border-radius: 4px; text-transform: capitalize;
}
.acard__body { padding: 15px 16px 18px; }
.acard__date { font-size: 11.5px; color: var(--gold-dark); font-weight: 500; }
.acard__body h4 { font-size: 14.5px; color: var(--ink); margin: 6px 0 12px; line-height: 1.4; font-weight: 600; }
.acard__link { font-size: 13px; color: var(--green-dark); font-weight: 500; transition: .2s; }
.acard__link:hover { color: var(--gold-dark); }

.download-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; justify-content: center;
}
.download-card h4 { font-family: var(--font-head); font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.download-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.download-card .btn { align-self: flex-start; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.gallery__item {
  height: 175px; width: 100%; border-radius: 10px; background: #cbd3cd center/cover no-repeat;
  position: relative; display: flex; align-items: center; justify-content: center;
  transition: .3s;
  border: none; padding: 0; margin: 0; font: inherit; cursor: pointer;
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.gallery__btn { position: relative; z-index: 2; pointer-events: none;     margin: 0 auto;
    display: block;
    margin-top: 20px;
    width: fit-content;}
.gallery__item:has(.gallery__btn)::before {
  content: ""; position: absolute; inset: 0; background: rgba(15,40,28,.45); border-radius: 10px;
}

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners__row { display: flex; justify-content: center; flex-wrap: wrap; gap: 45px; align-items: center; }
.partners__logo {
  width: 130px; height: 115px; background: center/contain no-repeat; opacity: .7;
  transition: .3s;
  border-radius: 8px;
}
.partners__logo:hover { opacity: 1; filter: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--green-deep); color: #b9c4bd; padding-top: 55px; font-size: 13.5px; }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr 1.3fr; gap: 35px; padding-bottom: 45px;
}
.footer__about .logo { margin-bottom: 16px; }
.footer__about p { color: #9fb0a6; margin-bottom: 18px; max-width: 280px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #cdd8d1; transition: .25s;
}
.footer__social a:hover { background: var(--gold-dark); color: #fff; }
.footer__social .ic { font-size: 15px; }

.footer__col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; font-weight: 600; font-family: var(--font-head); }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { transition: .2s; }
.footer__col ul li a:hover { color: var(--gold); padding-left: 3px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; line-height: 1.5; }
.footer__contact .ic { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

.footer__newsletter { display: flex; margin-top: 12px; }
.footer__newsletter input {
  flex: 1; padding: 11px 14px; border: none; border-radius: 7px 0 0 7px; font-family: inherit; font-size: 13px;
}
.footer__newsletter input:focus { outline: none; }
.footer__newsletter button {
  background: var(--gold); border: none; color: #1a1a1a; padding: 0 16px; border-radius: 0 7px 7px 0; cursor: pointer; transition: .2s;
}
.footer__newsletter button:hover { background: var(--gold-dark); color: #fff; }
.footer__newsletter .ic { font-size: 16px; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: #8fa096; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--gold); }

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.45); animation: wa-pulse 2s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   PAGE BANNER (inner pages)
   ========================================================================== */
.page-banner {
  position: relative;
  background: linear-gradient(90deg, rgba(8,26,18,.88) 0%, rgba(8,26,18,.72) 100%), url('../images/hero-bg.png') center 30% / cover no-repeat;
  background-color: #16362a;
  min-height: 260px;
  display: flex; align-items: center;
  color: #fff;
}
.page-banner__inner { text-align: center; width: 100%; }
.page-banner__title { font-family: var(--font-head); font-size: 42px; font-weight: 700; margin-bottom: 12px; }
.page-banner__crumbs { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: #d7e0d9; }
.page-banner__crumbs a { color: #d7e0d9; transition: .2s; }
.page-banner__crumbs a:hover { color: var(--gold-light); }
.page-banner__crumbs .ic { width: 12px; height: 12px; fill: none; stroke: var(--gold-light); stroke-width: 2.5; }
.page-banner__crumbs span { color: var(--gold-light); font-weight: 500; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: start; }
/* sticks below the shrunk sticky header while the longer right column scrolls */
.about-story__img { position: sticky; top: 94px; }
.about-story__img img {
  width: 100%; border-radius: 14px; box-shadow: var(--shadow);
  aspect-ratio: 4/3.2; object-fit: cover;
}
.about-story__badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--green-dark); color: #fff;
  border-radius: 12px; padding: 18px 22px;
  box-shadow: var(--shadow); text-align: center;
  border: 4px solid #fff;
}
.about-story__badge strong { display: block; font-family: var(--font-head); font-size: 26px; color: var(--gold-light); }
.about-story__badge span { font-size: 11.5px; color: #d7e0d9; letter-spacing: .3px; }

.about-story__content .section__title { text-align: left; }
.about-story__kicker {
  display: inline-block; color: var(--gold-dark); font-weight: 600; font-size: 13px;
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px;
}
.about-story__content p { color: var(--text); margin-bottom: 16px; }
.about-story__content p:last-of-type { margin-bottom: 26px; }

.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 6px; }
.about-mission__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.about-mission__icon {
  width: 50px; height: 50px; border-radius: 10px; background: #f4efe1; color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.about-mission__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.about-mission__card h4 { font-size: 17px; color: var(--ink); margin-bottom: 8px; font-weight: 600; }
.about-mission__card p { font-size: 13.5px; color: var(--muted); }

/* ---------- Team ---------- */
.team { background: var(--bg-soft); }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-align: center; transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.team-card__avatar {
  height: 210px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, #f4efe1 0%, #ece3cd 100%);
  color: var(--gold-dark); overflow: hidden; position: relative;
}
.team-card__avatar svg { width: 62px; height: 62px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-card__body { padding: 18px 16px 22px; }
.team-card__body h4 { font-size: 16px; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.team-card__role { display: block; font-size: 12.5px; color: var(--gold-dark); font-weight: 600; letter-spacing: .2px; }
.team-card__body span { font-size: 12px; color: var(--gold-dark); font-weight: 500; letter-spacing: .2px; }
.team-card__body p { font-size: 12.5px; color: var(--muted); margin-top: 10px; line-height: 1.55; }
.team-card__social { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.team-card__social a {
  width: 30px; height: 30px; border-radius: 50%; background: var(--bg-soft); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; transition: .2s;
}
.team-card__social a:hover { background: var(--green-dark); color: #fff; }
.team-card__social .ic { width: 14px; height: 14px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.contact-quick__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.contact-quick__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-quick__icon {
  width: 58px; height: 58px; border-radius: 50%; background: #f4efe1; color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.contact-quick__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-quick__card h4 { font-size: 16px; color: var(--ink); margin-bottom: 10px; font-weight: 600; }
.contact-quick__card p, .contact-quick__card a { font-size: 13.5px; color: var(--text); line-height: 1.6; }
.contact-quick__card a { display: block; transition: color .2s; }
.contact-quick__card a:hover { color: var(--gold-dark); }

.contact-main { background: var(--bg-soft); }
.contact-main__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }

.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-form-card h3 { font-family: var(--font-head); font-size: 23px; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
.contact-form-card > p { color: var(--muted); font-size: 13.5px; margin-bottom: 26px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .field { text-align: left; margin-top: 18px; }
.contact-form__row .field { margin-top: 0; }
.contact-form .field label { display: block; font-size: 12.5px; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: 13.5px; color: var(--ink); transition: border-color .2s;
}
.contact-form .field textarea { resize: vertical; min-height: 130px; }
.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus { outline: none; border-color: var(--gold); }
.contact-form__submit { margin-top: 24px; width: 100%; justify-content: center; }

.contact-offices { display: flex; flex-direction: column; gap: 26px; }
.office-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.office-card__head { background: var(--green-dark); color: #fff; padding: 16px 22px; display: flex; align-items: center; gap: 10px; }
.office-card__head svg { width: 20px; height: 20px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.office-card__head h4 { font-size: 15.5px; font-weight: 600; }
.office-card__body { padding: 8px 22px 4px; }
.office-card__row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.office-card__row:last-child { border-bottom: none; }
.office-card__row .ic { color: var(--gold-dark); width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.office-card__row div { font-size: 13px; line-height: 1.55; }
.office-card__row .label { display: block; color: var(--muted); font-size: 11px; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .4px; }
.office-card__row a { color: var(--text); }
.office-card__row a:hover { color: var(--gold-dark); }

.contact-map { margin-top: 0; }
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }
.contact-map__frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

/* ==========================================================================
   BLOG PAGE
   ========================================================================== */
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }

.blog-posts { display: flex; flex-direction: column; gap: 28px; }
.blog-post-card {
  display: grid; grid-template-columns: 260px 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.blog-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-post-card__img { background: #d9d4c8 center/cover no-repeat; position: relative; min-height: 210px; }
.blog-post-card__tag {
  position: absolute; top: 14px; left: 14px; background: var(--gold); color: #1a1a1a;
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 4px; text-transform: capitalize;
}
.blog-post-card__body { padding: 24px 26px; display: flex; flex-direction: column; }
.blog-post-card__meta { display: flex; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-post-card__meta span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.blog-post-card__meta .ic { color: var(--gold-dark); width: 14px; height: 14px; }
.blog-post-card__body h3 { font-family: var(--font-head); font-size: 19px; color: var(--ink); margin-bottom: 10px; line-height: 1.32; font-weight: 700; }
.blog-post-card__body h3 a { color: inherit; transition: color .2s; }
.blog-post-card__body h3 a:hover { color: var(--gold-dark); }
.blog-post-card__body p { font-size: 13.5px; color: var(--text); margin-bottom: 16px; flex: 1; line-height: 1.7; }
.blog-post-card__link { font-size: 13px; font-weight: 600; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s, color .2s; width: fit-content; }
.blog-post-card__link .ic { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.blog-post-card__link:hover { color: var(--gold-dark); gap: 10px; }

.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.blog-pagination a {
  min-width: 42px; height: 42px; padding: 0 8px; border-radius: 8px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 13.5px; color: var(--ink); transition: .2s;
}
.blog-pagination a.is-active,
.blog-pagination a:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.blog-pagination a.blog-pagination__next { width: auto; padding: 0 16px; gap: 6px; }

.blog-sidebar { display: flex; flex-direction: column; gap: 26px; }
.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.sidebar-card h4 { font-family: var(--font-head); font-size: 17px; color: var(--ink); margin-bottom: 20px; font-weight: 700; }

.sidebar-search { display: flex; }
.sidebar-search input { flex: 1; padding: 11px 14px; border: 1px solid var(--line); border-right: none; border-radius: 8px 0 0 8px; font-family: inherit; font-size: 13px; color: var(--ink); }
.sidebar-search input:focus { outline: none; border-color: var(--gold); }
.sidebar-search button { background: var(--gold); border: none; padding: 0 16px; border-radius: 0 8px 8px 0; cursor: pointer; color: #1a1a1a; transition: background .2s; }
.sidebar-search button:hover { background: var(--gold-dark); color: #fff; }
.sidebar-search .ic { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.sidebar-cats li { border-bottom: 1px dashed var(--line); }
.sidebar-cats li:last-child { border-bottom: none; }
.sidebar-cats a { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; font-size: 13.5px; color: var(--text); transition: color .2s; }
.sidebar-cats a:hover { color: var(--gold-dark); }
.sidebar-cats span { background: var(--bg-soft); color: var(--muted); font-size: 11px; padding: 2px 9px; border-radius: 10px; }

.sidebar-recent { display: flex; flex-direction: column; gap: 16px; }
.sidebar-recent__item { display: flex; gap: 12px; align-items: flex-start; }
.sidebar-recent__img { width: 62px; height: 62px; border-radius: 8px; background: #d9d4c8 center/cover no-repeat; flex-shrink: 0; }
.sidebar-recent__item h5 { font-size: 13px; color: var(--ink); font-weight: 600; line-height: 1.4; margin-bottom: 5px; }
.sidebar-recent__item h5 a { color: inherit; transition: color .2s; }
.sidebar-recent__item h5 a:hover { color: var(--gold-dark); }
.sidebar-recent__item small { font-size: 11px; color: var(--muted); }

.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tags a { font-size: 12px; padding: 7px 15px; border-radius: 20px; background: var(--bg-soft); color: var(--text); transition: .2s; }
.sidebar-tags a:hover { background: var(--gold); color: #1a1a1a; }

.sidebar-cta { background: var(--green-dark); color: #fff; text-align: center; }
.sidebar-cta h4 { color: #fff; }
.sidebar-cta p { font-size: 13px; color: #cdd8d1; margin-bottom: 20px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   BLOG SINGLE POST
   ========================================================================== */
.post-hero__img { width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 30px; }
.post-hero__img img { width: 100%; display: block; aspect-ratio: 16/7.5; object-fit: cover; }

.post-meta-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-bottom: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.post-meta-bar__author { display: flex; align-items: center; gap: 10px; }
.post-meta-bar__avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.post-meta-bar__author strong { font-size: 13.5px; color: var(--ink); }
.post-meta-bar span { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.post-meta-bar .ic { color: var(--gold-dark); width: 15px; height: 15px; flex-shrink: 0; }
.post-meta-bar__tag { background: var(--gold); color: #1a1a1a !important; font-size: 11px !important; font-weight: 600; padding: 4px 12px; border-radius: 4px; text-transform: capitalize; }

.post-title { font-family: var(--font-head); font-size: 32px; color: var(--ink); font-weight: 700; line-height: 1.28; margin-bottom: 22px; }

.post-content h2 { font-family: var(--font-head); font-size: 23px; color: var(--ink); margin: 34px 0 14px; font-weight: 700; }
.post-content h2:first-child { margin-top: 0; }
.post-content h3 { font-family: var(--font-head); font-size: 18px; color: var(--ink); margin: 26px 0 12px; font-weight: 700; }
.post-content p { font-size: 14.5px; color: var(--text); line-height: 1.85; margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 20px 22px; }
.post-content li { font-size: 14.5px; color: var(--text); line-height: 1.85; margin-bottom: 9px; }
.post-content li::marker { color: var(--gold-dark); }
.post-content blockquote {
  border-left: 4px solid var(--gold); background: var(--bg-soft); padding: 20px 26px; margin: 26px 0;
  font-family: var(--font-head); font-size: 17px; color: var(--ink); font-style: italic; border-radius: 0 10px 10px 0; line-height: 1.6;
}
.post-content strong { color: var(--ink); font-weight: 600; }

.post-footer-row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
  margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line);
}
.post-tags-inline { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.post-tags-inline strong { font-size: 13px; color: var(--ink); margin-right: 4px; }
.post-tags-inline a { font-size: 12px; padding: 6px 14px; border-radius: 20px; background: var(--bg-soft); color: var(--text); transition: .2s; }
.post-tags-inline a:hover { background: var(--gold); color: #1a1a1a; }
.post-share { display: flex; gap: 8px; align-items: center; }
.post-share span { font-size: 13px; color: var(--muted); margin-right: 4px; }
.post-share a { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft); color: var(--green-dark); display: flex; align-items: center; justify-content: center; transition: .2s; }
.post-share a:hover { background: var(--green-dark); color: #fff; }
.post-share .ic { width: 15px; height: 15px; }

.post-author-box { display: flex; gap: 20px; background: var(--bg-soft); border-radius: var(--radius); padding: 28px; margin-top: 36px; align-items: flex-start; }
.post-author-box__avatar {
  width: 68px; height: 68px; border-radius: 50%; background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 22px; font-weight: 700; flex-shrink: 0;
}
.post-author-box__label { font-size: 11px; text-transform: uppercase; letter-spacing: .4px; color: var(--gold-dark); font-weight: 600; margin-bottom: 4px; }
.post-author-box h5 { font-size: 16px; color: var(--ink); margin-bottom: 6px; font-weight: 700; }
.post-author-box p { font-size: 13px; color: var(--muted); line-height: 1.7; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.post-nav a { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; display: flex; flex-direction: column; gap: 6px; transition: border-color .2s; }
.post-nav a:hover { border-color: var(--gold); }
.post-nav__label { font-size: 11px; text-transform: uppercase; letter-spacing: .3px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.post-nav__label .ic { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.post-nav__next { text-align: right; align-items: flex-end; }
.post-nav__next .post-nav__label { flex-direction: row-reverse; }
.post-nav a strong { font-size: 14px; color: var(--ink); line-height: 1.4; }

.post-comments { margin-top: 40px; }
.post-comments h4 { font-family: var(--font-head); font-size: 20px; color: var(--ink); margin-bottom: 22px; font-weight: 700; }

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__num {
  position: absolute; top: 14px; right: 20px; font-family: var(--font-head); font-size: 44px; font-weight: 700;
  color: var(--bg-soft); z-index: 0; line-height: 1;
}
.service-card__icon {
  width: 62px; height: 62px; border-radius: 14px; background: #f4efe1; color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; z-index: 1;
}
.service-card__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--ink); margin-bottom: 10px; font-weight: 700; position: relative; z-index: 1; }
.service-card p { font-size: 13.5px; color: var(--text); line-height: 1.7; margin-bottom: 18px; position: relative; z-index: 1; }
.service-card__link { font-size: 13px; font-weight: 600; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s, color .2s; position: relative; z-index: 1; }
.service-card__link .ic { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card__link:hover { color: var(--gold-dark); gap: 10px; }

.service-detail__list { display: flex; flex-direction: column; gap: 13px; margin: 22px 0 28px; }
.service-detail__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text); line-height: 1.5; }
.service-detail__list .ic {
  color: #fff; background: var(--green-dark); border-radius: 50%; padding: 5px; width: 20px; height: 20px;
  flex-shrink: 0; margin-top: 1px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; left: calc(50% + 45px); width: calc(100% - 90px); height: 2px;
  background-image: linear-gradient(to right, var(--line) 50%, transparent 50%); background-size: 12px 2px; background-repeat: repeat-x;
}
.process-step__num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  font-family: var(--font-head); font-size: 23px; font-weight: 700; position: relative; z-index: 1;
  box-shadow: 0 8px 20px rgba(18,53,36,.25);
}
.process-step h4 { font-size: 16px; color: var(--ink); margin-bottom: 8px; font-weight: 600; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ==========================================================================
   HAJJ PAGE
   ========================================================================== */

/* ---------- Hero ---------- */
.hajj-hero { background: url(images/haj-bg.png) center / cover no-repeat; overflow: hidden; }
.hajj-hero__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 480px; }
.hajj-hero__content { padding: 60px 50px 60px 0; color: var(--green-dark); display: flex; flex-direction: column; justify-content: center; }
.hajj-hero__kicker { color: var(--gold-light); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.hajj-hero__title { font-family: var(--font-head); font-size: 40px; font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.hajj-hero__text { color: #000; font-size: 14.5px; line-height: 1.75; margin-bottom: 28px; max-width: 440px; }
.hajj-hero__badges { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.hajj-hero__badge { display: flex; align-items: center; gap: 10px; }
.hajj-hero__badge-icon {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--gold-light);
}
.hajj-hero__badge-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hajj-hero__badge span { font-size: 11.5px; color: #000; line-height: 1.4; display: block; max-width: 110px; }

.hajj-hero__img { position: relative; background: #0d2417 center/cover no-repeat; min-height: 320px; }
.hajj-hero__img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-dark) 0%, transparent 18%); }
.hajj-hero__img-placeholder {
  position: absolute; inset: 24px; border: 2px dashed rgba(255,255,255,.35); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,.55);
  text-align: center; padding: 20px; font-size: 12.5px;
}
.hajj-hero__img-placeholder svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* ---------- Packages ---------- */
.hajj-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 10px; }
.hajj-pkg-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: visible;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; position: relative;
  display: flex; flex-direction: column;
}
.hajj-pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.hajj-pkg-card--popular { border-color: var(--gold); }

.hajj-pkg-card__ribbon {
  position: absolute; top: 18px; left: -6px; z-index: 2;
  background: var(--green-dark); color: #fff; padding: 9px 22px 9px 18px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%);
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
}
.hajj-pkg-card--popular .hajj-pkg-card__ribbon { background: var(--gold); color: #1a1a1a; }

.hajj-pkg-card__img { height: 290px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; background: #d9d4c8 center/cover no-repeat; position: relative; }
.hajj-pkg-card__price {
  position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 10px; box-shadow: var(--shadow-sm); padding: 12px 26px; text-align: center; white-space: nowrap;
}
.hajj-pkg-card__price small { display: block; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.hajj-pkg-card__price strong { display: block; font-size: 19px; color: var(--green-dark); font-family: var(--font-head); }
.hajj-pkg-card__price em { font-style: normal; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .3px; }
.hajj-pkg-card__body { padding: 46px 24px 0; flex: 1; display: flex; flex-direction: column; }
.hajj-pkg-card__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.hajj-pkg-card__list li { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text); }
.hajj-pkg-card__list .ic-chip {
  width: 30px; height: 30px; border-radius: 50%; background: var(--bg-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hajj-pkg-card--popular .hajj-pkg-card__list .ic-chip { background: #fbf1d9; }
.hajj-pkg-card__list .ic { color: var(--gold-dark); width: 15px; height: 15px; flex-shrink: 0; }
.hajj-pkg-card__btn {
  width: 100%; justify-content: center; border-radius: 0 0 var(--radius) var(--radius);
  margin-top: auto; padding: 15px 20px;
}

/* ---------- Hotels ---------- */
.hajj-hotels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.hajj-hotels-col { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.hajj-hotels-col__head { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 22px; }
.hajj-hotels-col__head img { width: 35px; height: 35px; color: var(--gold-dark); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hajj-hotels-col__head h4 { font-family: var(--font-head); font-size: 16px; color: var(--ink); font-weight: 700; }
.hajj-hotel-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hajj-hotel-item { text-align: center; }
.hajj-hotel-item__icon {
  width: 100%; aspect-ratio: 1; border-radius: 10px; background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--gold-dark); margin-bottom: 8px;
}
.hajj-hotel-item__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hajj-hotel-item span { display: block; font-size: 11.5px; color: var(--ink); font-weight: 600; line-height: 1.3; }
.hajj-hotel-item small { font-size: 10px; color: var(--muted); }
.hajj-hotels-note { text-align: center; font-size: 11.5px; color: var(--muted); margin-top: 22px; font-style: italic; }

/* ---------- Inclusions / Exclusions ---------- */
.hajj-incl-excl { position: relative; }
.hajj-incl-excl__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; position: relative; }
.hajj-incl { background: var(--green-dark); color: #fff; border-radius: var(--radius); padding: 34px 32px; }
.hajj-incl h4 { color: var(--gold-light); font-size: 14.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 20px; text-align: center; }
.hajj-incl ul, .hajj-excl ul { display: flex; flex-direction: column; gap: 13px; }
.hajj-incl li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #e6ebe7; }
.hajj-incl .ic { color: var(--gold-light); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.hajj-excl { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; }
.hajj-excl h4 { color: var(--muted); font-size: 14.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 20px; text-align: center; }
.hajj-excl li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text); }
.hajj-excl .ic { color: #c25454; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.hajj-seal {
  position: absolute; top: 50%; left: 50%; margin: -52px 0 0 -52px;
  width: 104px; height: 104px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow);
  z-index: 3; text-align: center; 
}
.hajj-seal span { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--green-dark); line-height: 1.3; }

/* ---------- Journey timeline ---------- */
.hajj-journey-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.hajj-journey-grid .process-step:not(:last-child)::after { left: calc(50% + 26px); width: calc(100% - 52px); }
.hajj-journey-grid .process-step__num { width: 64px; height: 64px; font-size: 17px; margin-bottom: 14px; }
.hajj-journey-grid .process-step__num img{
  border-radius: 50%;
}
.hajj-journey-grid .process-step h4 { font-size: 12.5px; }
.hajj-journey-grid .process-step p { font-size: 11px; }

/* ---------- Testimonials nav arrows ---------- */
.hajj-testi-wrap { position: relative; }
.hajj-testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer; transition: .2s; box-shadow: var(--shadow-sm); z-index: 2;
}
.hajj-testi-arrow:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.hajj-testi-arrow--prev { left: -60px; }
.hajj-testi-arrow--next { right: -60px; }
.hajj-testi-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Package flyers gallery ---------- */
.hajj-flyers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.hajj-flyer {
  position: relative; display: block; padding: 0; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.hajj-flyer:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }
/* contain, not cover — the flyers carry text to their edges and must never be cropped */
.hajj-flyer img {
  width: 100%; aspect-ratio: 1080 / 1550; object-fit: contain; display: block;
  background: #fff; transition: transform .5s ease;
}
.hajj-flyer:hover img { transform: scale(1.04); }
.hajj-flyer::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,26,18,.6) 100%);
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.hajj-flyer:hover::after { opacity: 1; }
.hajj-flyer__view {
  position: absolute; left: 50%; bottom: 18px; transform: translate(-50%, 14px);
  display: inline-flex; align-items: center; gap: 8px; z-index: 1;
  background: var(--gold); color: #1a1a1a; font-size: 12.5px; font-weight: 600;
  padding: 9px 18px; border-radius: 30px; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .35s ease, transform .35s ease;
}
.hajj-flyer:hover .hajj-flyer__view { opacity: 1; transform: translate(-50%, 0); }
.hajj-flyer__view svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1150px) {
  .nav { gap: 0; }
  .nav__link { padding: 8px 8px; font-size: 14.5px; }
  .packages__grid { grid-template-columns: 1fr 1fr; }
  .packages__intro { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
  .packages__intro p { margin-bottom: 0; }
  .articles__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 992px) {
  /* keep the couple/Kaaba in frame once the cover-crop gets narrow */
  .hero__slide { background-position: right center; }

  .header__inner { position: relative; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    max-height: 0; opacity: 0; visibility: hidden; overflow: hidden;
    padding: 0 25px;
    transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease, padding .35s ease, visibility 0s linear .4s;
  }
  .nav.is-open {
    max-height: 620px; opacity: 1; visibility: visible;
    padding: 10px 25px 18px;
    transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .35s ease .05s, padding .35s ease, visibility 0s linear 0s;
  }
  .nav__link {
    padding: 12px 4px; border-bottom: 1px solid var(--line);
    opacity: 0; transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .nav.is-open .nav__link { opacity: 1; transform: none; }
  .nav.is-open .nav__link:nth-child(1) { transition-delay: .06s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: .10s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: .14s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: .18s; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: .22s; }
  .nav.is-open .nav__link:nth-child(6) { transition-delay: .26s; }
  .nav.is-open .nav__link:nth-child(7) { transition-delay: .30s; }
  .nav.is-open .nav__link:nth-child(8) { transition-delay: .34s; }
  .nav.is-open .nav__link:nth-child(9) { transition-delay: .38s; }
  .nav__link.is-active::after { display: none; }
  .header__cta { display: none; }
  .header__call { display: none; }
  .nav-toggle { display: flex; z-index: 61; }

  /* hamburger morphs into an X */
  .nav-toggle span { transform-origin: center; transition: transform .3s ease, opacity .2s ease, width .3s ease; }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; width: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .features__bar { grid-template-columns: repeat(3, 1fr); gap: 26px 0; }
  .feature:nth-child(3)::after, .feature:last-child::after { display: none; }
  .book__form { grid-template-columns: 1fr 1fr; }
  .book__submit { grid-column: 1 / -1; }
  .destinations__inner { grid-template-columns: 1fr; gap: 35px; }
  .certify__inner { grid-template-columns: 1fr; gap: 40px; }
  .certify__content { text-align: center; }
  .certify__content .section__title { text-align: center; }
  .certify__content p { margin-left: auto; margin-right: auto; }
  .certify__points { align-items: center; }
  .certify .section__divider--gold { background-position: center center; }
  .faq-section__inner { grid-template-columns: 1fr; }
  .travel-book { width: 78px; height: 108px; right: 5%; }
  .why__grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .why__item:nth-child(3n)::after { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .articles__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }

  .page-banner { min-height: 200px; }
  .page-banner__title { font-size: 32px; }
  .about-story__inner { grid-template-columns: 1fr; gap: 60px 0; }
  .about-story__content { text-align: center; }
  .about-story__content .section__title { text-align: center; }
  .about-story__img { max-width: 480px; margin: 0 auto; position: relative; top: 0; }
  .about-story__badge { right: 50%; transform: translateX(50%); bottom: -24px; }
  .about-mission { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }

  .promo { padding: 70px 0 20px; }
  .promo__block { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .promo__block + .promo__block { margin-top: 60px; }
  .promo__block--reverse .promo__img { order: 1; }
  .promo__block--reverse .promo__content { order: 2; }
  .promo__title { font-size: 27px; }

  .contact-quick { grid-template-columns: 1fr 1fr; }
  .contact-main__inner { grid-template-columns: 1fr; gap: 40px; }

  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { max-width: 480px; }

  .post-title { font-size: 27px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .process-step:nth-child(2)::after { display: none; }

  .hajj-hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .hajj-hero__content { padding: 50px 25px 40px; order: 2; }
  .hajj-hero__img { order: 1; min-height: 280px; }
  .hajj-hero__title { font-size: 32px; }
  .hajj-pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; gap: 60px; }
  .hajj-pkg-card__price { position: absolute; }
  .hajj-hotels-grid { grid-template-columns: 1fr; gap: 30px; }
  .hajj-incl-excl__grid { grid-template-columns: 1fr; gap: 60px; }
  .hajj-seal { top: -30px; left: 50%; }
  .hajj-journey-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .hajj-journey-grid .process-step:nth-child(3n)::after { display: none; }
  .hajj-testi-arrow { display: none; }
  .hajj-flyers-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .topbar__inner { flex-direction: column; height: auto; gap: 5px; padding: 8px 0; }
  .topbar__contact { gap: 14px; font-size: 12px; }

  /* keep the logo from painting over the hamburger on small phones */
  .header .logo { flex-shrink: 1; min-width: 0; }
  .header .logo__mark { width: 46px; height: 46px; }
  .header .logo__text { min-width: 0; }
  .header .logo__text strong { font-size: 15px; overflow: hidden; text-overflow: ellipsis; }
  .header .logo__text small { font-size: 10.5px; overflow: hidden; text-overflow: ellipsis; }
  .hero { min-height: 460px; }
  .hero__title { font-size: 36px; }
  .hero__content { padding-bottom: 70px; }
  .hero__card { display: none; }
  .hero__arrow { display: none; }
  .hero__dots { bottom: 56px; }
  .features { margin-top: -40px; }
  .features__bar { grid-template-columns: 1fr 1fr; padding: 26px 16px; }
  .feature::after { display: none !important; }
  .packages__grid { grid-template-columns: 1fr; }
  .packages__intro { flex-direction: column; align-items: flex-start; }
  .why__grid { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .why__item::after { display: none !important; }
  .book__form { grid-template-columns: 1fr; }
  .articles__grid, .gallery__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .section__title { font-size: 25px; }
  .need-help { flex-direction: column; }
  .need-help__photo { min-height: 260px; }
  .travel-book { display: none; }
  .certify__gallery { gap: 10px; padding: 24px 12px 10px; justify-content: center; }
  .certify__card { width: 112px; flex-shrink: 0; transform: rotate(-2deg); }
  .certify__card--offset { margin-top: 20px; transform: rotate(2deg); }
  .certify__card:nth-child(1):hover { transform: rotate(-2deg) translateY(-6px); }
  .certify__card--offset:hover { transform: rotate(2deg) translateY(-6px); }

  .page-banner { min-height: 170px; }
  .page-banner__title { font-size: 26px; }
  .page-banner__crumbs { font-size: 12.5px; }
  .about-story__badge { padding: 12px 16px; }
  .about-story__badge strong { font-size: 20px; }
  .about-mission { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-card__avatar { height: 160px; }
  .team-card__avatar svg { width: 48px; height: 48px; }

  .contact-quick { grid-template-columns: 1fr; }
  .contact-form-card { padding: 26px 20px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
  .contact-map iframe { height: 300px; }

  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-card__img { min-height: 180px; }
  .blog-post-card__body { padding: 20px; }
  .blog-sidebar { max-width: none; }

  .post-title { font-size: 23px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav__next { text-align: left; align-items: flex-start; }
  .post-nav__next .post-nav__label { flex-direction: row; }
  .post-author-box { flex-direction: column; text-align: center; align-items: center; }
  .post-footer-row { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; row-gap: 34px; }
  .process-step::after { display: none !important; }

  .hajj-hero__title { font-size: 26px; }
  .hajj-hero__badges { gap: 16px; }
  .hajj-hero__img { min-height: 220px; }
  .hajj-hotel-list { grid-template-columns: 1fr 1fr; }
  .hajj-incl, .hajj-excl { padding: 28px 22px; }
  .hajj-journey-grid { grid-template-columns: 1fr 1fr; }
  .hajj-journey-grid .process-step::after { display: none !important; }
  .hajj-flyers-grid { gap: 14px; }
}

@media (max-width: 340px) {
  .certify__gallery { gap: 6px; padding-left: 8px; padding-right: 8px; }
  .certify__card { width: 88px; transform: rotate(-1deg); }
  .certify__card--offset { transform: rotate(1deg); margin-top: 16px; }
}

/* ==========================================================================
   GALLERY LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,20,14,.94);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
  padding: 40px;
}
.lightbox.is-open {
  opacity: 1; visibility: visible;
  transition: opacity .3s ease, visibility 0s linear 0s;
}
.lightbox__stage {
  max-width: min(900px, 88vw);
  max-height: 82vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transform: scale(.94);
  transition: transform .3s ease;
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }
.lightbox__img {
  max-width: 100%; max-height: 68vh;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
  background: #0d2417;
}
.lightbox__caption { color: #e6ebe7; font-size: 14.5px; text-align: center; }
.lightbox__counter { color: var(--gold-light); font-size: 12.5px; letter-spacing: .5px; }

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.lightbox__close .ic,
.lightbox__nav .ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.lightbox__close { top: 22px; right: 22px; width: 46px; height: 46px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__prev { left: 22px; }
.lightbox__next { right: 22px; }

body.lightbox-open { overflow: hidden; }

@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox__close { top: 10px; right: 10px; width: 40px; height: 40px; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__img { max-height: 58vh; }
}
