/*
 * =============================================================================
 * e& brand typography (single source of truth for the whole site)
 * Fonts: Suisse International (EN) · Vazirmatn (Dari / Pashto)
 * Loaded via Helix custom.css — applies to all pages/components.
 * =============================================================================
 */

/* --- Face files ----------------------------------------------------------- */

/* Suisse International — brand weights: Regular, Medium, Bold.
   Only Light/Regular/Medium files are available; map Bold (600–700) to Medium. */
@font-face {
  font-family: "Suisse International";
  src: url("../fonts/Suisse/SuisseIntl-Light-WebM.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse International";
  src: url("../fonts/Suisse/SuisseIntl-Regular-WebM.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse International";
  src: url("../fonts/Suisse/SuisseIntl-Medium-WebM.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse International";
  src: url("../fonts/Suisse/SuisseIntl-Medium-WebM.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse International";
  src: url("../fonts/Suisse/SuisseIntl-Medium-WebM.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Vazirmatn — Dari & Pashto (RTL), full weight range */
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Wazir/Vazirmatn-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Wazir/Vazirmatn-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Wazir/Vazirmatn-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Wazir/Vazirmatn-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Wazir/Vazirmatn-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Wazir/Vazirmatn-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Wazir/Vazirmatn-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Wazir/Vazirmatn-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Wazir/Vazirmatn-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- Brand tokens --------------------------------------------------------- */
:root {
  --eand-font-en: "Suisse International", Arial, sans-serif;
  --eand-font-rtl: "Vazirmatn", Tahoma, Arial, sans-serif;
  --eand-red: #e30613;
  --eand-navy: #181f4b;
  --eand-grey: #71716f;
  --eand-medium-grey: #9c9c99;
  --eand-footnote: #8a8a8a;
  --eand-body-size: 1rem;
  --eand-body-lh: 1.6;
}

/* --- Language stacks (override Helix Helvetica/Arial) --------------------- */
body.en-gb,
body.en-gb button,
body.en-gb input,
body.en-gb select,
body.en-gb textarea,
body.en-gb .btn {
  font-family: var(--eand-font-en) !important;
}

body.fa-ir,
body.fa-ir button,
body.fa-ir input,
body.fa-ir select,
body.fa-ir textarea,
body.fa-ir .btn,
body.prs-af,
body.prs-af button,
body.prs-af input,
body.prs-af select,
body.prs-af textarea,
body.prs-af .btn {
  font-family: var(--eand-font-rtl) !important;
}

/* Keep Font Awesome / Helix icon fonts intact */
.fa,
.fas,
.far,
.fal,
.fa-solid,
.fa-regular {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
}
.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
}

/* Body copy — Suisse/Vazir Regular, navy */
body.en-gb,
body.fa-ir,
body.prs-af {
  color: var(--eand-navy);
  font-weight: 400;
  font-size: var(--eand-body-size);
  line-height: var(--eand-body-lh);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.en-gb {
  text-align: left;
}
body.fa-ir,
body.prs-af {
  text-align: right;
}

/* Brand “incorrect use” safeguards */
body.en-gb,
body.fa-ir,
body.prs-af,
body.en-gb h1,
body.en-gb h2,
body.en-gb h3,
body.en-gb h4,
body.en-gb h5,
body.en-gb h6,
body.fa-ir h1,
body.fa-ir h2,
body.fa-ir h3,
body.fa-ir h4,
body.fa-ir h5,
body.fa-ir h6,
body.prs-af h1,
body.prs-af h2,
body.prs-af h3,
body.prs-af h4,
body.prs-af h5,
body.prs-af h6 {
  text-shadow: none;
  font-stretch: normal;
  background-image: none;
}

/* --- Heading hierarchy (site-wide) ----------------------------------------
 * EN guide: Headline/Subhead = Bold/Medium + brand red; sentence case
 * RTL guide: same roles, right-aligned, Vazirmatn Bold/Medium
 */
body.en-gb h1,
body.en-gb h2,
body.en-gb h3,
body.en-gb h4,
body.en-gb h5,
body.en-gb h6,
body.fa-ir h1,
body.fa-ir h2,
body.fa-ir h3,
body.fa-ir h4,
body.fa-ir h5,
body.fa-ir h6,
body.prs-af h1,
body.prs-af h2,
body.prs-af h3,
body.prs-af h4,
body.prs-af h5,
body.prs-af h6,
.eand-headline,
.eand-callout,
.eand-subhead {
  font-family: inherit !important;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;
}

/* Headlines */
body.en-gb h1,
body.fa-ir h1,
body.prs-af h1,
.eand-headline {
  color: var(--eand-red);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.75rem);
  line-height: 1.25;
}

/* Callouts / large supporting titles */
body.en-gb h2,
body.fa-ir h2,
body.prs-af h2,
.eand-callout {
  color: var(--eand-navy);
  font-weight: 700;
  font-size: clamp(1.375rem, 1.4vw + 0.9rem, 2rem);
  line-height: 1.3;
}

/* Subheads */
body.en-gb h3,
body.fa-ir h3,
body.prs-af h3,
.eand-subhead {
  color: var(--eand-red);
  font-weight: 500;
  font-size: clamp(1.125rem, 0.8vw + 0.9rem, 1.5rem);
  line-height: 1.35;
}

body.en-gb h4,
body.fa-ir h4,
body.prs-af h4 {
  color: var(--eand-red);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4;
}

body.en-gb h5,
body.fa-ir h5,
body.prs-af h5 {
  color: var(--eand-navy);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
}

body.en-gb h6,
body.fa-ir h6,
body.prs-af h6 {
  color: var(--eand-navy);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Body / footnotes */
body.en-gb p,
body.fa-ir p,
body.prs-af p,
.eand-body {
  color: var(--eand-navy);
  font-weight: 400;
  line-height: var(--eand-body-lh);
}

body.en-gb small,
body.fa-ir small,
body.prs-af small,
.eand-footnote,
.footnote {
  color: var(--eand-footnote);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* --- CTAs (primary / secondary) ------------------------------------------- */
.eand-cta,
.eand-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
}

.eand-cta {
  background-color: var(--eand-red);
  border-color: var(--eand-red);
  color: #fff !important;
}
.eand-cta:hover,
.eand-cta:focus {
  background-color: #c10510;
  border-color: #c10510;
  color: #fff !important;
}

.eand-cta-secondary {
  background-color: #fff;
  border-color: var(--eand-red);
  color: var(--eand-red) !important;
}
.eand-cta-secondary:hover,
.eand-cta-secondary:focus {
  background-color: var(--eand-red);
  color: #fff !important;
}

/* Align common Bootstrap primary buttons with brand CTA */
body.en-gb .btn-primary,
body.fa-ir .btn-primary,
body.prs-af .btn-primary {
  background-color: var(--eand-red);
  border-color: var(--eand-red);
  font-weight: 700;
  text-transform: none;
}
body.en-gb .btn-primary:hover,
body.fa-ir .btn-primary:hover,
body.prs-af .btn-primary:hover,
body.en-gb .btn-primary:focus,
body.fa-ir .btn-primary:focus,
body.prs-af .btn-primary:focus {
  background-color: #c10510;
  border-color: #c10510;
}

body.en-gb .btn-outline-primary,
body.fa-ir .btn-outline-primary,
body.prs-af .btn-outline-primary {
  color: var(--eand-red);
  border-color: var(--eand-red);
  background: #fff;
  font-weight: 700;
  text-transform: none;
}

/* Megamenu / off-canvas inherit language stack */
#sp-header,
#offcanvas-toggler,
.sp-megamenu-parent,
.offcanvas-menu {
  font-family: inherit;
}

/* =============================================================================
 * End brand typography
 * ============================================================================= */

/* Shared home cards (EN / Dari / Pashto articles — one Helix custom.css for all styles) */
/* Shared home cards (EN / Dari / Pashto articles — one Helix custom.css for all styles) */
.dari-home,
.pashto-home,
.english-home {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 15px;
  box-sizing: border-box;
}
.dari-home *,
.dari-home *::before,
.dari-home *::after,
.pashto-home *,
.pashto-home *::before,
.pashto-home *::after,
.english-home *,
.english-home *::before,
.english-home *::after {
  box-sizing: border-box;
}

/* RTL languages */
.dari-home,
.pashto-home {
  direction: rtl;
  text-align: right;
}
/* LTR */
.english-home {
  direction: ltr;
  text-align: left;
}

.dari-home-heading,
.pashto-home-heading,
.english-home-heading {
  font-size: clamp(1.375rem, 1.4vw + 0.9rem, 2rem);
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--eand-navy);
}

.dari-home-grid,
.pashto-home-grid,
.english-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.homepagecards-card {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 390px;
}
.homepagecards-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.homepagecards-title {
  font-weight: 500 !important;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.2px;
  margin: 0;
  padding-top: 18px;
  color: var(--eand-red) !important;
}
.dari-home .homepagecards-text,
.pashto-home .homepagecards-text {
  text-align: right;
}
.english-home .homepagecards-text {
  text-align: left;
}
.homepagecards-text {
  margin: 12px 18px 0;
  line-height: 1.4;
  color: #555;
  flex: 1;
}
.homepagecards-btn {
  display: block;
  width: 92%;
  margin: auto auto 18px;
  padding: 14px 0;
  background: #e00800;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 600 !important;
  border-radius: 9999px;
  text-align: center;
  line-height: 1;
}
.homepagecards-btn:hover {
  color: #fff !important;
  text-decoration: none !important;
  background: #c90700;
}

/* VAS hub (Personal → VAS → Value Added Services) — reuse card chrome */
.vas-home-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 15px 30px;
  box-sizing: border-box;
}
.vas-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 8px 0 24px;
}
.vas-home-page .vas-home-card {
  min-height: 0;
  padding-top: 8px;
}
.vas-home-page .homepagecards-title {
  padding-top: 18px;
  padding-inline: 14px;
}
.vas-home-page[data-lang="dr"] .homepagecards-text,
.vas-home-page[data-lang="ps"] .homepagecards-text {
  text-align: right;
}
.vas-home-page[data-lang="en"] .homepagecards-text {
  text-align: left;
}
@media (max-width: 991px) {
  .vas-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .vas-home-grid {
    grid-template-columns: 1fr;
  }
}

.dari-home-cta,
.pashto-home-cta,
.english-home-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 20px 0 30px;
}
.dari-home-cta-title,
.pashto-home-cta-title,
.english-home-cta-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #111;
}
.dari-home-cta-text,
.pashto-home-cta-text {
  text-align: right;
}
.english-home-cta-text {
  text-align: left;
}
.dari-home-cta-text,
.pashto-home-cta-text,
.english-home-cta-text {
  margin: 0 0 20px;
  line-height: 1.7;
  color: #555;
}
.dari-home-cta-btn,
.pashto-home-cta-btn,
.english-home-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #e00800;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 9999px;
}
.dari-home-cta-btn:hover,
.pashto-home-cta-btn:hover,
.english-home-cta-btn:hover {
  background: #c90700;
  color: #fff !important;
  text-decoration: none !important;
}
.dari-home-cta-media img,
.pashto-home-cta-media img,
.english-home-cta-media img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .dari-home-grid,
  .pashto-home-grid,
  .english-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dari-home-cta,
  .pashto-home-cta,
  .english-home-cta {
    grid-template-columns: 1fr;
  }
  .dari-home-cta-media,
  .pashto-home-cta-media,
  .english-home-cta-media {
    order: -1;
  }
}
@media (max-width: 575px) {
  .dari-home-grid,
  .pashto-home-grid,
  .english-home-grid {
    grid-template-columns: 1fr;
  }
  .homepagecards-card {
    min-height: 0;
  }
}

