/* =========================================================================
   Talal Awad Media — Public theme
   Clean & premium light, RTL-first, scroll-reveal animations
   ========================================================================= */

:root {
    --bg: #FFFFFF;
    --bg-soft: #FAFAFA;
    --surface: #FFFFFF;
    --surface-2: #F4F4F4;
    --text: #101010;
    --text-muted: #5B5F54;
    --primary: #C0D328;
    --primary-hover: #AEC020;
    --primary-soft: rgba(192, 211, 40, 0.14);
    --on-primary: #101010;
    --border: #E6E6E6;
    --border-strong: rgba(16, 16, 16, 0.12);
    --danger: #C5483F;
    --success: #1F9D62;

    /* Dark footer (premium contrast anchor) */
    --footer-bg: #101010;
    --footer-text: rgba(255, 255, 255, 0.72);
    --footer-strong: #FFFFFF;
    --footer-border: rgba(255, 255, 255, 0.12);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;

    --shadow-sm: 0 1px 2px rgba(16,16,16,.05);
    --shadow: 0 10px 40px rgba(16,16,16,.07);
    --shadow-lg: 0 24px 60px rgba(16,16,16,.10);

    --header-h: 80px;
    --max: 1240px;

    --ease: cubic-bezier(.22,.61,.36,1);
    --t-fast: .25s;
    --t-med: .55s;
    --t-slow: .9s;
}

/* -------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}
body {
    font-family: 'Tajawal', system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--primary); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; line-height: 1.25; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { margin: 0 0 1em; }
::selection { background: var(--primary); color: var(--on-primary); }

/* ------------------------ Skip link / accessibility ---------------------- */
.skip-link {
    position: absolute;
    top: 0;
    inset-inline-start: 12px;
    background: var(--primary);
    color: #111;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 700;
    /* Visually hidden until focused — uses clip+size instead of inset:-9999px
       (which under RTL pushed the element 9999px past the viewport and broke
       horizontal layout on mobile). */
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}
.skip-link:focus {
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    top: 12px;
    outline: 2px solid #111;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
}

/* --------------------------------- Layout -------------------------------- */
.container {
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: 24px;
}
.section { padding-block: clamp(48px, 8vw, 96px); position: relative; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: 48px; }
.section__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}
.section__title { margin-bottom: 12px; }
.section__lead { color: var(--text-muted); font-size: 1.1rem; }

/* ------------------------------ Buttons ---------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .98rem;
    letter-spacing: .01em;
    line-height: 1;
    border: 1px solid transparent;
    transition: transform var(--t-fast) var(--ease),
                background var(--t-fast) var(--ease),
                color var(--t-fast) var(--ease),
                box-shadow var(--t-fast) var(--ease);
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--primary);
    color: var(--on-primary);
    box-shadow: 0 8px 22px rgba(192, 211, 40, .28);
}
.btn-primary:hover { background: var(--primary-hover); color: var(--on-primary); box-shadow: 0 14px 34px rgba(192, 211, 40, .38); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-block { width: 100%; }

/* ------------------------------- Header ---------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.header--transparent {
    background: transparent;
    border-bottom-color: transparent;
}
.header.is-scrolled {
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow);
    border-bottom-color: var(--border);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-h);
}
.header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.05rem;
}
.header__brand img { border-radius: 10px; }
.header__brand-name { display: none; }
@media (min-width: 768px) {
    .header__brand-name { display: inline; }
}
.header__nav { display: none; }
@media (min-width: 1024px) {
    .header__nav { display: block; }
}
.nav-list { display: flex; gap: 28px; }
.nav-link {
    position: relative;
    padding: 8px 0;
    font-weight: 500;
    color: var(--text);
}
.nav-link::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width var(--t-fast) var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--primary); }

.header__cta { display: none; align-items: center; gap: 16px; }
@media (min-width: 1024px) { .header__cta { display: flex; } }
.header__phone { font-weight: 700; color: var(--text-muted); display: inline-flex; gap: 6px; }
.header__phone:hover { color: var(--primary); }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    transition: border-color var(--t-fast) var(--ease);
}
.nav-toggle:hover { border-color: var(--primary); }
.nav-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------- Mobile drawer (off-canvas) -------------------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease);
}
.drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    width: clamp(280px, 80vw, 360px);
    background: var(--bg-soft);
    border-inline-start: 1px solid var(--border);
    z-index: 210;
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
/* RTL: drawer slides from the inline-end which under RTL is the LEFT edge */
[dir="rtl"] .mobile-drawer { transform: translateX(-100%); }
.mobile-drawer.is-open { transform: translateX(0); }

.drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.drawer__brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.drawer__brand img { border-radius: 8px; }
.drawer__close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    font-size: 1.5rem;
    line-height: 1;
}
.drawer__close:hover { border-color: var(--primary); color: var(--primary); }

