

/* ═══════════════════════════════════════
   SIRAN ALALAMIAH ALISTITHMAR — SHARED STYLESHEET
   ═══════════════════════════════════════ */
:root {
  --navy:       #0a1628;
  --navy-light: #122040;
  --navy-mid:   #1a3060;
  --gold:       #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale:  #f5e6c0;
  --gold-dark:  #a07830;
  --white:      #ffffff;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.50);
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --radius:     12px;
  --section-gap: 90px;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  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;
  white-space: nowrap !important;
  border: 0 !important;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

section[id],
.section-header[id] { scroll-margin-top: 90px; }
body {
  font-family: 'Tajawal', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  direction: rtl;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; height: 75px;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
nav.scrolled { height: 62px; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-text .ar { font-size: 15px; font-weight: 700; color: var(--gold); display: block; line-height: 1.1; }
.logo-text .en { font-size: 10px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-light); text-decoration: none; font-size: 14px; font-weight: 500;
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; right: 0;
  width: 0; height: 2px; background: var(--gold); transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--navy) !important; padding: 9px 22px; border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; display: block; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 75px; left: 0; right: 0;
  background: rgba(10,22,40,0.99); backdrop-filter: blur(20px);
  z-index: 999; padding: 16px 0; border-bottom: 1px solid rgba(201,168,76,0.2);
  transform: translateY(-110%); transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block; color: var(--text-light); text-decoration: none;
  font-size: 15px; font-weight: 500; padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-right: 32px; }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 380px; display: flex; align-items: flex-end;
  padding-top: 75px; position: relative; overflow: hidden; isolation: isolate;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,32,0.42) 0%, rgba(7,17,32,0.72) 55%, rgba(7,17,32,0.96) 100%),
    linear-gradient(180deg, rgba(10,22,40,0.2), rgba(10,22,40,0.82)),
    url('hero.png') center bottom / cover no-repeat !important;
  transform: scale(1.015);
}
html[dir="ltr"] .page-hero-bg {
  background:
    linear-gradient(270deg, rgba(7,17,32,0.38) 0%, rgba(7,17,32,0.7) 55%, rgba(7,17,32,0.96) 100%),
    linear-gradient(180deg, rgba(10,22,40,0.2), rgba(10,22,40,0.82)),
    url('hero.png') center bottom / cover no-repeat !important;
}
.page-hero-grid {
  position: absolute; inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(201,168,76,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  opacity: .65;
}
.page-hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1300px; margin: 0 auto; padding: 40px 5% 50px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--gold-light); }

.page-hero h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 15px; color: var(--text-light); max-width: 560px; line-height: 1.8; font-weight: 300; }

/* ── COMMON ── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }

.section-tag { display: inline-block; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-title span { color: var(--gold); }
.section-desc { font-size: 15px; color: var(--text-light); line-height: 1.8; font-weight: 300; }
.section-divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 2px; margin: 14px 0 0; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-divider { margin: 14px auto 0; }
.section-header.center .section-desc { max-width: 560px; margin: 14px auto 0; }

.card {
  background: linear-gradient(145deg, rgba(26,48,96,0.35), rgba(10,22,40,0.7));
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  transition: var(--transition);
}
.card:hover { border-color: rgba(201,168,76,0.32); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }

.icon-box {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.14), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 22px; transition: var(--transition); flex-shrink: 0;
}
.card:hover .icon-box { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy); border-color: transparent; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy); padding: 13px 30px; border-radius: 5px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(201,168,76,0.28);
  position: relative; overflow: hidden; font-family: 'Tajawal', sans-serif; border: none; cursor: pointer;
}
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,168,76,0.42); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(201,168,76,0.45); color: var(--gold-light);
  padding: 12px 26px; border-radius: 5px; font-weight: 500; font-size: 14px;
  text-decoration: none; transition: var(--transition); font-family: 'Tajawal', sans-serif; background: none; cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); transform: translateY(-2px); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, var(--navy-light) 0%, #060e1c 100%);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 64px 0 28px;
  margin-top: auto;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-brand p { color: var(--text-muted); font-size: 13px; line-height: 1.8; font-weight: 300; margin-top: 14px; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--gold-light); text-decoration: none; direction: ltr; }
.footer-phone:hover { color: var(--gold); }
.social-btn { width: 36px; height: 36px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; text-decoration: none; transition: var(--transition); }
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h2 { font-size: 13px; font-weight: 700; color: var(--gold-light); margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 300; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--gold-light); padding-right: 5px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; border-top: 1px solid rgba(201,168,76,0.08); font-size: 12px; color: var(--text-muted); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── BACK TO TOP ── */
.back-top { position: fixed; bottom: 26px; left: 26px; width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy); border: none; border-radius: 50%; cursor: pointer; font-size: 17px; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 18px rgba(201,168,76,0.35); transition: var(--transition); opacity: 0; pointer-events: none; z-index: 999; }
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-4px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  :root { --section-gap: 60px; }
}