#sp-menu .lang-switcher {
  margin-inline-start: 32px; /* increase as needed */
}

#sp-menu .lang-switcher .mod-languages__select .btn {
  --bs-btn-bg: var(--eand-grey);
  --bs-btn-border-color: var(--eand-grey);
  --bs-btn-hover-bg: var(--eand-medium-grey);
  --bs-btn-hover-border-color: var(--eand-medium-grey);
  --bs-btn-active-bg: var(--eand-medium-grey);
  --bs-btn-active-border-color: var(--eand-medium-grey);
  background-color: var(--eand-grey);
  border-color: var(--eand-grey);
}

#sp-menu .lang-switcher .mod-languages__select .btn:hover,
#sp-menu .lang-switcher .mod-languages__select .btn:focus,
#sp-menu .lang-switcher .mod-languages__select .btn:active,
#sp-menu .lang-switcher .mod-languages__select .btn.show {
  background-color: var(--eand-medium-grey);
  border-color: var(--eand-medium-grey);
}

#sp-menu .lang-switcher .mod-languages ul > li > a:hover,
#sp-menu .lang-switcher .mod-languages ul > li > a:focus,
#sp-menu .lang-switcher .mod-languages ul > li > a:active {
  color: var(--eand-red);
}

/*
 * Mobile header: keep logo + language switcher + burger inside the
 * Helix header bar (default height 60px). Without this, the logo and
 * lang dropdown can spill onto the hero/slider below ~992px.
 */
