:root {
    --gold: #c9a84c;
    --gold-l: #e8c76a;
    --gold-pale: #f7efd8;
    --gold-pale2: #f0e4bc;
    --gold-d: #9a7a30;
    --green: #7a8c6e;
    --green-pale: #edf2ea;
    --bg: #f8f6f1;
    --bg2: #f0ede6;
    --bg3: #e8e4dc;
    --surf: #ffffff;
    --ink: #1c1c1a;
    --ink2: #3c3c38;
    --ink3: #7a7a72;
    --ink4: #b0afa8;
    --bdr: rgba(28, 28, 26, 0.09);
    --bdr-s: rgba(28, 28, 26, 0.15);
    --sh0: 0 1px 4px rgba(28, 28, 26, 0.05);
    --sh1: 0 4px 18px rgba(28, 28, 26, 0.08);
    --sh2: 0 10px 40px rgba(28, 28, 26, 0.11);
    --sh3: 0 20px 64px rgba(28, 28, 26, 0.14);
    --shg: 0 8px 28px rgba(201, 168, 76, 0.22);
    --font: "Plus Jakarta Sans", sans-serif;
    --font-ar: "Tajawal", sans-serif;
}


/* ════════════════════════════════════════
   §7  FOOTER
════════════════════════════════════════ */
#footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}
#footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 500px 400px at 100% 0%,
        rgba(201, 168, 76, 0.06) 0%,
        transparent 65%
    );
}
.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 575px) {
    .ft-top {
        grid-template-columns: 1fr;
    }
}
.ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.ft-logo-mark {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft-logo-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}
.ft-logo-name span {
    color: var(--gold);
}
.ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
    max-width: 230px;
}
.ft-socials {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}
.ft-soc {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
    font-size: 13px;
    font-weight: 700;
}
.ft-soc:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}
.ft-col h6 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}
[data-lang="ar"] .ft-col h6 {
    letter-spacing: 0;
    font-family: var(--font-ar);
    font-size: 12px;
}
.ft-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ft-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.36);
    transition: color 0.2s;
}
.ft-col ul li a:hover {
    color: var(--gold);
}
[data-lang="ar"] .ft-col ul li a {
    font-family: var(--font-ar);
    font-size: 14px;
}
.ft-mid {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.ft-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ft-info-icon {
    width: 32px;
    height: 32px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.ft-info-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}
[data-lang="ar"] .ft-info-lbl {
    letter-spacing: 0;
    font-family: var(--font-ar);
    font-size: 11px;
}
.ft-info-val {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}
.ft-bot {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 12px;
}
.ft-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}
[data-lang="ar"] .ft-copy {
    font-family: var(--font-ar);
    font-size: 13px;
}
.ft-links {
    display: flex;
    gap: 18px;
}
.ft-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s;
}
.ft-links a:hover {
    color: var(--gold);
}
[data-lang="ar"] .ft-links a {
    font-family: var(--font-ar);
    font-size: 13px;
}
.ft-gold {
    color: var(--gold);
}

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.ju-nav {
    background: var(--ink) !important;
    padding: 11px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ju-nav .navbar-brand {
    font-size: 17px;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.01em;
}
.ju-nav .navbar-brand span {
    color: var(--gold);
}
.logo-mark {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
}
[data-lang="ar"] .logo-mark {
    margin-right: 0;
    margin-left: 8px;
}
.nav-link-ju {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55) !important;
    padding: 6px 13px !important;
    border-radius: 20px;
    transition: all 0.2s;
}
.nav-link-ju:hover,
.nav-link-ju.cur {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.09) !important;
}
[data-lang="ar"] .nav-link-ju {
    font-family: var(--font-ar);
    font-size: 14px;
}
.lang-pill {
    display: flex;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 3px;
    gap: 2px;
}
.lang-pill button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    padding: 4px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}
.lang-pill button.on {
    background: var(--gold);
    color: #fff;
    box-shadow: var(--shg);
}
.nav-cta {
    background: var(--gold);
    color: #fff !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    transition: all 0.2s !important;
}
.nav-cta:hover {
    background: var(--gold-d) !important;
    transform: translateY(-1px);
}