/* HOME PAGE STYLES */
:root {
    --navy: #0a1628;
    --navy-light: #122040;
    --navy-mid: #1a3060;
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-pale: #f5e6c0;
    --gold-dark: #a07830;
    --white: #ffffff;
    --off-white: #f8f6f0;
    --text-light: rgba(255,255,255,0.85);
    --text-muted: rgba(255,255,255,0.55);
    --section-gap: 100px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    direction: rtl;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    height: 80px;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: var(--transition);
}

nav.scrolled {
    height: 65px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    display: block;
    width: auto;
    height: 56px;
    object-fit: contain;
    transition: var(--transition);
}

nav.scrolled .logo-icon { height: 46px; }

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-inline-start: 14px;
    border-inline-start: 1px solid rgba(201,168,76,0.55);
    line-height: 1.1;
}

.logo-text .ar { font-size: 17px; font-weight: 800; color: var(--gold); letter-spacing: 0.3px; }
.logo-text .en { font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: 1.7px; text-transform: uppercase; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; right: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transform: translateY(-110%);
    transition: top 0.4s ease, transform 0.4s ease;
}

.scrolled + .mobile-menu { top: 65px; }
.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold); padding-right: 34px; }
.mobile-menu a:last-child { border-bottom: none; }

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,17,32,0.38) 0%, rgba(7,17,32,0.68) 52%, rgba(7,17,32,0.96) 100%),
        linear-gradient(180deg, rgba(10,22,40,0.28) 0%, rgba(10,22,40,0.08) 58%, rgba(10,22,40,0.88) 100%),
        url('hero.png') center center / cover no-repeat;
    transform: scale(1.015);
    animation: heroBackgroundReveal 1.6s ease-out both;
}

html[dir="ltr"] .hero-bg {
    background:
        linear-gradient(270deg, rgba(7,17,32,0.28) 0%, rgba(7,17,32,0.62) 52%, rgba(7,17,32,0.96) 100%),
        linear-gradient(180deg, rgba(10,22,40,0.28) 0%, rgba(10,22,40,0.08) 58%, rgba(10,22,40,0.88) 100%),
        url('hero.png') center center / cover no-repeat;
}

@keyframes heroBackgroundReveal {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1.015); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: floatOrb 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,48,96,0.4) 0%, transparent 70%);
    bottom: -50px; right: 5%;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(20px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: minmax(0, 680px);
    align-items: center;
    justify-content: start;
    width: 100%;
}

.hero-left {
    padding: 34px 38px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(7,17,32,0.58), rgba(7,17,32,0.18));
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
    backdrop-filter: blur(3px);
}

#hero .hero-visual {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
    animation: fadeSlideUp 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 15px 34px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(201,168,76,0.45); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(201,168,76,0.5);
    color: var(--gold-light);
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(201,168,76,0.12);
    animation: fadeSlideUp 0.8s ease 0.4s both;
}

.hero-stat { text-align: center; }

.hero-stat .num {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.hero-stat .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.logo-3d-container {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
    animation: spin 20s linear infinite;
}

.logo-ring-1 { width: 100%; height: 100%; animation-duration: 25s; }
.logo-ring-2 { width: 80%; height: 80%; animation-duration: 18s; animation-direction: reverse; border-color: rgba(201,168,76,0.1); }
.logo-ring-3 { width: 60%; height: 60%; animation-duration: 30s; border-color: rgba(201,168,76,0.08); }

.logo-ring::before {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-center {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.logo-s {
    display: block;
    width: 180px;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
}

/* ─── SECTIONS ─── */
section { position: relative; z-index: 1; }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    margin: 20px auto 0;
    border-radius: 2px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ─── ABOUT ─── */
#about {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-card-main {
    background: linear-gradient(135deg, var(--navy-mid), rgba(26,48,96,0.5));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.about-card-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent);
}

.about-quote {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
}

.about-quote strong { color: var(--gold-light); font-weight: 700; font-style: normal; }

.about-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    flex-shrink: 0;
}

.author-name { font-size: 15px; font-weight: 700; color: var(--white); }
.author-title { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.floating-badge {
    position: absolute;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.floating-badge-1 { bottom: -20px; left: -20px; }
.floating-badge-2 { top: -16px; right: 20px; }

.about-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
.about-text p { color: var(--text-light); line-height: 1.85; font-size: 15.5px; font-weight: 300; margin-bottom: 16px; }

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: rgba(201,168,76,0.06);
    border-radius: 10px;
    border: 1px solid rgba(201,168,76,0.1);
    transition: var(--transition);
}

.value-item:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.1);
    transform: translateY(-2px);
}

