:root {
  --navy: #103b6d;
  --navy-dark: #09294d;
  --blue: #1f6eb3;
  --blue-light: #eaf4fc;
  --gold: #f1b544;
  --green: #168a55;
  --whatsapp: #1f9d62;
  --ink: #18324a;
  --muted: #60758a;
  --line: #dbe5ee;
  --surface: #ffffff;
  --background: #f6f9fc;
  --shadow: 0 18px 50px rgba(15, 54, 91, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Tahoma, Arial, "Noto Sans Arabic", sans-serif;
  color: var(--ink);
  background: var(--background);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; right: 10px; z-index: 1000;
  background: #fff; color: var(--navy); padding: 8px 14px; border-radius: 8px;
  transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(219,229,238,.85);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 250px; }
.brand img { width: 66px; height: 66px; object-fit: contain; border-radius: 16px; background: #fff; }
.brand-text { display: grid; line-height: 1.45; }
.brand-text strong { color: var(--navy); font-size: 1.25rem; }
.brand-text small { color: var(--muted); font-size: .82rem; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { padding: 10px 14px; border-radius: 10px; color: #304e68; font-weight: 700; font-size: .95rem; }
.main-nav a:hover, .main-nav a:focus-visible { background: var(--blue-light); color: var(--navy); }
.main-nav .nav-cta { background: var(--navy); color: #fff; padding-inline: 18px; }
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { background: var(--navy-dark); color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 27px; height: 2px; background: var(--navy); margin: 5px; border-radius: 5px; }

.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(125deg, #0b2f5a 0%, #174f88 64%, #227cba 100%);
  color: #fff; min-height: 620px; display: flex; align-items: center;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background-image: radial-gradient(circle at 18% 15%, rgba(255,255,255,.8) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 70%, rgba(255,255,255,.7) 0 2px, transparent 3px);
  background-size: 74px 74px, 96px 96px;
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; left: -200px; bottom: -330px;
  border: 80px solid rgba(255,255,255,.06); border-radius: 50%;
}
.hero-grid { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 70px; padding-block: 82px; }
.hero-copy { flex: 1 1 58%; max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); padding: 7px 13px; border-radius: 999px; margin: 0 0 18px; font-size: .92rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(241,181,68,.18); }
.hero h1 { font-size: clamp(3rem, 7vw, 5.7rem); line-height: 1.1; margin: 0; letter-spacing: -.04em; }
.hero-levels { color: #d9ebfb; font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 700; margin: 15px 0; }
.hero-levels span { color: var(--gold); margin-inline: 6px; }
.hero-description { font-size: 1.14rem; color: #e9f3fb; max-width: 630px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 12px; padding: 11px 22px; font-weight: 800; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, a:focus-visible { outline: 3px solid rgba(241,181,68,.65); outline-offset: 3px; }
.button-primary { background: var(--gold); color: #17324b; box-shadow: 0 10px 25px rgba(241,181,68,.22); }
.button-primary:hover { background: #ffc758; }
.button-outline { border: 1px solid rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.06); }
.button-outline:hover { background: rgba(255,255,255,.14); }
.hero-card {
  flex: 0 1 340px; text-align: center; position: relative;
  background: rgba(255,255,255,.96); color: var(--ink); border-radius: 28px;
  padding: 32px 28px; box-shadow: 0 30px 80px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.45);
}
.hero-logo-wrap { width: 190px; height: 190px; margin: 0 auto 18px; display: grid; place-items: center; border: 10px solid #edf5fb; border-radius: 50%; overflow: hidden; background: #fff; }
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.verified-icon { position: absolute; width: 42px; height: 42px; display: grid; place-items: center; top: 34px; left: 38px; margin: 0; background: var(--green); border: 4px solid #fff; border-radius: 50%; color: #fff; font-size: 1.25rem; font-weight: 900; }
.hero-card h2 { color: var(--navy); margin: 0; font-size: 1.55rem; }
.hero-card p:last-child { color: var(--muted); margin: 3px 0 0; }

.section { padding: 96px 0; }
.section-heading { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.section-kicker { color: var(--blue); font-weight: 800; margin: 0 0 4px; }
.section h2 { color: var(--navy-dark); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.3; margin: 0 0 12px; }
.section-heading > p:last-child, .contact-intro > p { color: var(--muted); }
.levels-grid { display: flex; gap: 22px; }
.level-card { flex: 1 1 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 8px 30px rgba(15,54,91,.06); transition: transform .2s ease, box-shadow .2s ease; }
.level-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.level-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--blue-light); font-size: 1.55rem; margin-bottom: 18px; }
.level-card h3 { color: var(--navy); margin: 0 0 8px; font-size: 1.35rem; }
.level-card p { color: var(--muted); margin: 0; }

.contact-section { background: #fff; }
.contact-layout { display: flex; align-items: flex-start; gap: 70px; }
.contact-intro { flex: 1 1 40%; padding-top: 22px; }
.contact-list { display: grid; gap: 13px; margin-top: 30px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; transition: border-color .2s ease, background .2s ease; }
.contact-item:hover { background: var(--blue-light); border-color: #b8d6ed; }
.contact-icon { flex: 0 0 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--navy); color: #fff; font-weight: 900; }
.facebook-icon { font-family: Arial, sans-serif; font-size: 1.4rem; }
.contact-item span:last-child { display: grid; line-height: 1.45; min-width: 0; }
.contact-item small { color: var(--muted); }
.contact-item b { color: var(--navy-dark); overflow-wrap: anywhere; }
.form-card { flex: 1 1 55%; background: var(--background); border: 1px solid var(--line); padding: 34px; border-radius: 28px; box-shadow: var(--shadow); }
.form-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; }
.form-heading h2 { font-size: 1.75rem; margin: 0; }
.form-heading p { color: var(--muted); margin: 2px 0 0; }
.form-badge { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: var(--navy); color: #fff; font-size: 1.4rem; }
.contact-form { display: grid; gap: 17px; }
.field-row { display: flex; gap: 14px; }
.field { display: grid; gap: 6px; flex: 1; }
.field label { color: #29465f; font-weight: 800; font-size: .92rem; }
.field input, .field textarea, .field select, .whatsapp-form input, .whatsapp-form textarea {
  width: 100%; border: 1px solid #cbd8e3; border-radius: 12px; padding: 12px 14px; color: var(--ink); background: #fff; outline: none;
}
.field input, .field select { min-height: 50px; }
.field textarea, .whatsapp-form textarea { resize: vertical; min-height: 125px; }
.field input:focus, .field textarea:focus, .field select:focus, .whatsapp-form input:focus, .whatsapp-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(31,110,179,.1); }
.button-full { width: 100%; margin-top: 2px; }
.form-note { text-align: center; color: var(--muted); font-size: .83rem; margin: -5px 0 0; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }

.whatsapp-section { padding-top: 76px; }
.whatsapp-box { display: flex; align-items: center; gap: 50px; border-radius: 30px; padding: 42px; background: linear-gradient(125deg, #0d5e3b, #168a55); color: #fff; box-shadow: 0 24px 60px rgba(13,94,59,.18); }
.whatsapp-copy { display: flex; gap: 20px; align-items: flex-start; flex: 1 1 52%; }
.whatsapp-copy .section-kicker { color: #baf3d2; }
.whatsapp-copy h2 { color: #fff; margin-bottom: 5px; }
.whatsapp-copy p:last-child { color: #def6e8; margin: 0; }
.whatsapp-logo { flex: 0 0 66px; height: 66px; display: grid; place-items: center; border-radius: 20px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); font-size: 2.1rem; }
.whatsapp-form { flex: 1 1 43%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 20px; border-radius: 20px; display: grid; gap: 10px; }
.whatsapp-form input, .whatsapp-form textarea { min-height: auto; }
.whatsapp-form textarea { min-height: 90px; }
.whatsapp-button { background: #fff; color: #0d5e3b; }
.whatsapp-button:hover { background: #e8fff1; }

.site-footer { background: #09294d; color: #dbe9f6; padding: 28px 0; }
.footer-inner { min-height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 50px; height: 50px; object-fit: contain; border-radius: 12px; background: #fff; }
.footer-brand div { display: grid; line-height: 1.35; }
.footer-brand small { color: #aac4dc; }
.footer-inner > p { color: #aac4dc; text-align: center; }
.footer-inner > a { font-weight: 700; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: none; align-items: stretch; padding: 12px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 16px; }
  .main-nav.is-open { display: grid; }
  .main-nav a { text-align: center; }
  .hero-grid, .contact-layout, .whatsapp-box { flex-direction: column; }
  .hero-grid { gap: 42px; text-align: center; }
  .hero-copy { max-width: 760px; }
  .hero-actions { justify-content: center; }
  .hero-card { width: min(100%, 390px); flex-basis: auto; }
  .contact-layout { gap: 38px; }
  .contact-intro, .form-card { width: 100%; }
  .whatsapp-box { align-items: stretch; }
  .whatsapp-form { width: 100%; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 76px; }
  .brand { min-width: 0; }
  .brand img { width: 54px; height: 54px; }
  .brand-text strong { font-size: 1.05rem; }
  .brand-text small { font-size: .72rem; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 62px; }
  .hero h1 { font-size: 3.2rem; }
  .hero-description { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-card { padding: 27px 20px; }
  .hero-logo-wrap { width: 155px; height: 155px; }
  .verified-icon { left: 28px; }
  .section { padding: 70px 0; }
  .levels-grid { flex-direction: column; }
  .field-row { flex-direction: column; }
  .form-card { padding: 24px 18px; border-radius: 22px; }
  .form-heading { align-items: flex-start; }
  .whatsapp-section { padding-top: 55px; }
  .whatsapp-box { padding: 28px 18px; border-radius: 22px; gap: 28px; }
  .whatsapp-copy { flex-direction: column; gap: 12px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-inner > p { margin: 0; }
}

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

@media print {
  .site-header, .hero-actions, .contact-form, .whatsapp-section, .site-footer { display: none !important; }
  .hero { color: #000; background: #fff; min-height: auto; }
  .hero-card, .level-card { box-shadow: none; }
}