/* ════════════════════════════════════════
   SHARED HELPERS
════════════════════════════════════════ */
.sec-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-pale);
    color: var(--gold-d);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.sec-pill.lite {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-l);
}
[data-lang="ar"] .sec-pill {
    letter-spacing: 0;
    font-family: var(--font-ar);
    font-size: 12px;
}
.btn-gold {
    background: var(--gold);
    color: #fff;
    padding: 12px 26px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: var(--shg);
}
.btn-gold:hover {
    background: var(--gold-d);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201, 168, 76, 0.3);
    color: #fff;
}
[data-lang="ar"] .btn-gold {
    font-family: var(--font-ar);
}
.btn-ghost-dark {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 26px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}
.btn-ghost-dark:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
    transform: translateY(-2px);
}
[data-lang="ar"] .btn-ghost-dark {
    font-family: var(--font-ar);
}
.gold-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    border-radius: 3px;
    margin-bottom: 20px;
}

/* ════════════════════════════════════════
   §1  HERO / ARTICLE
════════════════════════════════════════ */
#hero {
    background: var(--ink);
    min-height: 92vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}
#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 700px 600px at 8% 40%,
            rgba(201, 168, 76, 0.11) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 500px 500px at 92% 70%,
            rgba(122, 140, 110, 0.07) 0%,
            transparent 60%
        );
    animation: atmo 12s ease-in-out infinite alternate;
}
@keyframes atmo {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}
#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px
    );
    background-size: 42px 42px;
}
/* animated floating particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(201, 168, 76, 0.12);
    animation: float linear infinite;
}
@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.14);
    color: var(--gold-l);
    padding: 6px 14px 6px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 28px;
}
.hero-kicker-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
[data-lang="ar"] .hero-kicker {
    font-family: var(--font-ar);
}
.hero-h1 {
    font-size: clamp(42px, 5.5vw, 80px);
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 28px;
}
.hero-h1 .gold {
    color: var(--gold);
}
.hero-h1 .stroke {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.28);
    color: transparent;
}
[data-lang="ar"] .hero-h1 {
    font-family: var(--font-ar);
    letter-spacing: 0;
    line-height: 1.2;
    font-size: clamp(34px, 5vw, 64px);
}

/* article typography */
.article-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
    max-width: 560px;
}
[data-lang="ar"] .article-body {
    font-family: var(--font-ar);
}
.article-body p {
    margin-bottom: 16px;
}
.pull-quote {
    margin: 28px 0;
    padding: 22px 28px;
    border-left: 3px solid var(--gold);
    background: rgba(201, 168, 76, 0.07);
    border-radius: 0 12px 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    line-height: 1.8;
}
[data-lang="ar"] .pull-quote {
    border-left: none;
    border-right: 3px solid var(--gold);
    border-radius: 12px 0 0 12px;
}
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--gold),
        rgba(201, 168, 76, 0.1)
    );
}
[data-lang="ar"] .timeline::before {
    left: auto;
    right: 15px;
}
.tl-item {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    position: relative;
}
.tl-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
    background: var(--ink);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
}
.tl-content {
    padding-top: 4px;
}
.tl-year {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}
[data-lang="ar"] .tl-year {
    letter-spacing: 0;
    font-family: var(--font-ar);
}
.tl-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}
[data-lang="ar"] .tl-text {
    font-family: var(--font-ar);
}

/* hero image side */
.hero-img-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(8px);
    transition: all 0.4s;
}
.hero-img-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.hero-img-inner {
    height: 280px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-img-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 40% 50%,
        rgba(201, 168, 76, 0.18) 0%,
        transparent 65%
    );
}
.hero-img-wm {
    position: absolute;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
}
.hero-img-svg {
    width: 88%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.5));
}
.hero-img-foot {
    padding: 22px 24px;
}
.hero-img-foot h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
[data-lang="ar"] .hero-img-foot h5 {
    font-family: var(--font-ar);
}
.hero-img-foot p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}
.hero-stats-mini {
    display: flex;
    gap: 0;
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}
.hsm {
    flex: 1;
    padding: 12px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}
.hsm:last-child {
    border-right: none;
}
[data-lang="ar"] .hsm {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}
[data-lang="ar"] .hsm:last-child {
    border-left: none;
}
.hsm-n {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.03em;
    line-height: 1;
}
.hsm-l {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
    margin-top: 2px;
}
[data-lang="ar"] .hsm-l {
    font-family: var(--font-ar);
}