@media (max-width: 991.98px) {
  #sp-header .container-inner > .row {
    align-items: center;
    flex-wrap: nowrap;
    min-height: 60px;
  }

  #sp-logo,
  #sp-menu {
    display: flex;
    align-items: center;
  }

  #sp-logo .logo,
  #sp-logo .logo a {
    display: inline-flex;
    align-items: center;
    max-height: 60px;
  }

  #sp-logo .logo-image,
  #sp-logo img {
    max-height: 40px;
    width: auto;
    height: auto;
  }

  #sp-menu .sp-column {
    gap: 0.5rem;
    min-width: 0;
  }

  #sp-menu .lang-switcher {
    margin-inline-start: 8px;
    flex-shrink: 0;
  }

  #sp-menu .lang-switcher .mod-languages__select .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  #sp-menu .offcanvas-toggler,
  #sp-menu a.offcanvas-toggler {
    margin-inline: 0 0;
    flex-shrink: 0;
  }
}

@media (max-width: 575.98px) {
  #sp-logo .logo-image,
  #sp-logo img {
    max-height: 34px;
  }

  #sp-menu .lang-switcher {
    margin-inline-start: 4px;
  }

  #sp-menu .lang-switcher .mod-languages__select .btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
  }
}

/* Hide top-level RTL carets (match English; avoids broken FA boxes) */
body.rtl .sp-megamenu-parent > li.sp-has-child > a::before,
body.rtl .sp-megamenu-parent > li.sp-has-child > span::before,
body.rtl .sp-megamenu-parent > li.sp-has-child > a::after,
body.rtl .sp-megamenu-parent > li.sp-has-child > span::after {
  content: none !important;
  display: none !important;
  margin: 0 !important;
}