.value-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 15px;
    flex-shrink: 0;
}

.value-label { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.value-desc { font-size: 12px; color: var(--text-muted); }

/* ─── SECTORS ─── */
#sectors {
    padding: var(--section-gap) 0;
    background: var(--navy);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sector-card {
    background: linear-gradient(145deg, rgba(26,48,96,0.4), rgba(10,22,40,0.8));
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 16px;
    padding: 36px 30px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.sector-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.sector-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.08);
}

.sector-card:hover::before { opacity: 1; }

.sector-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(26,48,96,0.6), rgba(201,168,76,0.05));
}

.sector-icon-wrap {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 22px;
    transition: var(--transition);
}

.sector-card:hover .sector-icon-wrap {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    border-color: transparent;
}

.sector-num {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.sector-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.sector-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

.sector-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-top: 20px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.sector-card:hover .sector-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ─── NUMBERS ─── */
#numbers {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    position: relative;
    overflow: hidden;
}

#numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.number-item {
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid rgba(201,168,76,0.1);
}

.number-item:last-child { border-right: none; }

.number-value {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.number-label { font-size: 14px; color: var(--text-muted); font-weight: 400; }

/* ─── INVESTOR RELATIONS ─── */
#investor {
    padding: var(--section-gap) 0;
    background: var(--navy);
}

.investor-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.ir-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ir-card {
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    padding: 24px 20px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.ir-card:hover {
    border-color: rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.1);
    transform: translateY(-3px);
}

.ir-card-icon { font-size: 28px; color: var(--gold); margin-bottom: 12px; display: block; }
.ir-card-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.ir-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.investor-info h3 { font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.investor-info p { color: var(--text-light); line-height: 1.8; font-size: 15px; font-weight: 300; margin-bottom: 24px; }

.highlight-box {
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
    border: 1px solid rgba(201,168,76,0.2);
    border-right: 3px solid var(--gold);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 24px;
}

.highlight-box p { color: var(--gold-light) !important; font-size: 14px !important; margin: 0 !important; font-style: italic; }

/* ─── MEDIA ─── */
#media {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: linear-gradient(145deg, rgba(26,48,96,0.3), rgba(10,22,40,0.7));
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.news-img {
    height: 180px;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(201,168,76,0.3);
    position: relative;
    overflow: hidden;
}

.news-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.8) 100%);
}

.news-body { padding: 24px; }
.news-tag { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.news-title { font-size: 16px; font-weight: 700; line-height: 1.5; margin-bottom: 12px; }
.news-date { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

/* ─── CAREERS ─── */
#careers {
    padding: var(--section-gap) 0;
    background: var(--navy);
}

.careers-banner {
    background: linear-gradient(135deg, var(--navy-mid), rgba(201,168,76,0.08));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 20px;
    padding: 60px 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.careers-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: radial-gradient(ellipse at right center, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.careers-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.careers-text p { color: var(--text-light); font-size: 15px; font-weight: 300; line-height: 1.7; max-width: 500px; }

.careers-perks {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.perk-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    color: var(--gold-light);
}

/* ─── CONTACT ─── */
#contact {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--text-light); font-size: 15px; font-weight: 300; line-height: 1.8; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
}

.contact-item-label { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--white); text-decoration: none; }

.contact-form-card {
    background: linear-gradient(145deg, rgba(26,48,96,0.3), rgba(10,22,40,0.6));
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 18px;
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    padding: 13px 16px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
    outline: none;
    direction: rtl;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201,168,76,0.45);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.form-group select option { background: var(--navy-light); }

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    border: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}

.form-status {
    min-height: 1.5em;
    margin-top: 12px;
    color: var(--gold-light);
    font-size: 13px;
    text-align: center;
}

