/* ============ RESET / GLOBALS ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #0E4D70;
  --gold: #EDB81A;
  --black: #000;
  --white: #fff;
  --text: #333;
  --sys: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  background-color: #fff;
  background-image: url('img/bg-islamic-2-2.png');
  background-size: contain;
  background-repeat: repeat;
  background-position: 50% 50%;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }

.container { max-width: 1300px; margin: 0 auto; }
@media (max-width: 1360px) { .container { padding-left: 30px; padding-right: 30px; } }
@media (max-width: 767px)  { .container { padding-left: 20px; padding-right: 20px; } }

/* ============ TYPOGRAPHY ============ */
.sec-title {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -4px;
  text-transform: capitalize;
  color: var(--black);
}
.sec-title .accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -4px;
  line-height: 1em;
  color: var(--navy);
}
@media (max-width: 1024px) { .sec-title { font-size: 44.8px; letter-spacing: -1px; } .sec-title .accent { letter-spacing: -1px; } }
@media (max-width: 767px)  { .sec-title { font-size: 32px; letter-spacing: -1px; } }

/* eyebrow label */
.eyebrow {
  display: flex; align-items: center;
  font-size: 17.6px; line-height: 26.4px;
  text-transform: capitalize; color: var(--black);
}
.eyebrow svg { width: 24px; height: 24px; flex: 0 0 24px; margin-right: 6px; fill: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: #fff; }

/* premium button */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 17px 30px; border-radius: 20px;
  font-family: var(--sys);
  font-size: 16px; line-height: 21px; text-transform: capitalize;
  transition: all .3s ease-in-out;
}
.btn svg { width: 16px; height: 16px; margin-left: 13px; transition: transform .3s ease-in-out; }
.btn:hover svg { transform: translateX(4px); }
.btn-green { background: var(--navy); color: #fff; }
.btn-green:hover { background: #0a3a56; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gold); color: var(--black); }
.btn-white.btn-dark-text { color: var(--black); }

/* scroll entrance animation — animate.css fadeInUp/Left/Right (matches reference) */
@keyframes fadeInUp   { from { opacity: 0; transform: translate3d(0, 60px, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translate3d(-60px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInRight{ from { opacity: 0; transform: translate3d(60px, 0, 0); } to { opacity: 1; transform: none; } }
.anim { opacity: 0; }
.anim.in { opacity: 1; animation: fadeInUp 1.25s ease both; }
.anim-left.in  { animation-name: fadeInLeft; }
.anim-right.in { animation-name: fadeInRight; }

/* directional entrances on paired columns (reference uses fadeInLeft/Right here) */
.about-left.anim.in   { animation-name: fadeInLeft; }
.about-right.anim.in  { animation-name: fadeInRight; }

/* staggered reveal for grids/rows (reference staggers siblings ~150ms) */
.steps-grid .anim.in:nth-child(2), .pkg-grid .anim.in:nth-child(2),
.why-grid .anim.in:nth-child(2), .team-grid .anim.in:nth-child(2),
.blog-grid .anim.in:nth-child(2), .pricing-grid .anim.in:nth-child(2),
.offers-grid .anim.in:nth-child(2) { animation-delay: .15s; }
.steps-grid .anim.in:nth-child(3), .pkg-grid .anim.in:nth-child(3),
.why-grid .anim.in:nth-child(3), .team-grid .anim.in:nth-child(3),
.blog-grid .anim.in:nth-child(3), .pricing-grid .anim.in:nth-child(3) { animation-delay: .3s; }
.steps-grid .anim.in:nth-child(4), .why-grid .anim.in:nth-child(4),
.team-grid .anim.in:nth-child(4) { animation-delay: .45s; }
.team-grid .anim.in:nth-child(n+5) { animation-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  .anim, .anim.in { opacity: 1 !important; animation: none !important; }
}

/* Subtle Islamic geometric texture on dark-green surfaces (matches reference) */
.pricing, .footer-box, .svc-box, .testi-card, .offer-card,
.detail-journey, .why-card.highlight, .faq-item.open .faq-head, .faq-item.open .faq-body {
  position: relative;
}
.pricing::before, .footer-box::before, .svc-box::before, .testi-card::before, .offer-card::before,
.detail-journey::before, .why-card.highlight::before,
.faq-item.open .faq-head::before, .faq-item.open .faq-body::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  border-radius: inherit;
  background: url('img/bg-islamic-1.png') center / cover no-repeat;
  opacity: .07;
}
/* keep content above the texture */
.pricing > .container, .footer-box > .container,
.svc-box > *, .testi-card > *, .offer-card > *,
.detail-journey > *, .why-card.highlight > *,
.faq-item.open .faq-head > *, .faq-item.open .faq-body > * {
  position: relative; z-index: 1;
}

/* ============ HEADER ============ */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
}
.site-header .container {
  padding-top: 47px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header .logo img { width: auto; height: 52px; }
.main-nav ul.menu { display: flex; }
.main-nav li { position: relative; }
.main-nav a.menu-link {
  display: flex; align-items: center;
  padding: 15px 20px;
  font-size: 16px; line-height: 16px; color: #fff;
  transition: opacity .3s ease;
}
.main-nav a.menu-link:hover { opacity: .75; }
.main-nav a.menu-link.active { color: var(--gold); }
.main-nav .sub-menu a.active { color: var(--navy); font-weight: 500; }
.main-nav .arrow { margin-left: 8px; width: 10px; height: 10px; }
.main-nav .arrow svg { display: block; width: 10px; height: 10px; fill: #fff; }
.main-nav .sub-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #fff; border-radius: 20px;
  visibility: hidden; opacity: 0; transition: 300ms ease-out;
  overflow: hidden;
}
.main-nav li:hover > .sub-menu { visibility: visible; opacity: 1; }
.main-nav .sub-menu a {
  display: block; padding: 15px 20px 15px 40px;
  font-size: 16px; line-height: 16px; color: #000;
}
.main-nav .sub-menu a:hover { background: #f3f3f3; }
.nav-toggle { display: none; }

@media (max-width: 1024px) {
  .site-header .container { padding-top: 24px; padding-bottom: 16px; }
  .nav-toggle { display: block; }
  .nav-toggle svg { width: 28px; height: 28px; fill: #fff; }
  .main-nav {
    display: none;
    position: absolute; left: 10px; right: 10px; top: 100%;
    background: #fff; border-radius: 0 0 12px 12px; padding: 10px 0 14px;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
  }
  .main-nav.open { display: block; }
  .main-nav ul.menu { flex-direction: column; }
  .main-nav a.menu-link { color: #000; padding: 14px 20px; justify-content: space-between; }
  .main-nav .arrow svg { fill: #000; }
  .main-nav .sub-menu {
    position: static; visibility: visible; opacity: 1; border-radius: 0;
    display: none; background: #fafafa;
  }
  .main-nav li.sub-open > .sub-menu { display: block; }
}

/* ============ HERO ============ */
.hero { padding: 10px; }
.hero-box {
  position: relative;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('img/prophet-mohammed-mosque-al-masjid-an-nabawi-me-2026-01-09-00-53-50-utc-1.jpg');
  background-size: cover; background-position: 50% 50%;
  border-radius: 20px;
}
.hero-inner {
  padding-top: 200px; padding-bottom: 130px;
  display: flex; justify-content: space-between; gap: 20px;
}
.hero-left {
  width: 723px; max-width: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-left .eyebrow { color: #fff; }
.hero-title {
  margin-top: 20px;
  font-size: 96px; font-weight: 400; line-height: 1em; letter-spacing: -4px;
  text-transform: capitalize; color: #fff;
}
.hero-title .accent {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500;
  line-height: 1em;
  color: var(--gold);
}
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 60px; }
.play-btn {
  position: relative;
  width: 55px; height: 55px; border-radius: 50%;
  background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .4s ease;
}
/* jkit-ripple: two staggered expanding rings (matches reference) */
.play-btn::before, .play-btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: jkit-ripple 3s infinite ease;
}
.play-btn::after { animation-delay: 1.5s; }
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { position: relative; z-index: 1; width: 18px; height: 21px; fill: #fff; margin-left: 3px; }
@keyframes jkit-ripple {
  0%   { box-shadow: 0 0 0 0 rgba(14,77,112,.55); opacity: 1; }
  70%  { box-shadow: 0 0 0 16px rgba(14,77,112,0); opacity: 0; }
  100% { box-shadow: 0 0 0 0 rgba(14,77,112,0); opacity: 0; }
}
/* gold ripple for the gold testimonial play button */
.testi-video .play-btn::before, .testi-video .play-btn::after { animation-name: jkit-ripple-gold; }
@keyframes jkit-ripple-gold {
  0%   { box-shadow: 0 0 0 0 rgba(237,184,26,.6); opacity: 1; }
  70%  { box-shadow: 0 0 0 16px rgba(237,184,26,0); opacity: 0; }
  100% { box-shadow: 0 0 0 0 rgba(237,184,26,0); opacity: 0; }
}

.hero-right {
  width: 557px; max-width: 100%; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 1025px) { .hero-right { min-height: 595px; } }
.hero-form-card {
  background: rgba(0,0,0,.1);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  padding: 15px;
}
.hero-tabs { display: flex; flex-wrap: wrap; column-gap: 10px; }
.hero-tab-btn {
  order: 1;
  padding: 10px 30px; border-radius: 100px;
  font-size: 16px; line-height: 24px; text-transform: capitalize;
  background: #fff; color: var(--navy);
  transition: background-color .3s ease, color .3s ease;
}
.hero-tab-btn.active { background: var(--navy); color: #fff; }
.hero-tab-panel { order: 2; width: 100%; padding-top: 16px; display: none; }
.hero-tab-panel.active { display: block; }
.hf-row { display: flex; gap: 20px; margin-bottom: 20px; }
form .hf-row:last-of-type { margin-bottom: 0; }
.hf-field {
  flex: 1; display: flex; align-items: center;
  background: rgba(0,0,0,.6); border-radius: 15px; padding: 15px;
}
.hf-field svg { width: 21px; height: 21px; flex: 0 0 21px; stroke: #fff; fill: none; stroke-width: 1.5; margin-right: 13px; }
.hf-field input, .hf-field select {
  width: 100%; height: 26px; background: transparent; border: none; outline: none;
  font-family: var(--sys);
  font-size: 16px; line-height: 21px; color: #fff;
  padding-bottom: 5px;
  -webkit-appearance: none; appearance: none;
}
.hf-field input::placeholder { color: #fff; opacity: 1; }
.hf-field select { color: #fff; }
.hf-field select option { color: #000; }
/* Date fields: keep the white hero-form look and let a tap anywhere open the
   calendar. The native indicator overlays the whole field (invisible) so the
   designed SVG icon stays the only visible icon. */
.hf-field input[type="date"], .cf-field input[type="date"] { color: #fff; cursor: pointer; }
.hf-field input[type="date"]::-webkit-datetime-edit,
.cf-field input[type="date"]::-webkit-datetime-edit { color: #fff; }
.hf-field input[type="date"]::-webkit-calendar-picker-indicator,
.cf-field input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  margin: 0; padding: 0; opacity: 0; cursor: pointer;
}
.hf-field input[type="date"]::-webkit-inner-spin-button { display: none; }
.hf-select { position: relative; }
.hf-select::after {
  content: ""; position: absolute; right: 18px; top: 50%; margin-top: -3px;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid #fff; pointer-events: none;
}
.hf-submit {
  width: 100%; margin-top: 10px;
  background: #fff; color: var(--navy); border-radius: 15px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500; line-height: 20px;
  text-transform: capitalize;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .3s ease, color .3s ease;
}
.hf-submit:hover { background: var(--gold); color: var(--black); }
.hf-submit svg { width: 15px; height: 15px; margin-left: 9px; }

.hero-bottom { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 44px; }
.hero-bottom p { width: 277px; max-width: 55%; font-size: 16px; line-height: 24px; color: #fff; }
.hero-rating { width: 210px; text-align: left; }
.hero-rating .score { display: flex; align-items: center; gap: 5px; }
.hero-rating .score svg { width: 30px; height: 30px; fill: var(--gold); }
.hero-rating .score span { font-size: 35.2px; font-weight: 500; line-height: 1em; color: #fff; }
.hero-rating .from { margin-top: 16px; font-size: 16px; line-height: 24px; color: #fff; }

@media (max-width: 1024px) {
  .hero-inner { padding-top: 160px; padding-bottom: 90px; }
  .hero-title { font-size: 60.8px; }
  .hero-left { width: 50%; }
  .hero-right { width: 45%; }
  .hf-row { flex-direction: column; gap: 20px; }
}
@media (max-width: 767px) {
  .hero-inner { flex-direction: column; padding-top: 130px; padding-bottom: 60px; }
  .hero-left, .hero-right { width: 100%; }
  .hero-title { font-size: 33.6px; line-height: 1.1em; letter-spacing: -1px; margin-top: 25px; }
  .hero-actions { margin-top: 35px; }
  /* tabs stack: button / panel / button */
  .hero-tabs { flex-direction: column; gap: 14px; }
  .hero-tab-btn { width: 100%; text-align: center; }
  #hero-tab-btn-umrah { order: 1; }
  #hero-panel-umrah { order: 2; }
  #hero-tab-btn-hajj { order: 3; }
  #hero-panel-hajj { order: 4; }
  .hero-bottom { flex-direction: column; align-items: center; gap: 30px; margin-top: 40px; text-align: center; }
  .hero-bottom p { max-width: 100%; text-align: center; }
  .hero-rating { text-align: center; }
  .hero-rating .score { justify-content: center; }
}

/* ============ S2 PARTNERS ============ */
.partners { padding: 75px 0 70px; }
.partners .container { display: flex; align-items: center; gap: 60px; }
.partners-title {
  flex: 0 0 250px;
  font-size: 22.4px; font-weight: 500; line-height: 33.6px;
  text-transform: capitalize; color: var(--black);
}
.partners-title .accent {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700;
  line-height: 1em;
  color: var(--navy);
}
.marquee { flex: 1; min-width: 0; max-width: 100%; width: 100%; overflow: hidden; }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 25s linear infinite; }
.marquee-track img { width: 141px; margin: 0 35px; filter: grayscale(100%); transition: filter 0.3s ease; }
.marquee-track img:hover { filter: grayscale(0%); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 767px) {
  .partners .container { flex-direction: column; gap: 35px; text-align: center; }
  .partners-title { flex: none; }
}

/* ============ S3 ABOUT ============ */
.about { padding: 50px 0 70px; }
.about--noheading { padding-top: 30px; }
.about .eyebrow { margin-bottom: 28px; }
.about .sec-title { text-align: center; max-width: 600px; margin: 0 auto 90px; }
.about-grid { display: flex; justify-content: space-between; gap: 50px; }
.about-left {
  width: 400px; max-width: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.about-left h5 { font-size: 19.2px; font-weight: 400; line-height: 28.8px; color: var(--black); text-transform: capitalize; }
.about-stat .stat-row { display: flex; align-items: center; gap: 10px; }
.about-stat .stat-row svg { width: 49px; height: 49px; fill: var(--gold); }
.about-stat .stat-row .num { font-size: 48px; font-weight: 400; line-height: 1em; color: var(--black); }
.about-stat .stat-label { margin-top: 24px; font-size: 17.6px; line-height: 1.3em; text-transform: capitalize; color: var(--black); }
.about-stat .stat-label .accent { font-weight: 500; color: var(--navy); }
.about-img {
  width: 444px; height: 498px; flex-shrink: 0;
  border-radius: 20px;
  background-image: url('img/pilgrimage-to-mecca-saudi-arabia-the-holiest-cit-2026-01-09-09-37-24-utc-1.jpg');
  background-size: cover; background-position: 50% 50%;
}
.about-right { width: 356px; flex-shrink: 0; }
.about-card {
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px; padding: 25px;
  height: 336px;
  display: flex; flex-direction: column;
}
.about-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.about-pill {
  background: #b6b6b6; border-radius: 100px; padding: 8px 16px;
  font-size: 14.4px; line-height: 21.6px; color: var(--black); text-transform: capitalize;
}
.about-card-top svg { width: 45px; height: 45px; fill: var(--black); }
.about-card h4 {
  margin-top: auto;
  font-family: 'Playfair Display', serif; font-size: 22.4px; font-weight: 600; line-height: 1.4em;
  text-transform: capitalize; color: var(--black);
}
.about-card p { margin-top: 15px; font-family: var(--sys); font-size: 16px; line-height: 24px; color: var(--text); }
.about-right .btn { margin-top: 19px; }
@media (max-width: 1024px) {
  .about-grid { flex-direction: column; align-items: center; }
  .about-left { width: 100%; gap: 40px; }
  .about-img { width: 100%; max-width: 444px; }
  .about-right { width: 100%; max-width: 444px; }
}

/* ============ S4 SERVICES ============ */
.services { padding: 70px 0; }
.services-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.services-head .eyebrow { margin-bottom: 28px; }
.services-head .sec-title { max-width: 704px; }
.services-head-right { width: 480px; flex-shrink: 0; padding-top: 65px; }
.services-head-right p { font-family: var(--sys); font-size: 16px; line-height: 24px; color: var(--text); }
.services-head-right .btn { margin-top: 34px; }
.services-tabs { margin-top: 70px; display: flex; flex-wrap: wrap; column-gap: 10px; }
.svc-tab-btn {
  order: 1;
  padding: 15px 35px; border-radius: 20px;
  font-size: 16px; line-height: 24px; text-transform: capitalize;
  background: #fff; color: var(--black);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.08);
  transition: background-color .3s ease, color .3s ease;
}
.svc-tab-btn.active { background: var(--black); color: #fff; box-shadow: none; }
.svc-tab-panel { order: 2; width: 100%; padding-top: 25px; display: none; }
.svc-tab-panel.active { display: block; }
.svc-box {
  background: var(--navy); border-radius: 30px; padding: 0 50px;
  min-height: 410px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.svc-box-left { max-width: 665px; padding: 50px 0; }
.svc-icon {
  width: 70px; height: 70px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 35px; height: 35px; fill: var(--black); }
.svc-box h3 {
  margin-top: 26px;
  font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; line-height: 1em;
  text-transform: capitalize; color: #fff;
}
.svc-box p { margin-top: 20px; max-width: 612px; font-size: 16px; line-height: 24px; color: #fff; }
.svc-box .btn { margin-top: 34px; }
.svc-box img { width: 465px; height: 306px; object-fit: cover; border-radius: 25px; flex-shrink: 0; }
@media (max-width: 1024px) {
  .services-head { flex-direction: column; }
  .services-head-right { width: 100%; padding-top: 0; }
  .svc-box { flex-direction: column; align-items: flex-start; padding: 0 30px 40px; }
  .svc-box img { width: 100%; height: auto; }
}
@media (max-width: 767px) {
  .services-tabs { flex-direction: column; gap: 14px; }
  .svc-tab-btn { width: 100%; }
  #svc-btn-1 { order: 1; }
  #svc-panel-1 { order: 2; }
  #svc-btn-2 { order: 3; }
  #svc-panel-2 { order: 4; }
  #svc-btn-3 { order: 5; }
  #svc-panel-3 { order: 6; }
  #svc-btn-4 { order: 7; }
  #svc-panel-4 { order: 8; }
  #svc-btn-5 { order: 9; }
  #svc-panel-5 { order: 10; }
  .svc-tab-btn { text-align: center; }
}

/* ============ S5 STEPS ============ */
.steps { padding: 70px 0 107px; }
.steps .eyebrow { margin-bottom: 28px; }
.steps .sec-title { text-align: center; max-width: 700px; margin: 0 auto; }
.steps-grid { margin-top: 59px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; }
.step-shape {
  height: 255px;
  background-image: url('img/step-shape.png');
  background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.step-shape svg { width: 64px; height: 64px; stroke: #fff; fill: none; stroke-width: 1.2; }
.step-shape svg.solid { fill: #fff; stroke: none; width: 84px; height: 84px; }
.step h4 {
  margin: 20px auto 0; max-width: 242px;
  font-family: 'Playfair Display', serif; font-size: 22.4px; font-weight: 600; line-height: 1.4em;
  text-transform: capitalize; color: var(--black);
}
.step p { margin-top: 20px; font-size: 16px; line-height: 24px; color: var(--text); }
@media (max-width: 1024px) { .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; gap: 50px; } }

/* ============ S6 PRICING ============ */
.pricing { background: var(--navy); padding: 100px 0; }
.pricing-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.pricing-head .eyebrow { color: #fff; margin-bottom: 28px; }
.pricing-head .sec-title { max-width: 727px; color: #fff; }
.pricing-head .sec-title .accent { color: var(--gold); }
.pricing-head-right { width: 454px; flex-shrink: 0; padding-top: 65px; }
.pricing-head-right p { font-family: var(--sys); font-size: 16px; line-height: 24px; color: #fff; }
.pricing-head-right .btn { margin-top: 34px; }
.pricing-grid {
  margin-top: 159px;
  display: grid; grid-template-columns: 404fr 431fr 404fr; gap: 30px;
  align-items: start;
}
.price-card { background: #fff; border-radius: 20px; padding: 30px; text-align: center; }
.price-card.popular { position: relative; margin-top: -58px; padding: 20px; }
.popular-pill {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--gold); border-radius: 100px; padding: 10px 20px;
  font-size: 17.6px; line-height: 21px; text-transform: capitalize; color: var(--black);
  white-space: nowrap;
}
.price-card h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; line-height: 1em;
  text-transform: capitalize; color: var(--black);
}
.price-card.popular h3 { margin-top: 33px; }
.price-card .desc { margin: 20px auto 0; max-width: 289px; font-size: 16px; line-height: 24px; color: var(--text); }
.price-row { margin-top: 35px; display: flex; align-items: flex-end; justify-content: center; gap: 5px; }
.price-row .amount { font-size: 60.8px; font-weight: 500; line-height: 1em; color: var(--black); }
.price-row .per { font-size: 16px; font-weight: 500; line-height: 1.2em; padding-bottom: 8px; color: var(--black); text-transform: capitalize; }
.price-divider { margin: 30px 0 25px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.price-divider::after { content: ""; width: 138px; height: 1px; background: rgba(237,184,26,.64); }
.price-divider svg { width: 21px; height: 21px; fill: var(--gold); }
.price-features { text-align: left; }
.price-card.popular .price-features { background: #f4f4f4; border-radius: 20px; padding: 18px; }
.price-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.price-features li:last-child { padding-bottom: 0; }
.price-features img { width: 21px; height: 21px; }
.price-features h6 { font-size: 17.6px; font-weight: 400; line-height: 1.4em; text-transform: capitalize; color: var(--black); }
.price-card .btn { margin-top: 47px; width: 100%; }
@media (max-width: 1024px) {
  .pricing-head { flex-direction: column; }
  .pricing-head-right { width: 100%; padding-top: 0; }
  .pricing-grid { gap: 14px; }
  .price-card, .price-card.popular { padding: 18px; }
}
@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
  .price-card.popular { margin-top: 20px; }
}

/* ============ S7 WHY CHOOSE US ============ */
.why { padding: 100px 0 70px; }
.why .eyebrow { margin-bottom: 28px; }
.why .sec-title { text-align: center; max-width: 560px; margin: 0 auto; }
.why .lead { margin: 30px auto 0; max-width: 481px; text-align: center; font-family: var(--sys); font-size: 16px; line-height: 24px; color: var(--text); }
.why-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: start; }
.why-card {
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px; padding: 50px 35px;
  margin-top: 40px;
}
.why-card.highlight { background: var(--navy); border-color: var(--navy); margin-top: 0; }
.why-card .num { font-size: 60.8px; font-weight: 500; line-height: 1em; color: var(--black); white-space: nowrap; }
.why-card.highlight .num { color: #fff; }
.why-card h5 {
  margin-top: 20px;
  font-family: 'Playfair Display', serif; font-size: 19.2px; font-weight: 600; line-height: 1em;
  text-transform: capitalize; color: var(--navy);
}
.why-card.highlight h5 { color: var(--gold); }
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } .why-card { margin-top: 0; } }
@media (max-width: 600px)  { .why-grid { grid-template-columns: 1fr; margin-top: 60px; } }

/* ============ S8 TESTIMONIALS ============ */
.testimonials { padding: 70px 0; }
.testimonials .container { display: flex; gap: 70px; align-items: flex-start; }
.testi-card {
  width: 472px; flex-shrink: 0;
  background: var(--navy); border-radius: 20px; padding: 20px;
}
.testi-video {
  position: relative; height: 234px; border-radius: 15px;
  background-image: url('img/a-family-in-a-park-2026-03-11-00-59-23-utc-1.jpg');
  background-size: cover; background-position: 50% 50%;
  display: flex; align-items: center; justify-content: center;
}
.testi-video .play-btn { background: var(--gold); }
.testi-video .play-btn svg { fill: var(--black); }
.testi-score { margin-top: 25px; display: flex; align-items: center; justify-content: space-between; }
.testi-score .num { font-size: 40px; font-weight: 500; line-height: 1em; color: #fff; }
.testi-score .stars { display: flex; gap: 2px; }
.testi-score .stars svg { width: 20px; height: 20px; fill: #F8D73E; }
.testi-card > p { margin-top: 20px; font-size: 16px; line-height: 24px; color: #fff; }
.testi-profile { margin-top: 40px; display: flex; align-items: center; }
.testi-profile img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.testi-profile .who { margin-left: 15px; }
.testi-profile .who h5 { font-size: 17.6px; font-weight: 400; line-height: 1em; color: #fff; text-transform: capitalize; }
.testi-profile .who h6 { margin-top: 5px; font-size: 16px; font-weight: 400; line-height: 1.2em; color: rgba(255,255,255,.76); text-transform: capitalize; }
.testi-profile .socials { margin-left: auto; display: flex; gap: 9px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .3s ease;
}
.socials a:hover { background: var(--gold); }
.socials a svg { width: 20px; height: 20px; fill: var(--black); }

.testi-right { flex: 1; min-width: 0; }
.testi-right .eyebrow { margin-bottom: 28px; }
.testi-right .sec-title { max-width: 478px; }
.testi-slider { position: relative; margin-top: 54px; }
.testi-slide { display: none; }
.testi-slide.active { display: block; animation: fadeSlide .6s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
.testi-slide blockquote { max-width: 738px; padding-right: 40px; font-size: 19.2px; line-height: 28.8px; color: var(--black); }
.testi-slide .stars { margin-top: 43px; display: flex; gap: 4px; }
.testi-slide .stars svg { width: 17px; height: 15px; fill: #FFC402; }
.testi-slide-foot { margin-top: 24px; display: flex; align-items: center; }
.testi-slide-foot img { width: 53px; height: 53px; border-radius: 50%; object-fit: cover; }
.testi-slide-foot .who { margin-left: 16px; }
.testi-slide-foot .who strong { display: block; font-family: var(--sys); font-weight: 600; font-size: 16px; line-height: 23px; color: var(--black); }
.testi-slide-foot .who p { font-size: 14.4px; line-height: 21.6px; color: var(--navy); text-transform: capitalize; }
.testi-slide-foot .quote-mark { margin-left: auto; }
.testi-slide-foot .quote-mark svg { width: 40px; height: 53px; fill: var(--navy); }
.testi-dots { margin-top: 0; display: flex; gap: 8px; }
.testi-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(14,77,112,.25); transition: background-color .3s ease; }
.testi-dots button.active { background: var(--navy); }
@media (max-width: 1024px) {
  .testimonials .container { flex-direction: column; }
  .testi-card { width: 100%; max-width: 472px; }
}

/* ============ S9 FAQ ============ */
.faq { padding: 70px 0 80px; }
.faq .eyebrow { margin-bottom: 28px; }
.faq .sec-title { text-align: center; }
.faq-list { max-width: 1040px; margin: 59px auto 0; }
.faq-item { margin-bottom: 20px; border-radius: 20px; overflow: hidden; }
.faq-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 25px 40px 20px; border-radius: 20px;
  background: #efefef; color: var(--black);
  font-size: 17.6px; font-weight: 500; line-height: 26.4px; text-align: left;
  transition: background-color .3s ease, color .3s ease, border-radius .3s ease;
}
.faq-head .title { padding-right: 10px; }
.faq-head svg { width: 20px; height: 20px; flex: 0 0 20px; fill: var(--navy); }
.faq-head .icon-plus { display: none; }
.faq-item.open .faq-head { background: var(--navy); color: #fff; border-radius: 20px 20px 0 0; }
.faq-item.open .faq-head svg { fill: var(--gold); }
.faq-item.open .faq-head .icon-plus { display: block; }
.faq-item.open .faq-head .icon-minus { display: none; }
.faq-body { max-height: 0; overflow: hidden; background: var(--navy); border-radius: 0 0 20px 20px; transition: max-height .4s ease; }
.faq-body p { padding: 1px 40px 30px; max-width: 1000px; font-family: var(--sys); font-size: 16px; line-height: 24px; color: #fff; }
@media (max-width: 767px) { .faq-head { padding: 20px 24px 16px; } .faq-body p { padding: 1px 24px 24px; } }

/* ============ S10 BLOG ============ */
.blog { padding: 70px 0 119px; }
.blog-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.blog-head .eyebrow { margin-bottom: 28px; }
.blog-head .sec-title { max-width: 668px; }
.blog-head-right { width: 577px; flex-shrink: 0; padding-top: 40px; }
.blog-head-right p { font-family: var(--sys); font-size: 16px; line-height: 24px; color: var(--text); }
.blog-head-right .btn { margin-top: 24px; }
.blog-grid { margin-top: 71px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card img { width: 100%; height: 232px; object-fit: cover; }
.blog-card-body { background: #fff; padding: 26px 30px 32px; }
.blog-card h6 a {
  font-size: 23px; font-weight: 400; line-height: 34.5px; color: var(--black);
  transition: color .3s ease;
}
.blog-card h6 a:hover { color: var(--navy); }
.blog-meta { margin-top: 22px; display: flex; align-items: center; gap: 7px; font-size: 13.2px; line-height: 15.6px; color: var(--navy); }
.blog-meta svg { width: 13px; height: 13px; fill: var(--navy); }
.blog-meta .dot { color: var(--gold); font-size: 12px; }
.blog-card-body > p { margin-top: 12px; font-family: var(--sys); font-size: 14px; line-height: 21px; color: rgba(0,0,0,.58); }
@media (max-width: 1024px) {
  .blog-head { flex-direction: column; }
  .blog-head-right { width: 100%; padding-top: 0; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ============ MOBILE FIDELITY (matches reference at 390px) ============ */
@media (max-width: 767px) {
  /* hero */
  .hero-inner { padding-bottom: 100px; }
  .hero-title { line-height: 1em; margin-top: 18px; }
  .hero-actions { margin-top: 31px; }
  .hero-bottom { margin-top: 70px; }
  .hf-row { gap: 10px; margin-bottom: 10px; }
  form .hf-row:last-of-type { margin-bottom: 10px; }
  .hero-tab-panel.active { padding-bottom: 192px; }
  /* partners */
  .partners { padding: 55px 0 45px; }
  .partners .container { gap: 45px; }
  /* about */
  .about .sec-title { margin-bottom: 60px; }
  .about-left h5 { font-size: 16px; line-height: 24px; }
  .about-left { gap: 100px; justify-content: flex-start; }
  .about-stat .stat-row svg { width: 40px; height: 40px; }
  .about-stat .stat-row .num { font-size: 40px; }
  .about-grid { gap: 40px; }
  .about-img { height: 259px; }
  .about-card { height: 368px; }
  /* services */
  .services-tabs { gap: 10px; }
  .svc-tab-panel { padding-top: 15px; }
  .svc-box { padding: 0 20px 20px; min-height: 0; }
  .svc-box-left { padding: 40px 0 0; }
  .svc-box h3 { font-size: 22.4px; margin-top: 0; }
  .svc-box img { height: 155px; object-fit: cover; }
  /* steps */
  .steps-grid { gap: 40px; }
  .step h4 { font-size: 20.8px; }
  /* pricing */
  .pricing-grid { margin-top: 69px; gap: 70px; }
  .price-card h3 { font-size: 22.4px; }
  .price-card .desc { font-size: 14.4px; line-height: 21.6px; }
  .price-row .amount { font-size: 40px; }
  .price-features h6 { font-size: 16px; }
  .price-card.popular { margin-top: 0; }
  /* why choose us */
  .why .lead { margin-top: 0; }
  .why-grid { margin-top: 54px; }
  .why-card .num { font-size: 40px; }
  /* testimonials: heading + slider first, green card second */
  .testimonials .container { gap: 50px; }
  .testi-card { order: 2; padding: 15px; }
  .testi-video { height: 150px; }
  .testi-score { margin-top: 20px; }
  .testi-score .num { font-size: 32px; }
  .testi-card > p { margin-top: 15px; }
  .testi-profile { margin-top: 20px; flex-wrap: wrap; row-gap: 20px; }
  .testi-slide blockquote { font-size: 16px; line-height: 24px; padding-right: 0; }
  /* faq */
  .faq-item { margin-bottom: 15px; }
  .faq-head { padding: 20px 50px 20px 20px; font-size: 16px; line-height: 24px; }
  .faq-body p { padding: 1px 20px 24px; }
  /* blog */
  .blog-grid { margin-top: 45px; gap: 20px; }
  .blog-card h6 a { font-size: 16px; line-height: 24px; }
  .blog-card-body { padding: 20px; }
}

/* ============ FOOTER ============ */
.site-footer { padding: 0 10px 10px; }
.footer-box { background: var(--navy); border-radius: 20px; padding: 100px 0 37px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-top img { width: auto; height: 64px; }
.footer-top h5 { font-size: 16px; font-weight: 400; line-height: 1em; color: #fff; text-align: right; max-width: 410px; }
.footer-cols { margin-top: 71px; display: flex; gap: 20px; }
.footer-col { width: 232px; }
.footer-col h4 { font-size: 20.8px; font-weight: 500; line-height: 29px; color: #fff; text-transform: capitalize; }
.footer-col ul { margin-top: 20px; }
.footer-col li { padding-bottom: 12px; }
.footer-col li:last-child { padding-bottom: 0; }
.footer-col li a, .footer-col li span { font-family: var(--sys); font-size: 16px; line-height: 24px; color: rgba(255,255,255,.68); transition: color .3s ease; }
.footer-col li a:hover { color: #fff; }
.footer-right { margin-left: auto; text-align: right; }
.footer-right .socials { justify-content: flex-end; display: flex; gap: 9px; }
.footer-right h4 { margin-top: 39px; font-size: 20.8px; font-weight: 500; line-height: 29px; color: #fff; text-transform: capitalize; }
.newsletter { margin-top: 20px; display: flex; gap: 10px; justify-content: flex-end; }
.newsletter input {
  width: 233px; height: 53px;
  background: #fafafa; border: 1px solid #eaeaea; border-radius: 15px;
  padding: 15px 15px 15px 20px; font-family: var(--sys); font-size: 16px; color: #000; outline: none;
}
.newsletter button {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--gold); border-radius: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .3s ease;
}
.newsletter button:hover { background: #e6a916; }
.newsletter button svg { width: 15px; height: 15px; }
.footer-bottom { margin-top: 58px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom .copy { font-family: var(--sys); font-size: 16px; line-height: 1.2em; color: #fff; }
.footer-bottom ul { display: flex; gap: 12px; }
.footer-bottom ul a { font-family: var(--sys); font-size: 16px; line-height: 24px; color: rgba(255,255,255,.68); text-transform: capitalize; transition: color .3s ease; }
.footer-bottom ul a:hover { color: #fff; }
@media (max-width: 1024px) {
  .footer-cols { flex-wrap: wrap; row-gap: 40px; }
  .footer-right { margin-left: 0; text-align: left; width: 100%; }
  .footer-right .socials, .newsletter { justify-content: flex-start; }
}
@media (max-width: 767px) {
  .footer-box { padding-top: 100px; }
  .footer-top { flex-direction: column; align-items: center; }
  .footer-top img { width: auto; height: 56px; }
  .footer-top h5 { text-align: center; }
  .footer-col { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   INNER-PAGE COMPONENTS (added for full multi-page site)
   ============================================================ */

/* ---- Banner hero (inner page header) ---- */
.banner { padding: 10px; }
.banner-box {
  position: relative;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(6,26,42,.78), rgba(6,26,42,.78)),
    url('img/prophet-mohammed-mosque-al-masjid-an-nabawi-me-2026-01-09-00-53-50-utc-1.jpg');
  background-size: cover; background-position: 50% 30%;
  border-radius: 20px;
  min-height: 575px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 20px;
}
.banner-box .crescent { width: 65px; height: 65px; margin-bottom: 18px; }
.banner-title {
  font-size: 96px; font-weight: 400; line-height: 1em; letter-spacing: -4px;
  text-transform: capitalize; color: #fff;
}
.banner-title .accent {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; line-height: 1em;
  color: var(--gold);
}
.breadcrumb { margin-top: 26px; display: flex; align-items: center; gap: 10px; font-size: 16px; color: #fff; text-transform: capitalize; }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold); }
@media (max-width: 1024px) { .banner-box { min-height: 420px; } .banner-title { font-size: 60.8px; } }
@media (max-width: 767px)  { .banner-box { min-height: 320px; padding: 100px 20px; } .banner-title { font-size: 33.6px; letter-spacing: -1px; } }

/* ---- Team cards ---- */
.team-section { padding: 100px 0 130px; }
.team-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.team-head .eyebrow { margin-bottom: 28px; }
.team-head .sec-title { max-width: 560px; }
.team-head-right { width: 480px; flex-shrink: 0; padding-top: 65px; }
.team-head-right p { font-family: var(--sys); font-size: 16px; line-height: 24px; color: var(--text); }
.team-head-right .btn { margin-top: 34px; }
.team-grid { margin-top: 100px; display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 30px; row-gap: 70px; }
.team-card {
  position: relative; height: 395px; border-radius: 20px; overflow: hidden;
  background: var(--navy);
  display: flex; align-items: flex-end; justify-content: center;
}
/* faint white geometric motif behind the person */
.team-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('img/bg-islamic-1.png') no-repeat center / cover;
  opacity: .12;
}
.team-card .photo {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; object-position: center bottom;
}
.team-card .team-info {
  position: relative; z-index: 2; width: calc(100% - 30px); margin: 0 15px 15px;
  background: transparent; border-radius: 14px;
  padding: 6px 4px; display: flex; align-items: center; justify-content: space-between;
}
.team-card.light .team-info { background: #f3f1e8; padding: 14px 18px; }
.team-card .team-info h5 {
  font-family: 'Playfair Display', serif; font-size: 22.4px; font-weight: 600; line-height: 1.3em;
  text-transform: capitalize; color: #fff;
}
.team-card .team-info h6 { font-size: 17.6px; font-weight: 400; line-height: 1.2em; text-transform: capitalize; color: rgba(255,255,255,.85); }
.team-card.light .team-info h5, .team-card.light .team-info h6 { color: var(--navy); }
.team-card .team-btn {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.team-card .team-btn:hover { transform: scale(1.1); }
.team-card .team-btn svg { width: 15px; height: 15px; fill: var(--black); }
@media (max-width: 1024px) { .team-head { flex-direction: column; } .team-head-right { width: 100%; padding-top: 0; } .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; } }

/* ---- Offer cards (packages) ---- */
.offers { padding: 50px 0 70px; }
.offers-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.offers-head .eyebrow { margin-bottom: 28px; }
.offers-head .sec-title { max-width: 560px; }
.offers-head-right { width: 480px; flex-shrink: 0; padding-top: 50px; }
.offers-head-right p { font-family: var(--sys); font-size: 16px; line-height: 24px; color: var(--text); }
.offers-head-right .btn { margin-top: 30px; }
.offers-grid { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.offer-card { background: var(--navy); border-radius: 20px; overflow: hidden; display: flex; align-items: stretch; }
.offer-img { width: 210px; flex-shrink: 0; object-fit: cover; align-self: stretch; }
.offer-body { flex: 1; min-width: 0; padding: 28px 25px; display: flex; flex-direction: column; }
.offer-badge { display: inline-block; align-self: flex-start; background: rgba(255,255,255,.14); border-radius: 100px; padding: 6px 14px; font-size: 13px; color: #fff; text-transform: capitalize; margin-bottom: 14px; }
.offer-body h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; line-height: 1.1em; text-transform: capitalize; color: #fff; }
.offer-body h3 .accent { font-style: italic; color: var(--gold); }
.offer-avatars { display: flex; margin-top: 16px; }
.offer-avatars img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--navy); object-fit: cover; margin-left: -8px; }
.offer-avatars img:first-child { margin-left: 0; }
.offer-body p { margin-top: 16px; font-family: var(--sys); font-size: 14px; line-height: 22px; color: rgba(255,255,255,.85); }
.offer-body .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 900px)  { .offers-head { flex-direction: column; } .offers-head-right { width: 100%; padding-top: 0; } .offers-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px)  { .offer-card { flex-direction: column; } .offer-img { width: 100%; height: 180px; } }

/* ---- Package cards (packages) ---- */
.pkg-section { padding: 50px 0 70px; }
.pkg-section .eyebrow { margin-bottom: 28px; }
.pkg-section .sec-title { text-align: center; max-width: 700px; margin: 0 auto; }
.pkg-grid { margin-top: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.pkg-card {
  position: relative; min-height: 599px; border-radius: 20px; overflow: hidden;
  display: flex;
}
.pkg-card .pkg-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.pkg-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,77,112,.97) 42%, rgba(14,77,112,.15) 75%); z-index: 1; }
.pkg-card-inner { position: relative; z-index: 2; padding: 40px; max-width: 62%; align-self: center; }
.pkg-tag { display: inline-block; background: rgba(255,255,255,.14); border-radius: 100px; padding: 7px 16px; font-size: 13px; color: #fff; text-transform: capitalize; margin-bottom: 20px; }
.pkg-card h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; line-height: 1em; text-transform: capitalize; color: #fff; }
.pkg-card > .pkg-card-inner > p { margin-top: 16px; font-family: var(--sys); font-size: 15px; line-height: 23px; color: rgba(255,255,255,.85); }
.pkg-features { margin-top: 22px; }
.pkg-features li { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 15px; color: #fff; }
.pkg-features li svg { width: 18px; height: 18px; flex: 0 0 18px; fill: var(--gold); }
.pkg-card .btn { margin-top: 26px; }
.pkg-price { position: absolute; z-index: 2; bottom: 40px; right: 34px; text-align: right; }
.pkg-price .amt { font-size: 40px; font-weight: 600; line-height: 1em; color: #fff; }
.pkg-price .per { font-size: 14px; color: rgba(255,255,255,.85); text-transform: capitalize; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }
@media (max-width: 767px) {
  .pkg-card { min-height: 0; }
  .pkg-card::after { background: linear-gradient(180deg, rgba(14,77,112,.85), rgba(14,77,112,.97)); }
  .pkg-card-inner { max-width: 100%; padding: 30px; }
  .pkg-price { position: static; transform: none; text-align: left; padding: 0 30px 30px; }
}

/* ---- Detail-packages pricing ---- */
.detail-section { padding: 60px 0 110px; }
.detail-grid { display: flex; gap: 30px; align-items: flex-start; }
.detail-pricecard { width: 404px; flex-shrink: 0; background: rgba(0,0,0,.015); border: 1px solid rgba(0,0,0,.06); border-radius: 20px; padding: 30px; }
.detail-pricecard .eyebrow { margin-bottom: 14px; }
.detail-pricecard > p { font-family: var(--sys); font-size: 15px; line-height: 23px; color: var(--text); }
.detail-pricecard .price-row { justify-content: flex-start; margin-top: 26px; }
.detail-pricecard .price-divider::after { margin: 0; }
.detail-pricecard .price-divider { align-items: flex-start; }
.detail-pricecard .price-features { margin-top: 4px; }
.detail-pricecard .btn { margin-top: 28px; width: 100%; }
.detail-right { flex: 1; min-width: 0; }
.detail-right .stars { display: flex; gap: 4px; margin-bottom: 16px; }
.detail-right .stars svg { width: 18px; height: 18px; fill: var(--gold); }
.detail-right h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 600; line-height: 1.1em; text-transform: capitalize; color: var(--black); }
.detail-right h2 .accent { font-style: italic; color: var(--navy); }
.detail-right > p { margin-top: 16px; font-family: var(--sys); font-size: 16px; line-height: 24px; color: var(--text); }
.detail-specs { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; border-top: 1px solid rgba(0,0,0,.1); border-bottom: 1px solid rgba(0,0,0,.1); padding: 22px 0; }
.detail-spec { display: flex; align-items: center; gap: 10px; }
.detail-spec svg { width: 26px; height: 26px; flex: 0 0 26px; fill: var(--gold); }
.detail-spec span { font-size: 14px; line-height: 18px; color: var(--black); text-transform: capitalize; }
.detail-tabs { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.detail-tab { padding: 12px 24px; border-radius: 100px; font-size: 14px; text-transform: capitalize; background: rgba(0,0,0,.05); color: var(--black); }
.detail-tab.active { background: var(--black); color: #fff; }
.detail-journey { margin-top: 30px; background: var(--navy); border-radius: 20px; padding: 36px; display: flex; gap: 26px; align-items: center; }
.detail-journey-left { flex: 1; }
.detail-journey-left h4 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; color: #fff; text-transform: capitalize; }
.detail-journey-left ul { margin-top: 18px; }
.detail-journey-left li { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 15px; color: #fff; }
.detail-journey-left li svg { width: 18px; height: 18px; flex: 0 0 18px; fill: var(--gold); }
.detail-journey img { width: 320px; height: 200px; object-fit: cover; border-radius: 16px; flex-shrink: 0; }
@media (max-width: 1024px) { .detail-grid { flex-direction: column; } .detail-pricecard { width: 100%; } .detail-specs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .detail-specs { grid-template-columns: 1fr; } .detail-journey { flex-direction: column; align-items: flex-start; } .detail-journey img { width: 100%; } }

/* ---- Contact hero ---- */
.contact-hero .hero-left { justify-content: center; }
.contact-hero .hero-form-card { background: rgba(0,0,0,.25); }
.contact-form .cf-row { display: flex; gap: 16px; margin-bottom: 16px; }
.contact-form .cf-field { flex: 1; display: flex; align-items: center; background: rgba(0,0,0,.45); border-radius: 12px; padding: 15px; }
.contact-form .cf-field svg { width: 20px; height: 20px; flex: 0 0 20px; stroke: #fff; fill: none; stroke-width: 1.5; margin-right: 12px; }
.contact-form .cf-field.cf-select::after { content: ""; margin-left: auto; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #fff; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--sys); font-size: 16px; color: #fff; -webkit-appearance: none; appearance: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.8); }
.contact-form .cf-msg { display: block; background: rgba(0,0,0,.45); border-radius: 12px; padding: 15px; margin-bottom: 16px; }
.contact-form .cf-msg textarea { min-height: 120px; resize: vertical; }
.contact-form .hf-submit { margin-top: 0; }
.contact-left-foot { margin-top: 30px; }
.contact-left-foot .email { display: block; font-size: 16px; color: #fff; margin-bottom: 22px; }
.contact-left-foot .email:hover { color: var(--gold); }
.contact-actions { display: flex; align-items: center; gap: 20px; }
.contact-note { margin-top: 26px; font-size: 18px; color: #fff; text-transform: capitalize; }

/* ---- Two-column FAQ (faq page) ---- */
.faq2 { padding: 60px 0 100px; }
.faq2-grid { display: flex; gap: 50px; align-items: flex-start; }
.faq2-left { width: 360px; flex-shrink: 0; }
.faq2-left .eyebrow { margin-bottom: 24px; }
.faq2-left .sec-title { font-size: 56px; }
.faq2-left .note { margin-top: 30px; font-size: 16px; color: var(--text); }
.faq2-left .btn { margin-top: 22px; }
.faq2-right { flex: 1; min-width: 0; }
@media (max-width: 1024px) { .faq2-grid { flex-direction: column; } .faq2-left { width: 100%; } .faq2-left .sec-title { font-size: 40px; } }

/* ---- 404 page ---- */
body.page-404 { background-image: none; }
.nf-wrap { display: flex; min-height: 100vh; }
.nf-left { width: 40%; position: relative; padding: 10px; }
.nf-left img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px 0 0 20px; }
.nf-right {
  width: 60%; background: var(--navy);
  background-image: url('img/bg-islamic-2-2.png');
  background-size: 460px; background-blend-mode: soft-light;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 40px;
}
.nf-404 { display: flex; align-items: center; justify-content: center; gap: 10px; }
.nf-404 span { font-size: 200px; font-weight: 700; line-height: 1; color: #fff; }
.nf-404 img { width: 180px; height: 180px; }
.nf-right h2 { margin-top: 10px; font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: #fff; text-transform: capitalize; }
.nf-right p { margin-top: 18px; max-width: 440px; font-family: var(--sys); font-size: 16px; line-height: 24px; color: rgba(255,255,255,.85); }
.nf-right .btn { margin-top: 30px; background: var(--gold); color: var(--black); border-radius: 100px; }
/* 404 has a solid header variant */
.site-header.solid { position: static; background: transparent; }
.site-header.solid .menu-link { color: #fff; }
@media (max-width: 900px) {
  .nf-wrap { flex-direction: column; }
  .nf-left { width: 100%; height: 240px; }
  .nf-left img { border-radius: 20px; height: 100%; }
  .nf-right { width: 100%; padding: 60px 24px; }
  .nf-404 span { font-size: 110px; }
  .nf-404 img { width: 100px; height: 100px; }
  .nf-right h2 { font-size: 30px; }
}

/* ---- generic inner page section reuse spacing ---- */
.inner-partners { padding: 70px 0; }