/* RTL megamenu submenu / flyout carets — Helix rtl.css misses font-weight:900 (FA6 solid) */
body.rtl .sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child > a::after,
body.rtl .sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child > span::after {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  content: "\f104" !important; /* angle-left for RTL flyouts */
  float: left !important;
  margin-right: 7px !important;
  display: inline-block !important;
  -webkit-font-smoothing: antialiased;
}

/*
 * Mega menu hover/active text = white (EN / Dari / Pashto — one rule for LTR + RTL).
 * Template custom CSS sets color on <li>, but <a> still uses grey — force white on the link.
 */
.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active {
  background-color: var(--e-red, #e00800);
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover > a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover > a:link,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover > a:visited,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover > a:hover,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover > a:focus,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item:hover > span:not(.sp-menu-badge),
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a:link,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a:visited,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a:hover,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a:focus,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > span:not(.sp-menu-badge) {
  color: var(--e-white, #fff) !important;
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child:hover > a::after,
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child.active > a::after {
  color: var(--e-white, #fff) !important;
}

/* =========================
   Promotion pages (article HTML, no Quix)
   ========================= */
.promo-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 15px 40px;
  box-sizing: border-box;
  color: #17161f;
}
.promo-page *,
.promo-page *::before,
.promo-page *::after {
  box-sizing: border-box;
}
.promo-page-banner {
  margin: 0 0 28px;
}
.promo-page-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.promo-page-heading {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #18114b;
}
.promo-page-lead {
  margin: 28px 0 16px;
  font-size: 18px;
  line-height: 1.5;
  color: #17161f;
}

.promo-section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: #18114b;
}
.promo-page-note {
  margin: 20px 0 12px;
  line-height: 1.5;
}
.promo-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 8px;
}
.promo-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}
.promo-table th,
.promo-table td {
  padding: 14px 12px;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
  vertical-align: middle;
  border: 0;
  border-bottom: 2px solid #d9d9d9;
  color: #0a0a0a;
}
.promo-table th {
  background: #f0f0ea;
  font-weight: 600;
  white-space: nowrap;
}
.promo-table th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.promo-table th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.promo-table tbody tr:hover td {
  background: #fafafa;
}
.promo-table--featured {
  margin-bottom: 8px;
}
.promo-page-terms {
  margin: 16px 0 24px;
  padding-left: 1.25rem;
  line-height: 1.6;
  color: #353738;
}
.promo-page-terms li {
  margin: 0 0 8px;
}
.promo-page-contact {
  line-height: 1.6;
  color: #17161f;
}
.promo-page-contact p {
  margin: 0 0 8px;
}

/* RTL promo pages (Dari / Pashto articles) */
body.rtl .promo-page,
.promo-page.promo-page--rtl {
  direction: rtl;
  text-align: right;
}
body.rtl .promo-table th,
body.rtl .promo-table td,
.promo-page--rtl .promo-table th,
.promo-page--rtl .promo-table td {
  text-align: right;
}
body.rtl .promo-page-terms,
.promo-page--rtl .promo-page-terms {
  padding-left: 0;
  padding-right: 1.25rem;
}

@media (max-width: 767px) {
  .promo-page-heading {
    font-size: 22px;
  }
  .promo-table th,
  .promo-table td {
    font-size: 14px;
    padding: 12px 10px;
  }
}

/* =========================
   Shared page tabs (Roaming, e& Money, future)
   Pattern: dark bar + red active pill, white labels
   ========================= */
.roam-tabs {
  position: relative;
  margin: 0 0 28px;
}
.roam-tabs > input[type="radio"],
.roam-tabs .roam-tab-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.roam-tabs .roam-tablist {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  width: 100%;
  background: #1a1730;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}
.roam-tabs .roam-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 14px 28px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 0;
  line-height: 1.2;
  text-decoration: none !important;
  box-shadow: none !important;
}
.roam-tabs .roam-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}
.roam-tabs .roam-panel {
  display: none;
}
.roam-tabs .roam-panels {
  margin-top: 24px;
}

