:root {
  --navy: #0d1d45;
  --navy-2: #13306a;
  --gold: #b8904a;
  --gold-grad: linear-gradient(90deg, #8f6a2e 0%, #e2c27a 50%, #8f6a2e 100%);
  --gold-light: #e6c877;
  --ink: #1d2433;
  --muted: #5b6474;
  --line: #e4e7ee;
  --bg: #ffffff;
  --bg-soft: #f5f6fa;
  --radius: 10px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); }
h1, h2, h3, h4 { font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; font-weight: 700; text-wrap: balance; color: var(--navy); line-height: 1.25; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 600; color: var(--gold); margin-bottom: .6rem; display: block; }
.section { padding: 80px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.muted { color: var(--muted); }

/* Top bar */
.topbar { background: var(--navy); color: #d9deea; font-size: .85rem; }
.topbar .container { display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.topbar a { color: #d9deea; text-decoration: none; }
.topbar a:hover { color: var(--gold-light); }
.topbar span { white-space: nowrap; }

/* Header */
.site-header { background: #fff; border-bottom: 3px solid transparent; border-image: var(--gold-grad) 1; position: sticky; top: 0; z-index: 50; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 62px; height: auto; }
.brand-text { border-left: 2px solid var(--navy); padding-left: 12px; }
.brand strong { display: block; font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; font-weight: 700; color: var(--navy); font-size: 1.45rem; line-height: 1; text-transform: uppercase; letter-spacing: .01em; }
.brand small { display: block; font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; color: var(--gold); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; margin-top: 3px; }
.brand-footer { margin-bottom: 14px; }
.brand-footer .brand-text { border-left-color: rgba(255,255,255,.5); }
.brand-footer strong { color: #fff; }
.arabic { font-family: "Cairo", "Segoe UI", Tahoma, sans-serif; font-weight: 700; }
.site-footer .arabic { color: var(--gold-light); font-size: 1.05rem; margin: 0 0 10px; text-align: left; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a.active { color: var(--navy); border-bottom-color: var(--gold); }
.nav .btn { border-bottom: 0; padding: 10px 18px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* Buttons */
.btn { display: inline-block; background: var(--gold); color: var(--navy) !important; font-weight: 600; text-decoration: none; padding: 13px 26px; border-radius: 6px; transition: background .2s; border: 0; }
.btn:hover { background: var(--gold-light); }
.btn.outline { background: transparent; color: #fff !important; border: 1.5px solid rgba(255,255,255,.6); }
.btn.outline:hover { background: rgba(255,255,255,.1); }

/* Hero */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,31,69,.95) 0%, rgba(11,31,69,.75) 50%, rgba(11,31,69,.2) 100%); }
.hero .container { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 120px; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); text-transform: uppercase; letter-spacing: .01em; }
.hero .arabic { color: var(--gold-light); font-size: 1.2rem; margin-bottom: 10px; }
.hero h1 { color: #fff; max-width: 680px; }
.hero p { max-width: 560px; font-size: 1.1rem; color: #d9deea; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.page-hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: 64px 0; border-bottom: 3px solid transparent; border-image: var(--gold-grad) 1; }
.page-hero::before { content: ""; position: absolute; top: 0; bottom: 0; right: -80px; width: 34%; background: #13285a; transform: skewX(-24deg); border-left: 14px solid var(--gold); }
.page-hero::after { content: ""; position: absolute; right: 6%; top: 50%; width: 190px; height: 160px; transform: translateY(-50%); background: url("../images/logo-white.svg") no-repeat center / contain; opacity: .14; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: #c9d0df; margin: 0; max-width: 640px; }
.crumbs { font-size: .85rem; color: var(--gold-light); margin-bottom: 10px; }
.crumbs a { color: var(--gold-light); text-decoration: none; }

/* Grid & cards */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 50px; align-items: center; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(11,31,69,.08); }
.card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--bg-soft); }
.card-body { padding: 22px 24px 26px; }
.card-body p { color: var(--muted); font-size: .95rem; }
.card a.more { font-weight: 600; text-decoration: none; color: var(--navy-2); }
.card a.more:hover { color: var(--gold); }
.meta { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }

.service { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.service .icon { width: 52px; height: 52px; border-radius: 10px; background: var(--navy); display: grid; place-items: center; margin-bottom: 16px; }
.service .icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service p { color: var(--muted); font-size: .95rem; margin: 0; }
.service ul { color: var(--muted); font-size: .93rem; padding-left: 18px; margin: 12px 0 0; }

.feature-img { border-radius: var(--radius); box-shadow: 0 20px 40px rgba(11,31,69,.12); }
.checklist { list-style: none; padding: 0; margin: 18px 0 0; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); box-shadow: inset 0 0 0 4px #fff; border: 1.5px solid var(--gold); }

/* CTA band */
.cta { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: 60px 0; }
.cta .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta h2 { color: #fff; margin: 0 0 .2em; }
.cta p { color: #c9d0df; margin: 0; }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ci { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; }
.contact-list .ci svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-list strong { display: block; color: var(--navy); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-list a { text-decoration: none; color: var(--ink); font-size: 1.05rem; }
.contact-list a:hover { color: var(--gold); }
.map { border: 0; width: 100%; height: 380px; border-radius: var(--radius); }
.info-box { background: var(--bg-soft); border-left: 4px solid var(--gold); padding: 22px 24px; border-radius: 6px; }
.info-box dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 8px 18px; }
.info-box dt { font-weight: 600; color: var(--navy); }
.info-box dd { margin: 0; color: var(--muted); }

/* Article */
.article { max-width: 760px; margin: 0 auto; }
.article .cover { border-radius: var(--radius); margin: 0 0 34px; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.article h2 { font-size: 1.55rem; margin-top: 1.6em; }
.article p, .article li { font-size: 1.05rem; color: #333a48; }
.article ul, .article ol { padding-left: 22px; margin: 0 0 1.2em; }
.article li { margin-bottom: .45em; }
.article .note { background: var(--bg-soft); border-left: 4px solid var(--gold); padding: 18px 22px; border-radius: 6px; margin: 28px 0; }
.article .byline { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: center; color: var(--muted); font-size: .9rem; margin-bottom: 26px; }

/* Footer */
.site-footer { background: var(--navy); color: #b9c0d2; padding: 60px 0 0; font-size: .93rem; border-top: 5px solid transparent; border-image: var(--gold-grad) 1; }
.site-footer h4 { color: #fff; font-family: inherit; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: #aeb6c8; text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding: 20px 0; font-size: .85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }

.wa-float { position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.2); z-index: 60; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Responsive */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav { position: absolute; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 20px; border-bottom: 3px solid var(--gold); display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 12px; text-align: center; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-2 { gap: 30px; }
  .section { padding: 56px 0; }
  .hero .container { padding-top: 70px; padding-bottom: 80px; }
  .hero::after { background: rgba(11,31,69,.85); }
  .topbar .hide-sm { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand strong { font-size: 1.1rem; }
  .brand small { font-size: .7rem; }
  .brand img { width: 48px; }
  .page-hero::before { width: 22%; }
  .page-hero::after { display: none; }
}
