/* ── TOKENS ──────────────────────────────────────── */
    :root {
      --navy:     #1A2B4A;
      --teal:     #1D7A7A;
      --teal-lt:  #2AA8A0;
      --sand:     #C8863C;
      --sand-lt:  #F0C27A;
      --cream:    #F7F3ED;
      --white:    #FFFFFF;
      --ink:      #1C1C1E;
      --muted:    #6B7280;
      --border:   #E5E0D8;

      --font-display: 'Cairo', sans-serif;
      --font-body:    'Tajawal', sans-serif;

      --r-sm: 6px;
      --r-md: 12px;
      --r-lg: 20px;
    }

    /* ── RESET ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--ink);
      line-height: 1.75;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a  { color: inherit; text-decoration: none; }

    /* ── NAV ─────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; inset-inline: 0; z-index: 900;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 68px;
      background: rgba(26, 43, 74, 0.97);
      backdrop-filter: blur(8px);
      border-bottom: 2px solid var(--teal);
    }
    .nav-brand {
      display: flex; align-items: center; gap: 12px;
    }
    .nav-logo-ring {
      width: 44px; height: 44px;
      border: 2px solid var(--teal-lt);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-weight: 900; font-size: 15px;
      color: var(--white);
      letter-spacing: 1px;
    }
    .nav-name {
      font-family: var(--font-display);
      font-weight: 700; font-size: 15px;
      color: var(--white);
      line-height: 1.3;
    }
    .nav-name span { display: block; font-weight: 300; font-size: 11px; color: var(--teal-lt); letter-spacing: 2px; }
    .nav-links {
      display: flex; gap: 28px; list-style: none;
    }
    .nav-links a {
      font-size: 13px; font-weight: 500;
      color: rgba(255,255,255,0.75);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--sand-lt); }
    .nav-cta {
      background: var(--sand);
      color: var(--white) !important;
      padding: 7px 18px;
      border-radius: var(--r-sm);
      font-weight: 600 !important;
      font-size: 13px !important;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--sand-lt) !important; color: var(--navy) !important; }
    .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

    /* ── HERO ────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex; flex-direction: column; justify-content: center;
      padding: 100px 5vw 80px;
      position: relative; overflow: hidden;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 60px;
      max-width: 1200px; margin: 0 auto; width: 100%;
    }
    /* geometric background accent */
    .hero::before {
      content: '';
      position: absolute;
      inset-inline-end: -80px; top: -80px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(29,122,122,.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset-inline-start: -60px; bottom: -60px;
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(200,134,60,.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; letter-spacing: 3px;
      color: var(--teal-lt); text-transform: uppercase;
      margin-bottom: 20px;
    }
    .hero-eyebrow::before {
      content: ''; width: 32px; height: 2px; background: var(--teal-lt);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 900; line-height: 1.15;
      color: var(--white);
    }
    .hero-title .accent { color: var(--sand-lt); }
    .hero-subtitle {
      margin-top: 20px;
      font-size: clamp(15px, 1.8vw, 18px);
      color: rgba(255,255,255,0.65);
      max-width: 460px;
      line-height: 1.9;
    }
    .hero-actions {
      margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--teal);
      color: var(--white);
      padding: 13px 28px;
      border-radius: var(--r-sm);
      font-weight: 700; font-size: 15px;
      border: none; cursor: pointer;
      transition: background .2s, transform .15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--teal-lt); transform: translateY(-1px); }
    .btn-outline {
      border: 1.5px solid rgba(255,255,255,0.3);
      color: var(--white);
      padding: 12px 28px;
      border-radius: var(--r-sm);
      font-weight: 600; font-size: 15px;
      cursor: pointer;
      transition: border-color .2s, background .2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--teal-lt); background: rgba(29,122,122,.1); }
    .hero-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; margin-top: 48px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-md); overflow: hidden;
    }
    .stat-item {
      padding: 22px 16px; text-align: center;
      background: rgba(255,255,255,.03);
    }
    .stat-item:not(:last-child) { border-inline-end: 1px solid rgba(255,255,255,.1); }
    .stat-num {
      font-family: var(--font-display);
      font-size: 34px; font-weight: 900;
      color: var(--sand-lt);
      line-height: 1;
    }
    .stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; }

    /* Hero visual side */
    .hero-visual {
      display: flex; flex-direction: column; gap: 16px;
    }
    .hero-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-md);
      padding: 20px 24px;
      display: flex; align-items: center; gap: 16px;
    }
    .hero-card-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: var(--teal);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
    }
    .hero-card-text h4 {
      font-family: var(--font-display);
      font-size: 14px; font-weight: 700;
      color: var(--white);
    }
    .hero-card-text p { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
    .hero-card.sand .hero-card-icon { background: var(--sand); }
    .hero-card.navy .hero-card-icon { background: rgba(255,255,255,.12); }
    .hac-badge {
      margin-top: 4px;
      background: rgba(200,134,60,.15);
      border: 1px solid rgba(200,134,60,.3);
      border-radius: var(--r-sm);
      padding: 12px 18px;
      display: flex; align-items: center; gap: 12px;
    }
    .hac-badge-dot { width: 8px; height: 8px; background: var(--sand-lt); border-radius: 50%; flex-shrink: 0; }
    .hac-badge-text { font-size: 12px; color: rgba(255,255,255,.65); }
    .hac-badge-text strong { color: var(--sand-lt); display: block; font-size: 13px; }

    /* ── SECTION SHELL ───────────────────────────────── */
    .section { padding: 88px 5vw; }
    .section.alt { background: var(--white); }
    .section.dark { background: var(--navy); }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-tag {
      font-size: 11px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--teal);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 900; line-height: 1.2;
      color: var(--navy);
    }
    .section-title.light { color: var(--white); }
    .section-title .accent { color: var(--teal); }
    .section-intro {
      margin-top: 14px; font-size: 16px;
      color: var(--muted); max-width: 580px; line-height: 1.85;
    }
    .section-intro.light { color: rgba(255,255,255,.6); }
    .divider {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--sand));
      border-radius: 2px;
      margin: 16px 0 36px;
    }

    /* ── ABOUT ───────────────────────────────────────── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    .about-text p { color: var(--muted); font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
    .about-pillars {
      display: flex; flex-direction: column; gap: 12px; margin-top: 24px;
    }
    .pillar {
      display: flex; align-items: flex-start; gap: 14px;
      background: var(--cream);
      border-radius: var(--r-sm);
      padding: 14px 18px;
      border-inline-start: 3px solid var(--teal);
    }
    .pillar-icon { font-size: 20px; flex-shrink: 0; }
    .pillar h4 { font-size: 14px; font-weight: 700; color: var(--navy); }
    .pillar p { font-size: 13px; color: var(--muted); margin-top: 2px; }
    .about-visual {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .av-card {
      background: var(--navy);
      border-radius: var(--r-md);
      padding: 28px 20px;
      text-align: center;
    }
    .av-card.teal { background: var(--teal); }
    .av-card.sand { background: var(--sand); }
    .av-card.full { grid-column: 1 / -1; background: linear-gradient(135deg, var(--navy), var(--teal)); }
    .av-num {
      font-family: var(--font-display);
      font-size: 38px; font-weight: 900;
      color: var(--white); line-height: 1;
    }
    .av-lbl { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 5px; }

    /* ── STRUCTURE ───────────────────────────────────── */
    .pillars-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      margin-top: 48px;
    }
    .struct-card {
      background: var(--white);
      border-radius: var(--r-lg);
      padding: 32px 28px;
      border: 1px solid var(--border);
      position: relative; overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }
    .struct-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
    .struct-card::before {
      content: '';
      position: absolute; top: 0; inset-inline-start: 0; inset-inline-end: 0;
      height: 4px;
    }
    .struct-card.c-navy::before  { background: var(--navy); }
    .struct-card.c-teal::before  { background: var(--teal); }
    .struct-card.c-sand::before  { background: var(--sand); }
    .struct-icon {
      width: 52px; height: 52px;
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 18px;
    }
    .c-navy .struct-icon { background: rgba(26,43,74,.08); }
    .c-teal .struct-icon { background: rgba(29,122,122,.1); }
    .c-sand .struct-icon { background: rgba(200,134,60,.1); }
    .struct-card h3 {
      font-family: var(--font-display);
      font-size: 17px; font-weight: 700;
      color: var(--navy); margin-bottom: 10px;
    }
    .struct-card ul { list-style: none; }
    .struct-card ul li {
      font-size: 13px; color: var(--muted);
      padding: 5px 0;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 8px;
    }
    .struct-card ul li:last-child { border: none; }
    .struct-card ul li::before { content: '—'; color: var(--teal); font-weight: 700; font-size: 11px; flex-shrink: 0; }

    /* ── SECTORS ─────────────────────────────────────── */
    .sectors-wrap {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      margin-top: 48px;
    }
    .sector-card {
      border-radius: var(--r-md);
      padding: 28px 22px;
      background: var(--navy);
      color: var(--white);
      transition: transform .2s;
      cursor: default;
    }
    .sector-card:hover { transform: translateY(-3px); }
    .sector-card:nth-child(2)  { background: var(--teal); }
    .sector-card:nth-child(3)  { background: #15435A; }
    .sector-card:nth-child(4)  { background: var(--sand); }
    .sector-card:nth-child(5)  { background: #2E6B5E; }
    .sector-card:nth-child(6)  { background: #7B4A2D; }
    .sector-emoji { font-size: 32px; margin-bottom: 14px; }
    .sector-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
    .sector-card p  { font-size: 13px; opacity: .72; margin-top: 6px; line-height: 1.7; }

    /* ── MANDATE ─────────────────────────────────────── */
    .mandate-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-top: 48px;
    }
    .mandate-item {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-md);
      padding: 24px 28px;
      display: flex; gap: 16px;
    }
    .mandate-num {
      font-family: var(--font-display);
      font-size: 32px; font-weight: 900;
      color: var(--teal-lt);
      opacity: .4; line-height: 1; flex-shrink: 0;
      min-width: 36px;
    }
    .mandate-item h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
    .mandate-item p  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; }

    /* ── LOCALITIES ──────────────────────────────────── */
    .localities-row {
      display: flex; gap: 20px; flex-wrap: wrap;
      margin-top: 40px;
    }
    .loc-chip {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 10px 24px;
      font-size: 14px; font-weight: 600; color: var(--navy);
      display: flex; align-items: center; gap: 8px;
    }
    .loc-chip::before { content: '📍'; font-size: 14px; }
    .reg-info {
      margin-top: 40px;
      background: linear-gradient(135deg, rgba(29,122,122,.08), rgba(200,134,60,.06));
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 32px 36px;
      display: flex; align-items: center; gap: 32px;
    }
    .reg-info-icon { font-size: 40px; flex-shrink: 0; }
    .reg-info h4 {
      font-family: var(--font-display);
      font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
    }
    .reg-info p { font-size: 14px; color: var(--muted); line-height: 1.8; }
    .reg-info strong { color: var(--teal); }

    /* ── STRATEGIES ──────────────────────────────────── */
    .strategies-row {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 14px; margin-top: 48px;
    }
    .strat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 28px 20px;
      text-align: center;
      transition: box-shadow .2s;
    }
    .strat-card:hover { box-shadow: 0 8px 30px rgba(29,122,122,.12); }
    .strat-num {
      font-family: var(--font-display);
      font-size: 42px; font-weight: 900;
      color: var(--teal); opacity: .18; line-height: 1;
    }
    .strat-icon { font-size: 28px; margin: 8px 0 12px; }
    .strat-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); }
    .strat-card p { font-size: 12px; color: var(--muted); margin-top: 5px; }

    /* ── CONTACT ─────────────────────────────────────── */
    .contact-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
      align-items: start;
    }
    .contact-info-list {
      list-style: none; display: flex; flex-direction: column; gap: 16px;
      margin-top: 32px;
    }
    .contact-info-list li {
      display: flex; align-items: center; gap: 16px;
      background: var(--cream);
      border-radius: var(--r-sm); padding: 14px 18px;
    }
    .contact-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--teal);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .contact-info-list li span { font-size: 14px; color: var(--ink); font-weight: 500; }
    .contact-info-list li a { color: var(--teal); text-decoration: underline; }
    .contact-form {
      background: var(--cream);
      border-radius: var(--r-lg);
      padding: 36px 32px;
      border: 1px solid var(--border);
    }
    .contact-form h3 {
      font-family: var(--font-display);
      font-size: 18px; font-weight: 700; color: var(--navy);
      margin-bottom: 24px;
    }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .form-group input,
    .form-group textarea {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--r-sm);
      font-family: var(--font-body); font-size: 14px;
      background: var(--white); color: var(--ink);
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--teal); }
    .form-group textarea { min-height: 110px; resize: vertical; }
    .form-submit {
      width: 100%; padding: 13px;
      background: var(--teal); color: var(--white);
      border: none; border-radius: var(--r-sm);
      font-family: var(--font-body); font-size: 15px; font-weight: 700;
      cursor: pointer; transition: background .2s;
    }
    .form-submit:hover { background: var(--teal-lt); }

    /* ── FOOTER ──────────────────────────────────────── */
    .footer {
      background: #0E1A2E;
      padding: 48px 5vw 28px;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 900;
      color: var(--white); margin-bottom: 8px;
    }
    .footer-brand-name span { color: var(--teal-lt); }
    .footer-about { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.9; margin-top: 10px; max-width: 300px; }
    .footer-col h4 {
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--teal-lt); margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom {
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
    .footer-hac {
      font-size: 11px; color: rgba(255,255,255,.3);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 100px; padding: 4px 12px;
    }

    /* ── MOBILE MENU ─────────────────────────────────── */
    .mobile-nav {
      display: none; flex-direction: column; gap: 0;
      position: fixed; top: 68px; inset-inline: 0; z-index: 800;
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 16px 5vw 24px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      padding: 13px 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      font-size: 15px; color: rgba(255,255,255,.75);
    }
    .mobile-nav a:last-child { border: none; }

    /* ── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .about-grid  { grid-template-columns: 1fr; }
      .about-visual{ display: none; }
      .pillars-grid{ grid-template-columns: 1fr; }
      .sectors-wrap{ grid-template-columns: 1fr 1fr; }
      .mandate-grid{ grid-template-columns: 1fr; }
      .strategies-row{ grid-template-columns: 1fr 1fr; }
      .contact-wrap{ grid-template-columns: 1fr; }
      .footer-top  { grid-template-columns: 1fr; gap: 32px; }
      .hero-stats  { grid-template-columns: 1fr 1fr; }
      .hero-stats .stat-item:last-child { grid-column: 1/-1; border: none; }
    }
    @media (max-width: 580px) {
      .sectors-wrap  { grid-template-columns: 1fr; }
      .strategies-row{ grid-template-columns: 1fr; }
      .reg-info      { flex-direction: column; text-align: center; }
    }
.brand-logo{width:48px;height:48px;object-fit:contain;background:#fff;border-radius:8px;padding:3px}