.drawer__list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.drawer__link {
    display: block;
    padding: 14px 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid transparent;
    transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.drawer__link:hover {
    background: var(--surface);
    border-color: var(--border);
    color: var(--primary);
}
.drawer__link.is-active { color: var(--primary); background: var(--primary-soft); }

.drawer__cta { margin-bottom: 20px; }
.drawer__contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; padding-block: 16px; border-block: 1px solid var(--border); }
.drawer__contact-item { color: var(--text-muted); font-weight: 500; }
.drawer__contact-item:hover { color: var(--primary); }
.drawer__wa { color: var(--success); }

.drawer__social { display: flex; gap: 10px; }
.drawer__social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
    transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.drawer__social-link:hover { border-color: var(--primary); color: var(--primary); }

body.has-drawer-open { overflow: hidden; }

/* ------------------------------ Cards ------------------------------------ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }

/* --------------------------- Stats counter ------------------------------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
    text-align: center;
    padding: 28px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.stat__value {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    font-feature-settings: "tnum";
}
.stat__label { color: var(--text-muted); font-size: .95rem; }

/* ----------------------------- WhatsApp float ---------------------------- */
.wa-float {
    position: fixed;
    inset-block-end: 24px;
    inset-inline-end: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 10px 32px rgba(37,211,102,.45);
    transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.wa-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.5);
    animation: wa-pulse 2.2s ease-out infinite;
}
.wa-float:hover { transform: scale(1.06); color: #fff; box-shadow: 0 16px 40px rgba(37,211,102,.55); }
@keyframes wa-pulse {
    0% { transform: scale(.9); opacity: .9; }
    80%, 100% { transform: scale(1.4); opacity: 0; }
}

/* ----------------------------- Footer ------------------------------------ */
.footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    padding-top: 64px;
    color: var(--footer-text);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer__brand { display: flex; align-items: center; gap: 12px; color: var(--footer-strong); font-weight: 800; font-size: 1.1rem; margin-bottom: 14px; }
.footer__tagline { color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.footer__desc { font-size: .95rem; line-height: 1.8; }
.footer__title { color: var(--footer-strong); font-size: 1rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .15em; }
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__list a { color: var(--footer-text); }
.footer__list a:hover { color: var(--primary); }
.footer__contact span[aria-hidden] { color: var(--primary); margin-inline-end: 6px; }
.footer__bar {
    border-top: 1px solid var(--footer-border);
    padding-block: 20px;
    text-align: center;
    font-size: .85rem;
}
.footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
@media (max-width: 640px) { .footer__bar-inner { justify-content: center; text-align: center; } }

/* ===== Designed by Eslam Elfeky — credit badge ===== */
.ef-credit {
    display: inline-flex; align-items: center; gap: 9px; direction: rtl;
    font-family: 'Tajawal','Cairo',system-ui,sans-serif;
    font-size: .9rem; font-weight: 700; color: #fff; text-decoration: none;
    background: #101010; border: 1px solid rgba(217,4,41,.5); border-radius: 50px;
    padding: 9px 18px; box-shadow: 0 6px 18px rgba(0,0,0,.18); transition: .25s;
}
.ef-credit:hover { background: #D90429; border-color: #D90429; transform: translateY(-2px); color: #fff; }
.ef-credit strong { color: #D90429; font-weight: 800; transition: .25s; }
.ef-credit:hover strong { color: #fff; }
.ef-credit-dot { width: 9px; height: 9px; border-radius: 50%; background: #D90429; box-shadow: 0 0 0 4px rgba(217,4,41,.25); }
.ef-credit:hover .ef-credit-dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.3); }

/* ------------------------------ Hero / pages ----------------------------- */
.hero { position: relative; padding-block: clamp(80px, 14vw, 160px); overflow: hidden; }
.hero__bg {
    position: absolute; inset: 0;
    background: radial-gradient(80% 60% at 50% 30%, rgba(192,211,40,.14), transparent 60%),
                linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    z-index: -1;
}
.hero__inner { text-align: center; max-width: 880px; margin-inline: auto; }
.hero__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .12em;
    margin-bottom: 20px;
}
.hero__headline {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero__sub { color: var(--text-muted); font-size: clamp(1.05rem, 2vw, 1.25rem); margin-bottom: 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.page-hero {
    padding-block: clamp(56px, 9vw, 104px);
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.page-hero .section__eyebrow { margin-bottom: 12px; }
.page-title { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 12px; }
.page-lead { color: var(--text-muted); max-width: 720px; margin-inline: auto; font-size: 1.1rem; }

/* ---------------------------- Breadcrumb --------------------------------- */
.breadcrumb { padding-block: 16px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.breadcrumb__list { display: flex; gap: 8px; flex-wrap: wrap; font-size: .9rem; color: var(--text-muted); }
.breadcrumb__item + .breadcrumb__item::before { content: "/"; color: var(--border-strong); padding-inline-start: 8px; padding-inline-end: 8px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__item [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ----------------------------- Stub page --------------------------------- */
.page-stub .stub-card { max-width: 700px; margin-inline: auto; margin-top: 28px; text-align: center; }
.stub-lead { color: var(--primary); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }

/* ----------------------------- 404 page ---------------------------------- */
.error-page { padding-block: clamp(80px, 14vw, 160px); text-align: center; }
.error-code { font-size: clamp(5rem, 16vw, 10rem); color: var(--primary); line-height: 1; font-weight: 800; margin-bottom: 12px; }
.error-title { margin-bottom: 12px; }
.error-msg { color: var(--text-muted); margin-bottom: 28px; }

/* ------------------------- Scroll-reveal animations ---------------------- */
@media (prefers-reduced-motion: no-preference) {
    html.js [data-anim],
    html.js .reveal,
    html.js .reveal-left,
    html.js .reveal-right,
    html.js .reveal-scale,
    html.js .reveal-fade {
        opacity: 0;
        transition: transform var(--t-slow) var(--ease), opacity var(--t-slow) ease;
        will-change: transform, opacity;
    }
    html.js [data-anim="up"],
    html.js .reveal { transform: translateY(40px); }
    html.js [data-anim="down"] { transform: translateY(-40px); }
    /* "start" = inline-start; under RTL that comes from the right edge */
    html.js [data-anim="start"],
    html.js .reveal-right { transform: translateX(40px); }
    html.js [data-anim="end"],
    html.js .reveal-left { transform: translateX(-40px); }
    [dir="rtl"] html.js [data-anim="start"],
    [dir="rtl"] html.js .reveal-right { transform: translateX(-40px); }
    [dir="rtl"] html.js [data-anim="end"],
    [dir="rtl"] html.js .reveal-left { transform: translateX(40px); }
    html.js [data-anim="scale"],
    html.js .reveal-scale { transform: scale(.94); }
    html.js [data-anim="fade"],
    html.js .reveal-fade { transform: none; }

    html.js .is-revealed,
    html.js [data-anim].is-revealed,
    html.js .reveal.is-revealed,
    html.js .reveal-left.is-revealed,
    html.js .reveal-right.is-revealed,
    html.js .reveal-scale.is-revealed,
    html.js .reveal-fade.is-revealed {
        opacity: 1;
        transform: none;
    }

    html.js .stagger > * {
        opacity: 0;
        transform: translateY(20px);
        transition: transform var(--t-med) var(--ease), opacity var(--t-med) ease;
    }
    html.js .stagger.is-revealed > * { opacity: 1; transform: none; }
    html.js .stagger.is-revealed > *:nth-child(1) { transition-delay: .00s; }
    html.js .stagger.is-revealed > *:nth-child(2) { transition-delay: .06s; }
    html.js .stagger.is-revealed > *:nth-child(3) { transition-delay: .12s; }
    html.js .stagger.is-revealed > *:nth-child(4) { transition-delay: .18s; }
    html.js .stagger.is-revealed > *:nth-child(5) { transition-delay: .24s; }
    html.js .stagger.is-revealed > *:nth-child(6) { transition-delay: .30s; }
    html.js .stagger.is-revealed > *:nth-child(7) { transition-delay: .36s; }
    html.js .stagger.is-revealed > *:nth-child(8) { transition-delay: .42s; }
    html.js .stagger.is-revealed > *:nth-child(n+9) { transition-delay: .48s; }
}

/* No-JS / reduced-motion: ensure content is visible */
html:not(.js) [data-anim],
html:not(.js) .reveal,
html:not(.js) .reveal-left,
html:not(.js) .reveal-right,
html:not(.js) .reveal-scale,
html:not(.js) .reveal-fade,
html:not(.js) .stagger > * {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    [data-anim], .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade, .stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ------------------------------- Utilities ------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* image CLS-safety */
img[width][height] { height: auto; }

/* ------------------- Mobile horizontal-overflow fallback -----------------
   html / body use `overflow-x: clip` (preserves position: sticky), but older
   iOS Safari and Android Chrome ignore it — the page becomes horizontally
   scrollable on mobile (the "jitter" effect). Fall back to overflow-x:
   hidden on browsers that don't support clip, plus clamp body width. */
html, body { max-width: 100%; }
@supports not (overflow-x: clip) {
    html, body { overflow-x: hidden; }
}
main { overflow-x: clip; max-width: 100%; }
@supports not (overflow-x: clip) {
    main { overflow-x: hidden; }
}

/* ------------------- RTL fix for phone / email numbers -------------------
   Phone numbers and emails are LTR content. Inside an RTL container the
   browser otherwise re-orders segments (e.g. "+966 56 324 9151" becomes
   "9151 324 56 966+"). Force LTR direction with bidi isolation so digits
   read left-to-right regardless of surrounding direction. */
a[href^="tel:"],
a[href^="mailto:"],
.phone-num {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}