/* Active tab + visible panel (shared; works for Money, Roaming, future) */
.roam-tabs:has(> input:nth-of-type(1):checked) .roam-tablist > .roam-tab:nth-child(1),
.roam-tabs:has(> input:nth-of-type(2):checked) .roam-tablist > .roam-tab:nth-child(2),
.roam-tabs:has(> input:nth-of-type(3):checked) .roam-tablist > .roam-tab:nth-child(3),
.roam-tabs:has(> input:nth-of-type(4):checked) .roam-tablist > .roam-tab:nth-child(4),
.roam-tabs:has(> input:nth-of-type(5):checked) .roam-tablist > .roam-tab:nth-child(5),
.roam-tabs:has(> input:nth-of-type(6):checked) .roam-tablist > .roam-tab:nth-child(6),
.roam-tabs:has(> input:nth-of-type(7):checked) .roam-tablist > .roam-tab:nth-child(7),
.roam-tabs:has(> input:nth-of-type(8):checked) .roam-tablist > .roam-tab:nth-child(8) {
  background: #e30613 !important;
  color: #fff !important;
}
.roam-tabs:has(> input:nth-of-type(1):checked) .roam-panels > .roam-panel-0,
.roam-tabs:has(> input:nth-of-type(2):checked) .roam-panels > .roam-panel-1,
.roam-tabs:has(> input:nth-of-type(3):checked) .roam-panels > .roam-panel-2,
.roam-tabs:has(> input:nth-of-type(4):checked) .roam-panels > .roam-panel-3,
.roam-tabs:has(> input:nth-of-type(5):checked) .roam-panels > .roam-panel-4,
.roam-tabs:has(> input:nth-of-type(6):checked) .roam-panels > .roam-panel-5,
.roam-tabs:has(> input:nth-of-type(7):checked) .roam-panels > .roam-panel-6,
.roam-tabs:has(> input:nth-of-type(8):checked) .roam-panels > .roam-panel-7 {
  display: block;
}

/* =========================
   International Roaming content
   ========================= */
