/* ═══════════════════════════════════════════════════════
   site.css — نظام التصميم المشترك لصفحات الخدمات الداخلية
   المبادرة الدولية | INITIATIVE International
   ═══════════════════════════════════════════════════════ */

:root {
    --bg-pure: #050505;
    --bg-main: #0a0a0a;
    --bg-card: #121212;
    --bg-card-hover: #181818;
    --gold-primary: #d4af37;
    --gold-dark: #aa7c11;
    --gold-glow: rgba(212, 175, 55, 0.2);
    --gold-gradient: linear-gradient(135deg, #fcbb2b 0%, #a06022 100%);
    --gold-gradient-h: linear-gradient(40deg, #fcbb2b 0%, #a06022 80%, #8c4f1d 100%);
    --gold-gradient-r: linear-gradient(40deg, #8c4f1d 0%, #a06022 20%, #fcbb2b 100%);
    --gold-gradient-2: linear-gradient(90deg, transparent 5%, #fcbb2b 30%, #a06022 50%, #fcbb2b 70%, transparent 95%);
    --text-light: #ffffff;
    --text-muted: #8e8e93;
    --font-ar: 'Almarai', sans-serif;
    --font-en: 'Montserrat', sans-serif;
    --border-glow: 1px solid rgba(212, 175, 55, 0.15);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-pure);
    color: var(--text-light);
    font-family: var(--font-ar);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── مساعدات عامة ─── */
.container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 30px; }
.section-padding { padding: 100px 0; position: relative; }
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-decoration: none;
}
.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    box-shadow: 0 4px 20px var(--gold-glow);
    font-family: inherit;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4); }
.btn-outline { background: transparent; border: 1px solid var(--gold-primary); color: var(--text-light); }
.btn-outline:hover { background: var(--gold-gradient); color: #000; border-color: transparent; transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════
   الهيدر الثابت
   ═══════════════════════════════════════════════════════ */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.7) 100%);
    box-shadow: 1px 1px 1px #b38f2955;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 90px; position: relative; }
header::before {
    content: ''; height: 2px; position: absolute; top: 0; left: 0; width: 100%;
    background: var(--gold-gradient);
    animation: goldLineSlide 1.2s cubic-bezier(0.16,1,0.3,1) 0.1s both;
    transform-origin: right;
}
.logo { display: flex; align-items: center; gap: 15px; }
.logo img { max-height: 60px; }
.nav-menu { display: flex; gap: 35px; }
.nav-link {
    font-size: 0.9rem; font-weight: 600; color: var(--text-light);
    text-decoration: none; position: relative; padding: 6px 0; transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px;
    background: var(--gold-gradient); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-item-has-children { position: relative; }
.nav-dropdown {
    position: absolute; top: calc(100% + 18px); right: 0; min-width: 240px;
    background: rgba(8,8,8,0.97);
    border: 1px solid rgba(212,175,55,0.18);
    border-top: 2px solid var(--gold-primary);
    backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    z-index: 500; padding: 8px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}
.nav-dropdown::before {
    content: ''; position: absolute; top: -8px; right: 28px; width: 14px; height: 14px;
    background: rgba(8,8,8,0.97);
    border-top: 2px solid var(--gold-primary);
    border-right: 1px solid rgba(212,175,55,0.18);
    transform: rotate(-45deg);
}
.nav-item-has-children:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-link {
    display: flex; align-items: center; gap: 12px; padding: 11px 22px;
    color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; font-weight: 500;
    transition: all 0.25s ease; border-bottom: 1px solid rgba(255,255,255,0.03);
    white-space: nowrap; position: relative;
}
.nav-dropdown-link:last-child { border-bottom: none; }
.nav-dropdown-link:hover { color: var(--gold-primary); background: rgba(212,175,55,0.05); padding-right: 28px; }
.nav-dropdown-link.current { color: var(--gold-primary); background: rgba(212,175,55,0.07); }
.nav-dropdown-link.current::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 2px; background: var(--gold-primary); }
.dd-icon { width: 20px; height: 20px; opacity: 0.5; flex-shrink: 0; transition: opacity 0.25s; }
.nav-dropdown-link:hover .dd-icon, .nav-dropdown-link.current .dd-icon { opacity: 1; }
.nav-link-caret { display: inline-flex; align-items: center; gap: 5px; }
.nav-link-caret svg { transition: transform 0.3s ease; }
.nav-item-has-children:hover .nav-link-caret svg { transform: rotate(180deg); }
.header-cta a { padding: 10px 24px; font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════
   بانر الصفحة الداخلية
   ═══════════════════════════════════════════════════════ */
.inner-banner {
    height: 500px; position: relative; display: flex; align-items: flex-end;
    background: radial-gradient(ellipse 70% 60% at 50% 30%, #1c1608 0%, var(--bg-pure) 70%);
    padding-bottom: 60px; overflow: hidden; background-size: cover; background-position: center;
}
.inner-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.3) 50%, rgba(5,5,5,0.7) 100%);
    z-index: 1;
}
.inner-banner::after {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
    background-size: 50px 50px; z-index: 2;
}
.inner-banner-content { position: relative; z-index: 10; width: 100%; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; letter-spacing: 1px; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-primary); }
.breadcrumb span { color: var(--gold-primary); }
.breadcrumb-sep { opacity: 0.4; font-size: 0.7rem; }
.inner-banner-tag {
    font-family: var(--font-en); font-size: 0.8rem; letter-spacing: 4px; color: var(--gold-primary);
    text-transform: uppercase; display: block; margin-bottom: 14px;
    animation: heroTaglineDrop 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.inner-banner-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.2;
    animation: heroTitleReveal 1s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
.inner-banner-line {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--gold-gradient-2); z-index: 10;
    animation: goldLineSlide 1s ease 1s both; transform-origin: right;
}
#bannerParticles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 3; }
.banner-particle { position: absolute; width: 2px; height: 2px; background: var(--gold-primary); border-radius: 50%; animation: particleFade var(--dur, 4s) ease-in-out var(--delay, 0s) infinite; }