.form-status.success { color: #54d98c; }
.form-status.error { color: #ff7b7b; }

/* ─── CONTACT STATUS TOAST ─── */
.site-toast {
    position: fixed;
    top: 92px;
    inset-inline-end: 28px;
    z-index: 3000;
    width: min(420px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: 46px 1fr 32px;
    align-items: center;
    gap: 14px;
    padding: 18px 18px 20px;
    overflow: hidden;
    color: var(--white);
    background: rgba(10, 22, 40, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-18px) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.site-toast.show { opacity: 1; transform: translateY(0) scale(1); }
.site-toast.hide { opacity: 0; transform: translateY(-12px) scale(0.97); }
.site-toast.success { border-color: rgba(84, 217, 140, 0.42); }
.site-toast.error { border-color: rgba(255, 123, 123, 0.42); }
.site-toast-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 23px;
}
.site-toast.success .site-toast-icon { color: #54d98c; background: rgba(84, 217, 140, 0.12); }
.site-toast.error .site-toast-icon { color: #ff7b7b; background: rgba(255, 123, 123, 0.12); }
.site-toast-content { display: flex; flex-direction: column; gap: 4px; line-height: 1.5; }
.site-toast-content strong { color: var(--white); font-size: 16px; }
.site-toast-content span { color: var(--text-light); font-size: 13px; }
.site-toast-close {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.site-toast-close:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.site-toast-progress {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    transform-origin: right;
    animation: toastCountdown 6s linear forwards;
}
.site-toast.success .site-toast-progress { background: #54d98c; }
.site-toast.error .site-toast-progress { background: #ff7b7b; }
html[dir="ltr"] .site-toast-progress { transform-origin: left; }
@keyframes toastCountdown { to { transform: scaleX(0); } }
@media (max-width: 600px) {
    .site-toast {
        top: 82px;
        inset-inline: 16px;
        width: auto;
    }
}

.hp-field {
    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;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ─── FOOTER ─── */
footer {
    background: linear-gradient(180deg, var(--navy-light) 0%, #060e1c 100%);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.8;
    font-weight: 300;
    margin-top: 16px;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 38px; height: 38px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(255,255,255,0.1);
    color: inherit;
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-3px);
}

/* Official social brand colors */
.social-btn i {
    font-size: 18px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.12);
    filter: brightness(1.12);
}

.social-btn .fa-whatsapp { color: #25d366; }
.social-btn .fa-x-twitter { color: #ffffff; }
.social-btn .fa-linkedin-in { color: #0a66c2; }
.social-btn .fa-youtube { color: #ff0000; }

.social-btn .fa-tiktok {
    color: #ffffff;
    text-shadow: -1.5px -1px 0 #25f4ee, 1.5px 1px 0 #fe2c55;
}

.social-btn .fa-instagram {
    color: transparent;
    background: radial-gradient(
        circle at 30% 110%,
        #ffd600 0 18%,
        #ff7a00 28%,
        #ff0169 52%,
        #d300c5 72%,
        #7638fa 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h2 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 300;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul a:hover { color: var(--gold-light); padding-right: 6px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(201,168,76,0.08);
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── BACK TO TOP ─── */
.back-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(201,168,76,0.35);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-4px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .sector-card.featured { grid-column: span 2; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .number-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
    .number-item:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-visual { order: -1; }
    .logo-3d-container { width: 260px; height: 260px; }
    .logo-s { width: 145px; height: 217px; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-badge { margin: 0 auto 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .investor-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
    .sector-card.featured { grid-column: span 1; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .careers-banner { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .ir-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    :root { --section-gap: 64px; }
    #hero { min-height: 100svh; }
    .hero-bg,
    html[dir="ltr"] .hero-bg {
        background:
            linear-gradient(180deg, rgba(7,17,32,0.58) 0%, rgba(7,17,32,0.78) 48%, rgba(7,17,32,0.96) 100%),
            url('hero.png') 58% center / cover no-repeat;
    }
    .hero-content { padding: 28px 18px; }
    .hero-left {
        padding: 26px 18px;
        border-radius: 14px;
        background: rgba(7,17,32,0.42);
        backdrop-filter: blur(2px);
    }
    .hero-title { font-size: clamp(34px, 10vw, 46px); }
    .hero-subtitle { margin-bottom: 30px; }
    .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 15px; }
    .hero-stat .num { font-size: 26px; }
    .news-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 22px; }
    .careers-banner { padding: 36px 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .logo-3d-container { width: 200px; height: 200px; }
    .logo-s { width: 110px; height: 165px; }
}

/* INNER PAGES RESPONSIVE */
@media (max-width: 1000px) {
    .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .booking-features-grid,
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .inner-page .page-hero {
        min-height: 330px;
    }
}

@media (max-width: 900px) {
    .inner-page .page-hero-content {
        padding-inline: 20px;
    }

    .inner-page .container {
        padding-inline: 20px;
    }

    .sectors-page .sectors-nav,
    .investor-page .ir-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
        padding-bottom: 8px;
    }

    .sectors-page .tab-btn,
    .investor-page .ir-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .sectors-page .sector-hero {
        padding: 32px 24px;
    }

    .sectors-page .cta-strip {
        align-items: stretch;
        padding: 28px 24px;
    }

    .sectors-page .cta-strip .btn-primary {
        justify-content: center;
    }

    .investor-page .event-card {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .investor-page .gov-doc {
        min-width: 0;
    }

    .investor-page .gov-doc > div:nth-child(2) {
        min-width: 0;
    }
}

@media (max-width: 700px) {
    .inner-page .page-hero {
        min-height: 285px;
        padding-top: 80px;
    }

    .inner-page .page-hero-content {
        padding-block: 30px 34px;
    }

    .inner-page .page-hero h1 {
        font-size: 30px;
    }

    .inner-page .page-hero p {
        font-size: 14px;
    }

    .about-page .vision-card,
    .about-page .gov-card,
    .about-page .csr-card,
    .about-page .chairman-body,
    .investor-page .subscribe-card {
        padding: 24px 20px;
    }

    .about-page .board-grid,
    .booking-features-grid,
    .projects-grid,
    .sector-stats-grid {
        grid-template-columns: 1fr !important;
    }

    .about-feature-wrap {
        padding-top: 0 !important;
    }

    .about-feature-card {
        padding: 26px 20px !important;
    }

    .about-page .chairman-section {
        gap: 32px;
    }

    .about-page .chairman-meta {
        gap: 18px;
        justify-content: space-between;
    }

    .about-page .tl-item {
        padding-right: 52px;
    }

    .sectors-page .sector-hero {
        padding: 26px 20px;
    }

    .sectors-page .sector-hero-icon {
        display: none;
    }

    .sectors-page .services-grid,
    .sectors-page .audience-split {
        grid-template-columns: 1fr;
    }

    .sectors-page .service-card,
    .sectors-page .audience-card {
        padding: 24px 20px;
    }

    .investor-page .metric-cards {
        grid-template-columns: 1fr;
    }

    .investor-page .event-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .investor-page .report-card,
    .investor-page .gov-doc {
        padding: 20px 18px;
    }

    .investor-page .report-date {
        flex-wrap: wrap;
    }

    .investor-page .faq-q {
        gap: 14px;
        padding: 16px;
    }

    .investor-page .faq-a {
        padding-inline: 16px;
    }

    .inner-page .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .inner-page .container,
    .inner-page .page-hero-content {
        padding-inline: 16px;
    }

    .inner-page .btn-primary,
    .inner-page .btn-outline {
        width: 100%;
        justify-content: center;
        padding-inline: 18px;
    }
}


/* ==================== ABOUT PAGE ==================== */
/* ── ABOUT PAGE STYLES ── */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.vision-card {
  padding: 36px 28px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(26,48,96,0.35), rgba(10,22,40,0.7));
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent);
}
.vision-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-5px); box-shadow: 0 20px 45px rgba(0,0,0,0.35); }
.vision-card .v-icon { font-size: 36px; margin-bottom: 18px; }
.vision-card h3 { font-size: 20px; font-weight: 700; color: var(--gold-light); margin-bottom: 12px; }
.vision-card p { font-size: 14px; color: var(--text-light); line-height: 1.8; font-weight: 300; }

/* CHAIRMAN */
.chairman-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
  padding: var(--section-gap) 0;
}
.chairman-card {
  background: linear-gradient(145deg, rgba(26,48,96,0.4), rgba(10,22,40,0.8));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}
.chairman-avatar {
  width: 100%; height: 260px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(201,168,76,0.25);
  position: relative;
}
.chairman-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(transparent, rgba(10,22,40,0.9));
}
.chairman-body { padding: 24px; }
.chairman-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.chairman-title { font-size: 13px; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.chairman-social { display: flex; gap: 10px; justify-content: center; }
.chairman-social a {
  width: 34px; height: 34px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 13px; text-decoration: none; transition: var(--transition);
}
.chairman-social a:hover { background: var(--gold); color: var(--navy); }

.chairman-quote-wrap { position: relative; }
.chairman-quote-mark {
  font-size: 140px; line-height: 0.8;
  color: rgba(201,168,76,0.08);
  font-family: Georgia, serif;
  position: absolute;
  top: -20px; right: -10px;
}
.chairman-quote {
  font-size: 18px; line-height: 1.9; color: var(--text-light);
  font-weight: 300; font-style: italic; position: relative; z-index: 1;
  margin-bottom: 32px;
}
.chairman-quote strong { color: var(--gold-light); font-weight: 700; font-style: normal; }
.chairman-meta { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 32px; }
.chairman-meta-item { text-align: center; }
.chairman-meta-item .num { font-size: 32px; font-weight: 900; color: var(--gold); line-height: 1; }
.chairman-meta-item .lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* BOARD */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.board-card {
  background: linear-gradient(145deg, rgba(26,48,96,0.3), rgba(10,22,40,0.7));
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.board-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,0.35); }
.board-avatar {
  height: 140px;
  background: linear-gradient(135deg, var(--navy-mid), rgba(201,168,76,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(201,168,76,0.2);
}
.board-body { padding: 20px 16px; }
.board-role { font-size: 12px; color: var(--gold); font-weight: 500; }

/* GOVERNANCE */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gov-card {
  padding: 32px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(26,48,96,0.3), rgba(10,22,40,0.7));
  border: 1px solid rgba(201,168,76,0.1);
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--transition);
}
.gov-card:hover { border-color: rgba(201,168,76,0.28); transform: translateY(-3px); }
.gov-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.gov-content p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* CSR */
.csr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.csr-card {
  padding: 28px 24px;
  border-radius: 14px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  transition: var(--transition);
}
.csr-card:hover { background: rgba(201,168,76,0.09); border-color: rgba(201,168,76,0.25); transform: translateY(-3px); }
.csr-icon { font-size: 36px; margin-bottom: 16px; color: var(--gold); }
.csr-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.csr-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* TIMELINE */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.1));
}
.tl-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
  padding-right: 64px;
  position: relative;
}
.tl-dot {
  position: absolute;
  right: 18px; top: 4px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
  flex-shrink: 0;
}
.tl-year {
  font-size: 22px; font-weight: 900; color: var(--gold);
  line-height: 1; margin-bottom: 6px;
}
.tl-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.tl-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

@media (max-width: 1000px) {
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: 1fr; }
  .chairman-section { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .governance-grid, .csr-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ==================== SECTORS PAGE ==================== */
/* TABS */
.sectors-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  padding: 8px;
}
.tab-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: none; border: none; color: var(--text-muted);
  font-family: 'Tajawal', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; border-radius: 8px; transition: var(--transition);
  flex: 1; justify-content: center; white-space: nowrap;
}
.tab-btn:hover { color: var(--gold-light); background: rgba(201,168,76,0.07); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy); font-weight: 700;
}
.tab-btn i { font-size: 16px; }

/* SECTOR PANEL */
.sector-panel { display: none; }
.sector-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* SECTOR HERO */
.sector-hero {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26,48,96,0.5), rgba(10,22,40,0.9));
  border: 1px solid rgba(201,168,76,0.18);
  padding: 48px;
  margin-bottom: 40px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
}
.sector-hero::before { content: ''; position: absolute; top:0;left:0;right:0; height:3px; background:linear-gradient(90deg,var(--gold-dark),var(--gold),transparent); }
.sector-hero-icon { font-size: 80px; opacity: 0.15; position: absolute; left: 40px; top: 50%; transform: translateY(-50%); }
.sh-tag { display:inline-block; font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:12px; font-weight:600; }
.sh-title { font-size: clamp(26px,3vw,40px); font-weight: 800; margin-bottom: 14px; }
.sh-desc { font-size: 15px; color: var(--text-light); line-height: 1.8; font-weight: 300; max-width: 600px; }
.sh-badge { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy); padding: 8px 18px; border-radius: 50px; font-size: 12px; font-weight: 700; white-space: nowrap; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.service-card {
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(26,48,96,0.3), rgba(10,22,40,0.7));
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px; transition: var(--transition);
}
.service-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.3); }
.sc-icon { font-size: 28px; color: var(--gold); margin-bottom: 14px; }
.sc-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.sc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.sc-features { list-style: none; margin-top: 12px; }
.sc-features li { font-size: 12.5px; color: var(--text-light); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.sc-features li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* B2B / B2C SPLIT */
.audience-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.audience-card {
  padding: 32px;
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.12);
  position: relative; overflow: hidden;
}
.audience-card.b2c { background: linear-gradient(135deg, rgba(26,48,96,0.4), rgba(10,22,40,0.8)); }
.audience-card.b2b { background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(10,22,40,0.8)); }
.audience-badge { display:inline-block; padding:5px 14px; border-radius:50px; font-size:12px; font-weight:700; margin-bottom:16px; }
.b2c .audience-badge { background: rgba(99,179,237,0.15); color: #63b3ed; border: 1px solid rgba(99,179,237,0.3); }
.b2b .audience-badge { background: rgba(201,168,76,0.12); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.25); }
.audience-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.audience-card ul { list-style: none; }
.audience-card ul li { font-size: 13.5px; color: var(--text-light); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; gap: 10px; align-items: flex-start; font-weight: 300; }
.audience-card ul li:last-child { border-bottom: none; }
.audience-card ul li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: 13px; }

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-mid), rgba(201,168,76,0.07));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.cta-strip p { font-size: 14px; color: var(--text-muted); font-weight: 300; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .audience-split { grid-template-columns: 1fr; }
  .sector-hero { grid-template-columns: 1fr; }
  .tab-btn { font-size: 12px; padding: 10px 14px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .tab-btn span { display: none; }
  .sector-hero { padding: 28px; }
}


/* ==================== INVESTOR PAGE ==================== */
.ir-tabs { display:flex; gap:0; margin-bottom:48px; border-bottom:2px solid rgba(201,168,76,0.12); }
.ir-tab { padding:14px 24px; background:none; border:none; font-family:'Tajawal',sans-serif; font-size:14px; font-weight:500; color:var(--text-muted); cursor:pointer; position:relative; transition:var(--transition); }
.ir-tab.active { color:var(--gold-light); font-weight:700; }
.ir-tab.active::after { content:''; position:absolute; bottom:-2px; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--gold-dark),var(--gold)); }
.ir-tab:hover { color:var(--gold-light); }