.promo-roaming .roam-panel > p {
  margin: 0 0 14px;
  line-height: 1.65;
  font-size: 16px;
}
.promo-roaming .roam-partners {
  margin: 22px 0 28px;
}
.promo-roaming .roam-partners h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #18114b;
}
.promo-roaming .roam-jump {
  color: #e30613;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
  display: inline;
}
.promo-roaming .roam-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-top: 8px;
}
.promo-roaming .roam-col h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.35;
  color: #18114b;
}
.promo-roaming .roam-col p {
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 15px;
}
/* Shared accordion (Charges regions, Money services, etc.) */
.roam-acc {
  border: 0;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  margin: 0;
  background: #fff;
}
.roam-acc summary {
  cursor: pointer;
  padding: 16px 8px;
  font-weight: 600;
  font-size: 18px;
  color: #18114b;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
body.rtl .roam-acc summary {
  padding-right: 8px;
  padding-left: 48px;
}
.roam-acc summary::-webkit-details-marker {
  display: none;
}
.roam-acc summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #666;
}
body.rtl .roam-acc summary::after {
  right: auto;
  left: 8px;
}
.roam-acc[open] summary::after {
  content: "–";
}
.roam-acc .roam-acc-body {
  padding: 0 8px 18px;
}
.roam-acc .promo-table-wrap {
  padding: 0 12px 12px;
}
.promo-roaming .promo-table--roaming {
  min-width: 920px;
}
.promo-roaming .promo-table--compact {
  min-width: 640px;
}
.promo-roaming .roam-docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.promo-roaming .roam-doc {
  background: #f7f7f4;
  border-radius: 8px;
  padding: 20px 22px;
}
.promo-roaming .roam-doc h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #18114b;
}
.promo-roaming .roam-doc ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.55;
}
body.rtl .promo-roaming .roam-doc ul {
  padding-left: 0;
  padding-right: 1.2rem;
}
.promo-roaming .roam-doc li {
  margin: 0 0 8px;
}

@media (max-width: 767px) {
  .roam-tabs .roam-tab {
    padding: 12px 16px;
    font-size: 14px;
  }
  .promo-roaming .roam-cols,
  .promo-roaming .roam-docs {
    grid-template-columns: 1fr;
  }
}

/* =========================
   YahClick Satellite Broadband
   ========================= */
.promo-yahclick .yah-features,
.promo-yahclick .yah-list {
  margin: 18px 0 24px;
  padding-left: 1.25rem;
  line-height: 1.6;
  color: #353738;
}
body.rtl .promo-yahclick .yah-features,
body.rtl .promo-yahclick .yah-list {
  padding-left: 0;
  padding-right: 1.25rem;
}
.promo-yahclick .yah-features li,
.promo-yahclick .yah-list li {
  margin: 0 0 10px;
}
.promo-yahclick .yah-subheading {
  margin: 28px 0 12px;
  font-size: 18px;
  color: #18114b;
}
.promo-yahclick .yah-contact {
  margin-top: 28px;
  padding-top: 8px;
}
.promo-yahclick .yah-contact a {
  color: #e30613;
}

/* =========================
   Business Carrier & Wholesale
   ========================= */
.promo-carrier {
  max-width: 920px;
}
.promo-carrier > p,
.promo-carrier p {
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 16px;
  color: #353738;
}
.promo-carrier h3 {
  margin: 28px 0 12px;
  font-size: 20px;
  color: #18114b;
}
.promo-carrier .cw-list {
  margin: 8px 0 20px;
  padding-left: 1.35rem;
  line-height: 1.65;
  color: #353738;
}
body.rtl .promo-carrier .cw-list {
  padding-left: 0;
  padding-right: 1.35rem;
}
.promo-carrier .cw-list li {
  margin: 0 0 10px;
}
.promo-carrier .cw-contact a,
.promo-carrier a {
  color: #e30613;
  font-weight: 600;
}

/* =========================
   Business CPaaS
   ========================= */
.promo-cpaas {
  max-width: 920px;
}
.promo-cpaas > p,
.promo-cpaas p {
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 16px;
  color: #353738;
}
.promo-cpaas h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  color: #18114b;
}
.promo-cpaas h3:first-child {
  margin-top: 0;
}
.promo-cpaas .cpaas-list {
  margin: 8px 0 20px;
  padding-left: 1.35rem;
  line-height: 1.65;
  color: #353738;
}
body.rtl .promo-cpaas .cpaas-list {
  padding-left: 0;
  padding-right: 1.35rem;
}
.promo-cpaas .cpaas-list li {
  margin: 0 0 10px;
}

/* =========================
   Business Leased Circuit
   ========================= */
