    :root {
      --red:      #B41717;
      --red-lt:   #D2251F;
      --navy:     #131F6B;
      --dark:     #170707;
      --cream:    #FFF8F3;
      --border:   #F0E3DD;
      --muted:    #7A6F6B;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #1A1414;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .font-display { font-family: 'Poppins', sans-serif; }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: #f4f4f4; }
    ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

    /* ── NAV ── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(23,7,7,0.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(180,23,23,0.35);
      transition: background 0.3s, border-color 0.3s;
    }
    #navbar.scrolled { background: rgba(23,7,7,0.98); border-bottom-color: rgba(180,23,23,0.35); }

    .nav-link {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #fff;
      transition: color 0.2s;
      position: relative;
      padding-bottom: 2px;
    }
    .nav-link::after {
      content: '';
      position: absolute; bottom: -3px; left: 0; right: 0;
      height: 2px; background: var(--red-lt);
      transform: scaleX(1); transform-origin: left;
      transition: transform 0.25s;
    }
    .nav-link:hover { color: #fff; }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      padding: 8px 12px;
      border-radius: 8px;
      white-space: nowrap;
      line-height: 1.15;
      transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
    }
    .nav-cta:hover { transform: translateY(-1px); filter: brightness(1.08); }
    .nav-cta-call {
      background: var(--red);
      color: #fff;
      box-shadow: 0 6px 16px rgba(180,23,23,0.35);
    }
    .nav-cta-whatsapp {
      background: #25D366;
      color: #fff;
      box-shadow: 0 6px 16px rgba(37,211,102,0.35);
    }

    .service-fields { display: none; }
    .service-fields.is-active { display: block; }

    .nav-call-link {
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      color: #e8dcd8;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      padding: 7px 14px;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .nav-call-link i { color: var(--red-lt); font-size: 0.75rem; }
    .nav-call-link .nav-call-link-number { color: var(--red-lt); font-weight: 700; }
    .nav-call-link:hover {
      border-color: rgba(210,37,31,0.5);
      background: rgba(180,23,23,0.1);
      color: #fff;
    }

    /* Mobile-only click-to-call bar directly under the logo/hamburger row —
       always visible without opening the hamburger menu. */
    .nav-call-bar-mobile {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.76rem;
      font-weight: 600;
      color: #e8dcd8;
      background: rgba(255,255,255,0.05);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 9px 10px;
      transition: background 0.2s, color 0.2s;
    }
    .nav-call-bar-mobile i { color: var(--red-lt); font-size: 0.72rem; }
    .nav-call-bar-mobile:hover,
    .nav-call-bar-mobile:active {
      background: rgba(180,23,23,0.12);
      color: #fff;
    }
    @media (min-width: 380px) {
      .nav-call-bar-mobile { font-size: 0.82rem; }
    }

    /* ── HERO ── */
    .hero-section {
      position: relative;
      background: linear-gradient(180deg, #1c0a0a 0%, #2b0d0d 55%, #170707 100%);
      overflow: hidden;
    }
    .hero-bg-image {
      position: absolute; inset: 0;
      background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800&q=75&auto=format&fit=crop");
      background-size: cover; background-position: center;
      opacity: 0.32;
      mix-blend-mode: luminosity;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(23,7,7,0.55) 0%, rgba(23,7,7,0.75) 60%, rgba(23,7,7,0.97) 100%);
    }
    .hero-glow {
      position: absolute; top: -10%; right: -10%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(180,23,23,0.35) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── BADGE ── */
    .badge {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 999px;
      padding: 6px 16px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #f3e3df;
      background: rgba(255,255,255,0.06);
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--red-lt);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.7); }
    }

    /* ── HEADLINE ANIMATION ── */
    @keyframes fade-up {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .anim-1 { animation: fade-up 0.7s ease both; }
    .anim-2 { animation: fade-up 0.7s ease 0.12s both; }
    .anim-3 { animation: fade-up 0.7s ease 0.24s both; }
    .anim-4 { animation: fade-up 0.7s ease 0.36s both; }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--red);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 14px 30px;
      border-radius: 8px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 8px 24px rgba(180,23,23,0.35);
      border: none; cursor: pointer;
    }
    .btn-primary:hover {
      background: var(--red-lt);
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(180,23,23,0.5);
    }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid rgba(255,255,255,0.25);
      color: #f3e3df;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      padding: 14px 30px;
      border-radius: 8px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .btn-outline:hover {
      border-color: var(--red-lt);
      color: #fff;
      background: rgba(180,23,23,0.12);
    }

    /* ── SEARCH WIDGET CARD ── */
    #search { position: relative; }
    #search::before {
      content: '';
      position: absolute;
      inset: -22px;
      z-index: 0;
      background: radial-gradient(circle at 50% 35%, rgba(180,23,23,0.35), transparent 70%);
      filter: blur(22px);
      opacity: 0.35;
      pointer-events: none;
      animation: search-glow-pulse 4.5s ease-in-out infinite;
    }
    @keyframes search-glow-pulse {
      0%, 100% { opacity: 0.28; transform: scale(1); }
      50%      { opacity: 0.5;  transform: scale(1.05); }
    }
    @keyframes search-card-entrance {
      from { transform: scale(0.97); }
      to   { transform: scale(1); }
    }
    .search-widget-card {
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 30px 70px rgba(0,0,0,0.45);
      padding: 22px 18px 26px;
      position: relative;
      z-index: 5;
      animation: search-card-entrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .search-widget-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 40px 90px rgba(0,0,0,0.55);
    }
    @media (min-width: 640px) {
      .search-widget-card { padding: 28px 26px 30px; }
    }

    /* ── SEARCH WIDGET MICRO-INTERACTIONS ──
       Purely decorative additions on top of the vendor GOL IBE widget:
       only transform / box-shadow / filter / background-color are ever
       animated here (never layout-affecting properties like width, height,
       margin, padding, or display), and every selector is scoped under
       #aaz-flight-search so nothing leaks onto the rest of the page and
       none of the widget's own functionality/JS is touched. */
    #aaz-flight-search .header-search-form-tab {
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    #aaz-flight-search .header-search-form-tab:hover {
      transform: translateY(-2px);
    }
    #aaz-flight-search .header-search-form-tab-ico,
    #aaz-flight-search .header-search-form-tab-ico-return {
      transition: transform 0.3s ease;
    }
    #aaz-flight-search .header-search-form-tab:hover .header-search-form-tab-ico,
    #aaz-flight-search .header-search-form-tab:hover .header-search-form-tab-ico-return {
      transform: translateX(3px);
    }
    @keyframes tab-activate {
      0%   { transform: scale(0.94); }
      60%  { transform: scale(1.02); }
      100% { transform: scale(1); }
    }
    #aaz-flight-search .header-search-form-tab--active {
      animation: tab-activate 0.35s ease;
    }

    #aaz-flight-search .header-search-form-inner-field {
      transition: background-color 0.25s ease, box-shadow 0.25s ease;
      border-radius: 8px;
    }
    #aaz-flight-search .header-search-form-inner-field:hover {
      background-color: rgba(180,23,23,0.045);
    }
    #aaz-flight-search .header-search-form-inner-field:focus-within {
      box-shadow: 0 0 0 3px rgba(180,23,23,0.15);
    }

    #aaz-flight-search .counter-sign,
    #aaz-flight-search .header-search-form-additional-bottom-tolerance-minus,
    #aaz-flight-search .header-search-form-additional-bottom-tolerance-plus {
      transition: transform 0.15s ease;
    }
    #aaz-flight-search .counter-sign:hover,
    #aaz-flight-search .header-search-form-additional-bottom-tolerance-minus:hover,
    #aaz-flight-search .header-search-form-additional-bottom-tolerance-plus:hover {
      transform: scale(1.2);
    }
    #aaz-flight-search .counter-sign:active,
    #aaz-flight-search .header-search-form-additional-bottom-tolerance-minus:active,
    #aaz-flight-search .header-search-form-additional-bottom-tolerance-plus:active {
      transform: scale(0.88);
    }

    #aaz-flight-search .button-main-search {
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }
    #aaz-flight-search .button-main-search::after {
      content: '';
      position: absolute;
      top: 0; left: -60%;
      width: 35%; height: 100%;
      background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
      transform: skewX(-18deg);
      transition: left 0.65s ease;
      pointer-events: none;
    }
    #aaz-flight-search .button-main-search:hover::after {
      left: 130%;
    }
    #aaz-flight-search .button-main-search:hover {
      transform: translateY(-2px) scale(1.015);
      filter: brightness(1.06);
      box-shadow: 0 10px 26px rgba(0,0,0,0.25);
    }
    #aaz-flight-search .button-main-search:active {
      transform: translateY(0) scale(0.98);
    }

    /* ── SECTION LABELS ── */
    .section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 28px; height: 2px;
      background: var(--red);
    }

    /* ── SERVICE CARDS ── */
    .service-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      position: relative;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20,5,5,0.12); border-color: rgba(180,23,23,0.25); }

    .service-img-wrap { position: relative; overflow: hidden; height: 260px; }
    .service-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s;
    }
    .service-card:hover .service-img-wrap img { transform: scale(1.06); }
    .service-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(23,7,7,0.75) 0%, transparent 55%);
    }
    .service-tag {
      position: absolute; top: 16px; left: 16px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      background: var(--red);
      padding: 5px 12px;
      border-radius: 999px;
    }

    .feature-check {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.86rem; color: #4a4241;
      padding: 5px 0;
    }
    .feature-check i { color: var(--red); font-size: 0.8rem; margin-top: 3px; }

    /* ── TRUST CARDS ── */
    .trust-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 22px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .trust-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(20,5,5,0.1); }

    /* ── STAT STRIP ── */
    .stat-strip {
      background: var(--navy);
    }

    /* ── FAQ ACCORDION ── */
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question {
      cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
      padding: 22px 4px;
      font-weight: 600;
      color: #1A1414;
    }
    .faq-question .faq-icon { transition: transform 0.3s; color: var(--red); flex-shrink: 0; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.65;
    }
    .faq-answer-inner { padding: 0 4px 22px; }

    /* ── UMRAH & HAJJ QUESTIONNAIRE (conditional form fields) ──
       Base max-height: 0 collapses this section by default; the JS below
       sets an explicit inline max-height (the section's real scrollHeight)
       to open it, and clears the inline style to close it again, letting
       it fall back to this 0 value. */
    /* ── CONTACT FORM ── */
    .form-input {
      width: 100%;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 13px 16px;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      color: #1A1414;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-input::placeholder { color: #b8aca8; }
    .form-input:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(180,23,23,0.12);
    }
    .form-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #8a7d78;
      margin-bottom: 6px;
    }

    /* ── FOOTER ── */
    /* All footer text/links share ONE consistent, readable colour against
       the dark footer background (instead of a mix of different Tailwind
       gray shades, which is what made some lines look dimmer/near-invisible
       than others). `!important` also defensively beats the vendor GOL IBE
       stylesheet's global `a:visited { color: inherit }` rule (which — since
       it has higher CSS specificity than a single custom class — could
       otherwise silently recolour a visited footer link to an inherited,
       near-black body text colour). */
    .footer-link, .footer-text, .footer-social-btn {
      font-size: 0.85rem; color: #c7bab6 !important;
      transition: color 0.2s;
    }
    .footer-link:hover, .footer-social-btn:hover { color: #fff !important; }
    .footer-text { display: block; }

    /* ── MOBILE NAV ── */
    #mobile-menu {
      display: none;
      background: rgba(23,7,7,0.99);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    #mobile-menu.open { display: block; }

    /* ── DIVIDER ── */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── GROUPED FORM SECTIONS (Umrah enquiry form) ── */
    .form-section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
      padding-top: 4px;
      border-top: 1px dashed var(--border);
    }
    .form-section-label:first-child { border-top: none; padding-top: 0; }

    /* ── SUCCESS MESSAGE ── */
    #form-success, .form-success {
      display: none;
      background: rgba(180,23,23,0.08);
      border: 1px solid rgba(180,23,23,0.25);
      border-radius: 10px;
      padding: 16px;
      text-align: center;
      color: #1A1414;
      font-size: 0.875rem;
      margin-bottom: 20px;
    }

    /* ── ROUTE CHIP ── */
    .route-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px 20px;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .route-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(20,5,5,0.08); border-color: rgba(180,23,23,0.25); }
    .route-tag {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 3px 9px; border-radius: 999px;
    }
    .route-tag.cheapest { background: rgba(180,23,23,0.1); color: var(--red); }
    .route-tag.popular  { background: rgba(19,31,107,0.1); color: var(--navy); }
    .route-tag.value    { background: rgba(16,120,80,0.1); color: #0e7a52; }
    .route-card-actions { display: flex; gap: 8px; margin-top: 14px; }
    .route-card-action {
      flex: 1;
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      font-size: 0.72rem; font-weight: 700;
      padding: 8px 10px;
      border-radius: 8px;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .route-card-action.call {
      background: rgba(180,23,23,0.08);
      color: var(--red);
      border: 1px solid rgba(180,23,23,0.2);
    }
    .route-card-action.call:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
    .route-card-action.whatsapp {
      background: rgba(37,211,102,0.1);
      color: #128C4A;
      border: 1px solid rgba(37,211,102,0.3);
    }
    .route-card-action.whatsapp:hover { background: #25D366; color: #fff; transform: translateY(-2px); }

    /* ── NAV: TRUST STRIP ── */
    .trust-strip {
      border-top: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
    }
    .trust-pill {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 0.72rem; font-weight: 600;
      padding: 7px 14px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,0.1);
      background: rgba(0,0,0,0.02);
      white-space: nowrap;
    }
    .trust-pill i { color: var(--red); font-size: 0.72rem; }
    .trust-pill-dark {
      color: #f3e3df !important;
      border-color: rgba(255,255,255,0.18) !important;
      background: rgba(255,255,255,0.06) !important;
    }
    .trust-pill-dark i { color: var(--red-lt) !important; }

    /* ── NAV: TRAVEL SERVICES DROPDOWN (desktop) ── */
    .nav-dropdown { position: relative; }
    .nav-dropdown-trigger {
      display: inline-flex; align-items: center; gap: 6px;
      cursor: pointer;
    }
    .nav-dropdown-trigger i { font-size: 0.65rem; transition: transform 0.2s; }
    .nav-dropdown.open .nav-dropdown-trigger i { transform: rotate(180deg); }
    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 14px); left: 50%;
      transform: translateX(-50%) translateY(-8px);
      min-width: 230px;
      background: #1c0a0a;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      box-shadow: 0 24px 48px rgba(0,0,0,0.5);
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 40;
    }
    .nav-dropdown.open .nav-dropdown-menu {
      opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu a {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 12px;
      border-radius: 8px;
      font-size: 0.82rem; font-weight: 600;
      color: #e8dcd8;
      transition: background 0.2s, color 0.2s;
    }
    .nav-dropdown-menu a:hover { background: rgba(180,23,23,0.15); color: #fff; }
    .nav-dropdown-menu a i { color: var(--red-lt); font-size: 0.8rem; width: 16px; text-align: center; }

    /* ── NAV: TRAVEL SERVICES ACCORDION (mobile) ── */
    .mobile-nav-dropdown-trigger {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%;
      cursor: pointer;
    }
    .mobile-nav-dropdown-trigger i.chevron { transition: transform 0.2s; font-size: 0.7rem; }
    .mobile-nav-dropdown-trigger.open i.chevron { transform: rotate(180deg); }
    .mobile-nav-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding-left: 16px;
    }

    /* ── WHY CHOOSE US ── */
    .why-choose-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 26px 22px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .why-choose-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(20,5,5,0.1); }
    .why-choose-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      background: rgba(180,23,23,0.1);
      color: var(--red);
      font-size: 1.35rem;
    }

    /* ── TESTIMONIALS ── */
    .testimonial-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 26px;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex; flex-direction: column;
    }
    .testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(20,5,5,0.1); }
    .testimonial-stars { color: #F5A623; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 12px; }
    .testimonial-quote { color: #4a4241; font-size: 0.92rem; line-height: 1.65; flex-grow: 1; margin-bottom: 18px; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .testimonial-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--navy);
      color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem;
      flex-shrink: 0;
    }
    .testimonial-name { font-weight: 700; font-size: 0.88rem; color: #1A1414; }
    .testimonial-meta { font-size: 0.76rem; color: #8a7d78; }

    /* ── SECONDARY-PAGE HERO (Umrah Packages, Holiday Packages, About Us, etc.) ── */
    .page-hero {
      position: relative;
      background: linear-gradient(180deg, #1c0a0a 0%, #2b0d0d 55%, #170707 100%);
      overflow: hidden;
      padding-top: 132px;
      padding-bottom: 64px;
    }
    .page-hero .hero-bg-image,
    .page-hero .hero-overlay,
    .page-hero .hero-glow { position: absolute; inset: 0; pointer-events: none; }
    .page-hero-breadcrumb {
      font-size: 0.78rem; font-weight: 600;
      color: #c7bab6;
    }
    .page-hero-breadcrumb a { color: #c7bab6; transition: color 0.2s; }
    .page-hero-breadcrumb a:hover { color: #fff; }
    .page-hero-breadcrumb i { font-size: 0.65rem; margin: 0 8px; color: rgba(255,255,255,0.35); }

    /* ── GENERIC CONTENT CARD (used on secondary pages) ── */
    .content-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 26px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .content-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(20,5,5,0.1); }
    .content-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      background: rgba(180,23,23,0.1);
      color: var(--red);
      font-size: 1.25rem;
    }

    /* ── STICKY MOBILE CALL/WHATSAPP BAR (secondary pages, no search widget) ── */
    .sticky-cta-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
      display: flex;
      background: #170707;
      border-top: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
    }
    .sticky-cta-bar a {
      flex: 1;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 10px;
      font-size: 0.82rem; font-weight: 700;
      color: #fff;
    }
    .sticky-cta-bar a.call { background: var(--red); }
    .sticky-cta-bar a.whatsapp { background: #25D366; }

    /* ── LEGAL PAGES (Terms, Privacy, Cookies) ── */
    .legal-content a { text-decoration: underline; text-decoration-color: rgba(180,23,23,0.35); }
    .legal-content a:hover { text-decoration-color: var(--red); }
    .legal-content h2:first-child { margin-top: 0; }