.ir-panel { display:none; animation:fadeIn 0.4s ease; }
.ir-panel.active { display:block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px);} to{opacity:1;transform:translateY(0);} }

/* OVERVIEW */
.overview-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:48px; align-items:start; margin-bottom:48px; }
.metric-cards { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.metric-card { padding:24px 20px; background:linear-gradient(145deg,rgba(26,48,96,0.35),rgba(10,22,40,0.7)); border:1px solid rgba(201,168,76,0.12); border-radius:12px; text-align:center; transition:var(--transition); }
.metric-card:hover { border-color:rgba(201,168,76,0.3); transform:translateY(-3px); }
.metric-value { font-size:34px; font-weight:900; color:var(--gold); line-height:1; }
.metric-label { font-size:12px; color:var(--text-muted); margin-top:6px; }
.metric-trend { font-size:12px; color:#4ade80; margin-top:4px; }

.why-invest { display:flex; flex-direction:column; gap:14px; }
.wi-item { display:flex; gap:14px; align-items:flex-start; padding:16px 18px; background:rgba(201,168,76,0.05); border:1px solid rgba(201,168,76,0.1); border-radius:10px; transition:var(--transition); }
.wi-item:hover { border-color:rgba(201,168,76,0.25); background:rgba(201,168,76,0.09); }
.wi-num { font-size:24px; font-weight:900; color:var(--gold); line-height:1; min-width:32px; }
.wi-title { font-size:14px; font-weight:700; margin-bottom:3px; }
.wi-desc { font-size:12.5px; color:var(--text-muted); line-height:1.6; font-weight:300; }

/* REPORTS */
.reports-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.report-card { padding:28px 24px; background:linear-gradient(145deg,rgba(26,48,96,0.35),rgba(10,22,40,0.7)); border:1px solid rgba(201,168,76,0.1); border-radius:14px; transition:var(--transition); }
.report-card:hover { border-color:rgba(201,168,76,0.3); transform:translateY(-4px); }
.report-type { font-size:11px; color:var(--gold); letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; font-weight:600; }
.report-title { font-size:16px; font-weight:700; margin-bottom:8px; }
.report-date { font-size:12px; color:var(--text-muted); margin-bottom:16px; display:flex; align-items:center; gap:6px; }
.report-size { font-size:11px; color:var(--text-muted); background:rgba(255,255,255,0.05); padding:3px 10px; border-radius:50px; }
.download-btn { display:inline-flex; align-items:center; gap:8px; color:var(--gold); font-size:13px; font-weight:600; text-decoration:none; transition:var(--transition); }
.download-btn:hover { color:var(--gold-light); }

/* EVENTS */
.events-list { display:flex; flex-direction:column; gap:16px; }
.event-card { display:grid; grid-template-columns:80px 1fr auto; gap:24px; align-items:center; padding:24px; background:linear-gradient(145deg,rgba(26,48,96,0.3),rgba(10,22,40,0.7)); border:1px solid rgba(201,168,76,0.1); border-radius:14px; transition:var(--transition); }
.event-card:hover { border-color:rgba(201,168,76,0.28); transform:translateX(-4px); }
.event-date { text-align:center; }
.event-day { font-size:32px; font-weight:900; color:var(--gold); line-height:1; }
.event-month { font-size:12px; color:var(--text-muted); }
.event-title { font-size:16px; font-weight:700; margin-bottom:4px; }
.event-desc { font-size:13px; color:var(--text-muted); font-weight:300; }
.event-badge { padding:6px 14px; border-radius:50px; font-size:11px; font-weight:700; white-space:nowrap; }
.badge-live { background:rgba(74,222,128,0.1); color:#4ade80; border:1px solid rgba(74,222,128,0.3); }
.badge-upcoming { background:rgba(201,168,76,0.1); color:var(--gold-light); border:1px solid rgba(201,168,76,0.25); }
.badge-past { background:rgba(255,255,255,0.05); color:var(--text-muted); border:1px solid rgba(255,255,255,0.1); }

/* GOVERNANCE */
.gov-docs { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-bottom:40px; }
.gov-doc { display:flex; align-items:center; gap:16px; padding:20px; background:rgba(201,168,76,0.05); border:1px solid rgba(201,168,76,0.1); border-radius:10px; text-decoration:none; transition:var(--transition); }
.gov-doc:hover { border-color:rgba(201,168,76,0.3); background:rgba(201,168,76,0.09); }
.gov-doc-icon { font-size:28px; color:var(--gold); }
.gov-doc-name { font-size:14px; font-weight:600; color:var(--white); margin-bottom:3px; }
.gov-doc-desc { font-size:12px; color:var(--text-muted); font-weight:300; }
.gov-doc-dl { margin-right:auto; color:var(--text-muted); font-size:14px; }
.gov-doc:hover .gov-doc-dl { color:var(--gold); }

/* FAQ */
.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item { background:linear-gradient(145deg,rgba(26,48,96,0.3),rgba(10,22,40,0.7)); border:1px solid rgba(201,168,76,0.1); border-radius:10px; overflow:hidden; }
.faq-q { display:flex; width:100%; align-items:center; justify-content:space-between; padding:18px 22px; cursor:pointer; font-family:inherit; font-size:15px; font-weight:600; color:var(--white); text-align:right; background:none; border:0; transition:var(--transition); }
.faq-q:hover { color:var(--gold-light); }
.faq-q i { color:var(--gold); transition:var(--transition); flex-shrink:0; }
.faq-item.open .faq-q i { transform:rotate(45deg); }
.faq-a { display:none; padding:0 22px 18px; font-size:14px; color:var(--text-muted); line-height:1.8; font-weight:300; border-top:1px solid rgba(201,168,76,0.08); padding-top:14px; }
.faq-item.open .faq-a { display:block; }

/* SUBSCRIBE FORM */
.subscribe-card { background:linear-gradient(135deg,var(--navy-mid),rgba(201,168,76,0.06)); border:1px solid rgba(201,168,76,0.2); border-radius:16px; padding:44px; text-align:center; }
.subscribe-card h3 { font-size:24px; font-weight:800; margin-bottom:12px; }
.subscribe-card p { color:var(--text-light); font-size:15px; max-width:460px; margin:0 auto 28px; line-height:1.7; font-weight:300; }
.subscribe-form { display:flex; gap:12px; max-width:440px; margin:0 auto; }
.subscribe-form input { flex:1; background:rgba(255,255,255,0.05); border:1px solid rgba(201,168,76,0.2); border-radius:6px; padding:13px 16px; font-family:'Tajawal',sans-serif; font-size:14px; color:var(--white); outline:none; direction:ltr; transition:var(--transition); }
.subscribe-form input:focus { border-color:rgba(201,168,76,0.5); background:rgba(255,255,255,0.07); }
.subscribe-form input::placeholder { color:var(--text-muted); }

@media(max-width:900px){
  .overview-grid{grid-template-columns:1fr;}
  .reports-grid{grid-template-columns:1fr 1fr;}
  .event-card{grid-template-columns:60px 1fr; gap:16px;}
  .event-badge{display:none;}
  .gov-docs{grid-template-columns:1fr;}
  .subscribe-form{flex-direction:column;}
  .ir-tabs{flex-wrap:wrap;}
}
@media(max-width:600px){.reports-grid{grid-template-columns:1fr;}.metric-cards{grid-template-columns:1fr 1fr;}}
/* Bilingual language switcher and LTR support */
.language-switcher {
  flex: 0 0 auto;
  padding: 8px 14px;
  margin-inline-start: 12px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 999px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.language-switcher:hover,
.language-switcher:focus,
.language-switcher:visited {
  text-decoration: none;
}
.language-switcher:hover { background: var(--gold); color: var(--navy); }
.mobile-menu .mobile-language-switcher { display: none; }
html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}
html[dir="ltr"] .hero-badge {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (min-width: 901px) {
  html[dir="ltr"] .hero-title {
    font-size: clamp(34px, 3.6vw, 50px);
    white-space: nowrap;
  }
}
html[dir="ltr"] .nav-links a::after { right: auto; left: 0; }
html[dir="ltr"] .mobile-menu a:hover { padding-right: 24px; padding-left: 34px; }
html[dir="ltr"] .back-top { left: auto; right: 26px; }
html[dir="ltr"] .logo-text { margin-right: 0 !important; margin-left: 12px; }
html[dir="ltr"] .breadcrumb i.fa-chevron-left,
html[dir="ltr"] footer i.fa-chevron-left { transform: rotate(180deg); }
html[dir="ltr"] .privacy-card ul,
html[dir="ltr"] .legal-card ul { padding-right: 0; padding-left: 24px; }
html[dir="ltr"] .privacy-updated,
html[dir="ltr"] .legal-updated { border-right: 0; border-left: 3px solid var(--gold); }
@media (max-width: 900px) {
  #navbar > .language-switcher { display: none; }
  .mobile-menu .mobile-language-switcher {
    display: block;
    width: max-content;
    margin: 18px auto 0;
  }
}