.promo-leased {
  max-width: 920px;
}
.promo-leased > p,
.promo-leased p {
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 16px;
  color: #353738;
}
.promo-leased .promo-page-heading {
  margin: 0 0 16px;
  font-size: 24px;
  color: #18114b;
  font-weight: 700;
}
.promo-leased .leased-list {
  margin: 8px 0 20px;
  padding-left: 1.35rem;
  line-height: 1.65;
  color: #353738;
}
body.rtl .promo-leased .leased-list {
  padding-left: 0;
  padding-right: 1.35rem;
}

/* =========================
   Business Internet Dedicated Access
   ========================= */
.promo-ida .ida-list {
  margin: 8px 0 20px;
  padding-left: 1.35rem;
  line-height: 1.65;
  color: #353738;
}
body.rtl .promo-ida .ida-list {
  padding-left: 0;
  padding-right: 1.35rem;
}
.promo-ida .ida-list li {
  margin: 0 0 8px;
}
.promo-ida .promo-page-heading {
  margin: 0 0 16px;
  font-size: 24px;
  color: #18114b;
  font-weight: 700;
}
.promo-ida h3 {
  margin: 24px 0 12px;
  font-size: 20px;
  color: #18114b;
}
.promo-ida > p,
.promo-ida p {
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 16px;
  color: #353738;
}

/* =========================
   Promotions Customer Loyalty
   ========================= */
.promo-loyalty {
  max-width: 920px;
}
.promo-loyalty .promo-page-heading {
  margin: 0 0 16px;
  font-size: 24px;
  color: #18114b;
  font-weight: 700;
}
.promo-loyalty h3 {
  margin: 26px 0 12px;
  font-size: 20px;
  color: #18114b;
}
.promo-loyalty > p,
.promo-loyalty p {
  margin: 0 0 12px;
  line-height: 1.7;
  font-size: 16px;
  color: #353738;
}
.promo-loyalty .loyalty-list {
  margin: 6px 0 18px;
  padding-left: 1.35rem;
  line-height: 1.65;
  color: #353738;
}
body.rtl .promo-loyalty .loyalty-list {
  padding-left: 0;
  padding-right: 1.35rem;
}
.promo-loyalty .loyalty-list li {
  margin: 0 0 8px;
}

/* =========================
   Business Virtual Private Network
   ========================= */
.promo-vpn .vpn-highlights {
  grid-template-columns: repeat(3, 1fr);
}
.promo-vpn .vpn-list {
  margin: 12px 0 20px;
  padding-left: 1.35rem;
  line-height: 1.65;
  color: #353738;
}
body.rtl .promo-vpn .vpn-list {
  padding-left: 0;
  padding-right: 1.35rem;
}
.promo-vpn .vpn-list li {
  margin: 0 0 10px;
}
.promo-vpn .roam-panel > p,
.promo-vpn .roam-panel p {
  margin: 0 0 12px;
  line-height: 1.65;
  font-size: 16px;
}
.promo-vpn .roam-panel h3 {
  margin: 22px 0 14px;
  font-size: 20px;
  color: #18114b;
}
@media (max-width: 767px) {
  .promo-vpn .vpn-highlights {
    grid-template-columns: 1fr;
  }
}

/* =========================
   e& Money / mHawala
   ========================= */
.promo-money .money-steps,
.promo-money .money-list {
  margin: 12px 0 20px;
  padding-left: 1.35rem;
  line-height: 1.6;
  color: #353738;
}
body.rtl .promo-money .money-steps,
body.rtl .promo-money .money-list {
  padding-left: 0;
  padding-right: 1.35rem;
}
.promo-money .money-steps li,
.promo-money .money-list li {
  margin: 0 0 8px;
}
.promo-money .roam-panel h3 {
  margin: 22px 0 10px;
  font-size: 18px;
  color: #18114b;
}
.promo-money .roam-panel > p {
  margin: 0 0 12px;
  line-height: 1.65;
  font-size: 16px;
}
.promo-money .money-more a,
.promo-money .roam-panel a {
  color: #e30613;
  font-weight: 600;
}
.promo-money .promo-page-banner {
  margin-bottom: 20px;
}

/* International Tariffs tables */
.promo-tariffs .promo-table--tariffs {
  min-width: 720px;
}
.promo-tariffs .roam-acc {
  margin-bottom: 0;
}

/* =========================
   Postpaid Excel / plan pages
   ========================= */