.bg-gold-gradient-button {
    background-image: var(--gold-gradient-r);
    --tw-skew-y: 35deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.bg-gold-gradient-button-outline {
    border-image: var(--gold-gradient-h) 1;
    border-width: 2px;
    border-style: solid;
    padding: 1px;
    --tw-skew-y: 35deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.w-8 {
    width: 2rem;
}
.h-full {
    height: 100%;
}
.h-4\/5 {
    height: 80%;
}
.h-3\/5 {
    height: 60%;
}
.gap-2 {
    gap: 1rem;
}
.h-32 {
    height: 10rem;
}
.flex {
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
    position: absolute;
    z-index: 9;
    left: 20px;
    bottom: -20px;
}
.flex-rev {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    position: absolute;
    z-index: 9;
    right: 20px;
    top: -20px;
}

/* أعمدة الزاوية */
.flex-rev.gap-2 > div , .flex.gap-2 > div {
    animation: heroBarGrow 0.7s cubic-bezier(0.16,1,0.3,1) both;
    transform-origin: bottom;
}
.flex-rev.gap-2 > div {
    transform-origin: top;
}
.flex-rev.gap-2 > div:nth-child(1) , .flex.gap-2 > div:nth-child(1) { animation-delay: 1.4s; }
.flex-rev.gap-2 > div:nth-child(2) , .flex.gap-2 > div:nth-child(2) { animation-delay: 1.55s; }
.flex-rev.gap-2 > div:nth-child(3) , .flex.gap-2 > div:nth-child(3) { animation-delay: 1.7s; }

@keyframes heroBarGrow {
    from { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleY(0); opacity: 0;  }
    to   { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleY(1); opacity: 1; }
}


.wave-background {
    background-image: url(../../images/back.jpg);
    background-position: top left;
    background-size: cover;
    position: relative;
}
.space-background {
    background-image: url(../../images/screen.png);
    background-position: top left;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
/* ═══════════════════════════════════════════════════════
   عناوين الأقسام
   ═══════════════════════════════════════════════════════ */
.section-header { margin-bottom: 50px; position: relative; z-index: 5; }
.section-subtitle {
    background: linear-gradient(90deg, var(--gold-primary) 0%, #f3e0aa 40%, var(--gold-primary) 60%, #f3e0aa 100%);
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-size: 0.82rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
    font-weight: 600; display: block; animation: shimmer 4s linear infinite;
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.5px; line-height: 1.3; }
.section-divider { width: 60px; height: 2px; background: var(--gold-gradient); margin-top: 18px; }

/* ═══════════════════════════════════════════════════════
   أقسام الخدمة التفصيلية
   ═══════════════════════════════════════════════════════ */
.service-section { border-top: 1px solid rgba(212,175,55,0.08); }
.service-section:first-of-type { border-top: none; }

.section-title-bar {
    background: var(--bg-card); border-right: 3px solid var(--gold-primary);
    padding: 20px 28px; margin-bottom: 35px; display: flex; align-items: center; gap: 18px;
}
.section-title-bar-icon {
    width: 42px; height: 42px; border: var(--border-glow); display: flex; align-items: center; justify-content: center;
    color: var(--gold-primary); flex-shrink: 0;
}
.section-title-bar h3 { font-size: 1.25rem; font-weight: 700; color: var(--gold-primary); }

.detail-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 35px; }
.detail-card { background: var(--bg-card); border: var(--border-glow); padding: 34px 28px; position: relative; overflow: hidden; transition: var(--transition); }
.detail-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.04), transparent);
    transition: left 0.6s ease; z-index: 2;
}
.detail-card:hover::before { left: 150%; }
.detail-card::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: var(--gold-gradient); transform: scaleX(0); transform-origin: right; transition: transform 0.5s ease;
}
.detail-card:hover::after { transform: scaleX(1); }
.detail-card:hover { background: var(--bg-card-hover); border-color: rgba(212,175,55,0.3); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.detail-card-num {
    font-family: var(--font-en); font-size: 3.2rem; font-weight: 700; color: transparent;
    -webkit-text-stroke: 1px rgba(212,175,55,0.12); position: absolute; top: 12px; left: 16px; line-height: 1; transition: var(--transition);
}
.detail-card:hover .detail-card-num { -webkit-text-stroke: 1px rgba(212,175,55,0.3); }
.detail-card-icon {
    width: 44px; height: 44px; border: var(--border-glow); display: flex; align-items: center; justify-content: center;
    color: var(--gold-primary); margin-bottom: 18px; transition: var(--transition); position: relative; z-index: 1;
}
.detail-card:hover .detail-card-icon { border-color: var(--gold-primary); background: rgba(212,175,55,0.07); }
.detail-card-title { font-size: 1rem; font-weight: 700; color: var(--text-light); line-height: 1.6; position: relative; z-index: 1; }

.gold-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.gold-list li {
    display: flex; align-items: flex-start; gap: 14px; color: var(--text-muted); font-size: 1rem;
    line-height: 1.7; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.gold-list li:last-child { border-bottom: none; padding-bottom: 0; }
.gold-list-icon {
    width: 22px; height: 22px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
    color: var(--gold-primary); transition: var(--transition);
}
.gold-list li:hover .gold-list-icon { background: rgba(212,175,55,0.18); border-color: var(--gold-primary); }
.gold-list li:hover { color: rgba(255,255,255,0.85); }

.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.list-card { background: var(--bg-card); border: var(--border-glow); padding: 30px; transition: var(--transition); }
.list-card:hover { border-color: rgba(212,175,55,0.3); background: var(--bg-card-hover); }
.list-card-title {
    font-size: 1rem; font-weight: 700; color: var(--gold-primary); margin-bottom: 18px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(212,175,55,0.12); display: flex; align-items: center; gap: 10px;
}

.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.split-content-box { background: var(--bg-card); border: var(--border-glow); padding: 36px; position: relative; overflow: hidden; }
.split-content-box::before { content: ''; position: absolute; top: 0; right: 0; width: 3px; height: 100%; background: var(--gold-gradient); }
.split-content-box h4 { font-size: 1.05rem; font-weight: 700; color: var(--gold-primary); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(212,175,55,0.12); }

.highlight-block {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212,175,55,0.04) 100%);
    border: var(--border-glow); border-right: 3px solid var(--gold-primary);
    padding: 36px 40px; margin-bottom: 30px; position: relative; overflow: hidden;
}
.highlight-block::after {
    content: '"'; position: absolute; top: -20px; left: 20px; font-family: var(--font-en); font-size: 160px;
    font-weight: 900; color: rgba(212,175,55,0.04); line-height: 1; pointer-events: none;
}
.highlight-block p { font-size: 1rem; line-height: 1.95; color: rgba(255,255,255,0.8); position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════
   قسم CTA
   ═══════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212,175,55,0.05) 100%);
    border-top: 1px solid rgba(212,175,55,0.12); border-bottom: 1px solid rgba(212,175,55,0.12);
    padding: 70px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%); pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 26px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════
   السايدبار
   ═══════════════════════════════════════════════════════ */
.other-services-nav { background: var(--bg-card); border: var(--border-glow); padding: 30px; position: sticky; top: 110px; }
.other-services-nav h4 {
    font-size: 0.9rem; font-weight: 700; color: var(--gold-primary); margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(212,175,55,0.12); letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-en);
}
.other-service-link {
    display: flex; align-items: center; gap: 12px; padding: 11px 0; color: var(--text-muted); text-decoration: none;
    font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.04); transition: all 0.3s ease;
}
.other-service-link:last-child { border-bottom: none; padding-bottom: 0; }
.other-service-link:hover { color: var(--gold-primary); padding-right: 6px; }
.other-service-link.active-service { color: var(--gold-primary); font-weight: 700; }
.other-service-link .osn-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(212,175,55,0.3); flex-shrink: 0; transition: background 0.3s; }
.other-service-link:hover .osn-dot, .other-service-link.active-service .osn-dot { background: var(--gold-primary); }

.page-layout { display: grid; grid-template-columns: 1fr 280px; gap: 50px; align-items: start; }
.page-main { min-width: 0; }

/* ═══════════════════════════════════════════════════════
   الفوتر
   ═══════════════════════════════════════════════════════ */
footer { background: #030303; padding: 80px 0 40px 0; border-top: 1px solid rgba(212, 175, 55, 0.05); font-size: 0.9rem; color: var(--text-muted); }
.footer-columns { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; margin-bottom: 60px; }
.footer-head { color: var(--text-light); font-weight: 600; margin-bottom: 25px; font-size: 1rem; }
.footer-services-list { display: flex; flex-direction: column; gap: 11px; }
.footer-services-list a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.footer-services-list a::before {
    content: ''; display: inline-block; width: 14px; height: 1px; background: var(--gold-primary); opacity: 0.4;
    flex-shrink: 0; transition: width 0.3s ease, opacity 0.3s ease;
}
.footer-services-list a:hover { color: var(--gold-primary); padding-right: 4px; }
.footer-services-list a:hover::before { width: 20px; opacity: 1; }
.footer-services-list a.active-footer { color: var(--gold-primary); font-weight: 600; }
.footer-base { border-top: 1px solid rgba(255,255,255,0.03); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; }

/* ═══════════════════════════════════════════════════════
   أنيميشن الدخول
   ═══════════════════════════════════════════════════════ */
.anim-fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.anim-fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.anim-zoom-in { opacity: 0; transform: scale(0.93); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.anim-in { opacity: 1 !important; transform: none !important; }
.anim-delay-1 { transition-delay: 0.1s !important; }
.anim-delay-2 { transition-delay: 0.2s !important; }
.anim-delay-3 { transition-delay: 0.3s !important; }

@keyframes heroTaglineDrop { from { opacity:0; transform:translateY(-18px); letter-spacing:10px; } to { opacity:1; transform:translateY(0); letter-spacing:4px; } }
@keyframes heroTitleReveal { from { opacity:0; transform:translateY(30px) skewY(1deg); } to { opacity:1; transform:translateY(0) skewY(0); } }
@keyframes goldLineSlide { from { transform:scaleX(0); opacity:0; } to { transform:scaleX(1); opacity:1; } }
@keyframes floatUpDown { 0%,100% { transform:translateY(0px); } 50% { transform:translateY(-8px); } }
@keyframes shimmer { 0% { background-position:-200% center; } 100% { background-position: 200% center; } }
@keyframes particleFade { 0% { opacity:0; transform:translateY(0) scale(1); } 30% { opacity:0.6; } 70% { opacity:0.3; } 100% { opacity:0; transform:translateY(-60px) scale(0.3); } }
@keyframes glowPulse { 0%,100% { box-shadow:0 4px 20px var(--gold-glow); } 50% { box-shadow:0 8px 35px rgba(212,175,55,0.45); } }

/* ═══ Responsive ═══ */
@media (max-width: 1100px) {
    .page-layout { grid-template-columns: 1fr; }
    .page-sidebar { display: none; }
    .detail-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-menu, .header-cta { display: none; }
    .split-content, .two-col-grid { grid-template-columns: 1fr; gap: 25px; }
    .detail-cards-grid { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: 1fr; gap: 35px; }
    .inner-banner { height: 320px; }
    .inner-banner-title { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════════════════
   LTR overrides — mirrors the RTL-only directional rules
   above for English (dir="ltr"). Additive only; the RTL
   rules above stay untouched for the Arabic version.
   ═══════════════════════════════════════════════════════ */
html[dir="ltr"] body { font-family: var(--font-en); }
html[dir="ltr"] .nav-wrapper::before { transform-origin: left; }
html[dir="ltr"] .nav-link { font-size: 0.8rem; }
html[dir="ltr"] .nav-link::after { right: auto; left: 0; }
html[dir="ltr"] .nav-dropdown { right: auto; left: 0; }
html[dir="ltr"] .nav-dropdown::before { right: auto; left: 28px; border-right: none; border-left: 1px solid rgba(212,175,55,0.18); }
html[dir="ltr"] .nav-dropdown-link:hover { padding-right: 22px; padding-left: 28px; }
html[dir="ltr"] .nav-dropdown-link.current::before { right: auto; left: 0; }
html[dir="ltr"] .inner-banner-line { transform-origin: left; }
html[dir="ltr"] .section-title-bar { border-right: none; border-left: 3px solid var(--gold-primary); }
html[dir="ltr"] .detail-card::after { transform-origin: left; }
html[dir="ltr"] .split-content-box::before { right: auto; left: 0; }
html[dir="ltr"] .highlight-block { border-right: none; border-left: 3px solid var(--gold-primary); }
html[dir="ltr"] .other-service-link:hover { padding-right: 0; padding-left: 6px; }
html[dir="ltr"] .footer-services-list a:hover { padding-right: 0; padding-left: 4px; }
html[dir="ltr"] .anim-fade-left { transform: translateX(40px); }