.promo-excel .roam-panel > p,
.promo-excel .roam-panel p {
  margin: 0 0 12px;
  line-height: 1.65;
  font-size: 16px;
  color: #353738;
}
.promo-excel .roam-panel h3 {
  margin: 22px 0 12px;
  font-size: 18px;
  color: #18114b;
}
.promo-excel .plan-list {
  margin: 12px 0 20px;
  padding-left: 1.35rem;
  line-height: 1.6;
}
body.rtl .promo-excel .plan-list {
  padding-left: 0;
  padding-right: 1.35rem;
}
.promo-excel .plan-list li {
  margin: 0 0 8px;
}
.promo-excel .plan-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0 22px;
}
.promo-excel .plan-highlight {
  background: #f3f3f0;
  border-radius: 6px;
  padding: 22px 18px;
  text-align: center;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.promo-excel .plan-highlight-title {
  font-size: 22px;
  font-weight: 700;
  color: #18114b;
  line-height: 1.2;
}
.promo-excel .plan-highlight-sub {
  font-size: 15px;
  color: #353738;
  line-height: 1.35;
}
.promo-excel .promo-table--excel {
  min-width: 720px;
}
.promo-excel .roam-docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.promo-excel .roam-doc {
  background: #f7f7f4;
  border-radius: 8px;
  padding: 20px 22px;
}
.promo-excel .roam-doc h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #18114b;
}
.promo-excel .roam-doc ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.55;
}
body.rtl .promo-excel .roam-doc ul {
  padding-left: 0;
  padding-right: 1.2rem;
}
.promo-excel .roam-doc li {
  margin: 0 0 8px;
}
@media (max-width: 767px) {
  .promo-excel .plan-highlights,
  .promo-excel .roam-docs {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Prepaid Josh Plus
   ========================= */
.promo-josh .josh-tabs .roam-tablist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.promo-josh .josh-tabs .roam-tab {
  text-align: center;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  background: #18114b;
  color: #fff;
  margin: 0;
  border-radius: 0;
}
.promo-josh .roam-panel > p,
.promo-josh .roam-panel p {
  margin: 0 0 12px;
  line-height: 1.65;
  font-size: 16px;
  color: #353738;
}
.promo-josh .roam-panel h3 {
  margin: 22px 0 12px;
  font-size: 22px;
  color: #18114b;
}
.promo-josh .josh-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0 28px;
}
.promo-josh .plan-highlight {
  background: #f3f3f0;
  border-radius: 4px;
  padding: 28px 18px;
  text-align: center;
}
.promo-josh .plan-highlight-title {
  font-size: 20px;
  font-weight: 700;
  color: #18114b;
}
.promo-josh .josh-bundle-group {
  margin: 22px 0 12px;
  font-size: 18px;
  color: #18114b;
}
.promo-josh .josh-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 24px;
}
.promo-josh .josh-offer {
  background: #f7f7f4;
  border-radius: 6px;
  padding: 16px 18px;
}
.promo-josh .josh-offer-benefit {
  font-weight: 600;
  color: #18114b;
  margin-bottom: 6px;
  line-height: 1.45;
}
.promo-josh .josh-offer-sms {
  color: #e30613;
  font-weight: 600;
  font-size: 15px;
}
@media (max-width: 767px) {
  .promo-josh .josh-tabs .roam-tablist,
  .promo-josh .josh-highlights {
    grid-template-columns: 1fr;
  }
  .promo-josh .josh-tabs .roam-tab {
    font-size: 16px;
    padding: 14px 12px;
  }
}

/* =========================
   Prepaid Mukammal
   ========================= */
.promo-mukammal .muk-pack {
  background: #f7f7f4;
  border-radius: 8px;
  padding: 18px 20px 8px;
  margin: 0 0 20px;
}
.promo-mukammal .muk-pack h3 {
  margin-top: 0;
}
.promo-mukammal .muk-table {
  min-width: 520px;
}
.promo-mukammal .promo-table-wrap {
  margin: 12px 0 8px;
}

/* =========================
   Online Recharge
   ========================= */
.recharge-page .recharge-steps {
  margin: 8px 0 20px;
  padding-inline-start: 1.35rem;
  line-height: 1.65;
  color: var(--eand-navy, #181f4b);
}
.recharge-page .recharge-steps li {
  margin: 0 0 8px;
}
.recharge-page .recharge-cta {
  margin: 18px 0 8px;
}
.recharge-page .roam-panel > p:first-child {
  font-size: 16px;
  line-height: 1.65;
}

