:root{
  --bg:#f6f8fb;
  --bg2:#ffffff;
  --text:#0f172a;
  --muted:#5b667a;
  --primary:#0d3b66;
  --primary2:#114e8a;
  --gold:#d4af37;
  --border:rgba(15,23,42,.10);
  --shadow:0 12px 30px rgba(15,23,42,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.75;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{
  width:min(1120px, 92%);
  margin:0 auto;
}

.muted{color:var(--muted)}
.lead{font-size:1.05rem}
.accent{color:var(--primary)}
.dot{width:6px;height:6px;border-radius:99px;background:rgba(255,255,255,.6);display:inline-block;margin:0 10px}
.w-100{width:100%}

.topbar{
  background:linear-gradient(90deg, var(--primary), var(--primary2));
  color:#fff;
  font-size:.95rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar__right, .topbar__left{display:flex; align-items:center; gap:10px; flex-wrap:wrap}

.chip{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  padding:6px 10px;
  border-radius:999px;
}
.chip--outline{
  background:transparent;
}
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(246,248,251,.85);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
}
.brand__logo{
  width:56px;
  height:56px;
  border-radius:14px;
  object-fit:contain;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 8px 20px rgba(15,23,42,.07);
  padding:6px;
}
.brand__name{
  font-weight:800;
  letter-spacing:.2px;
}
.brand__sub{
  font-size:.85rem;
  color:var(--muted);
  direction:ltr;
  text-align:right;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav a{
  padding:8px 10px;
  border-radius:999px;
  color:rgba(15,23,42,.86);
}
.nav a:hover{
  background:rgba(13,59,102,.07);
}
.burger{
  display:none;
  width:46px;
  height:42px;
  border:1px solid var(--border);
  background:var(--bg2);
  border-radius:14px;
  box-shadow:0 10px 22px rgba(15,23,42,.06);
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  width:20px;
  background:rgba(15,23,42,.7);
  margin:5px auto;
  border-radius:99px;
}
.mobile-nav{
  padding:0 0 14px;
  border-top:1px solid var(--border);
}
.mobile-nav a{
  display:block;
  padding:12px 0;
  color:rgba(15,23,42,.86);
}
.mobile-nav a + a{border-top:1px dashed rgba(15,23,42,.12)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:linear-gradient(90deg, var(--primary), var(--primary2));
  color:#fff;
  border-color:rgba(255,255,255,.0);
  box-shadow:0 14px 26px rgba(13,59,102,.22);
}
.btn--primary:hover{box-shadow:0 18px 34px rgba(13,59,102,.28)}
.btn--ghost{
  background:var(--bg2);
  border-color:var(--border);
  color:rgba(15,23,42,.9);
}
.btn--ghost:hover{box-shadow:0 14px 26px rgba(15,23,42,.08)}

.hero{
  padding:34px 0 12px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-200px -120px auto -120px;
  height:420px;
  background:radial-gradient(circle at 20% 20%, rgba(212,175,55,.18), transparent 55%),
             radial-gradient(circle at 70% 10%, rgba(13,59,102,.18), transparent 55%);
  filter:blur(0px);
  pointer-events:none;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:stretch;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(13,59,102,.14);
  background:rgba(255,255,255,.75);
  color:rgba(13,59,102,.95);
  font-weight:700;
  width:fit-content;
}
.hero h1{
  margin:14px 0 10px;
  font-size:2.25rem;
  line-height:1.25;
  letter-spacing:.2px;
}
.hero p{margin:0 0 18px; color:rgba(15,23,42,.82)}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}

.hero__stats{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.stat{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:var(--radius);
  padding:12px 12px;
  box-shadow:0 14px 28px rgba(15,23,42,.05);
}
.stat__num{font-weight:800; color:var(--primary)}
.stat__label{font-size:.9rem; color:var(--muted)}

.hero__media{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.hero-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow);
  background:#fff;
  min-height:330px;
}
.hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-card__overlay{
  position:absolute;
  inset:auto 14px 14px 14px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  padding:12px 14px;
  box-shadow:0 12px 22px rgba(15,23,42,.08);
}
.hero-card__title{font-weight:800}
.hero-card__sub{color:var(--muted); font-size:.92rem}
.hero-mini{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.hero-mini img{
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 12px 22px rgba(15,23,42,.06);
  height:140px;
  object-fit:cover;
}

.section{
  padding:56px 0;
}
.section--alt{
  background:linear-gradient(180deg, rgba(13,59,102,.04), rgba(212,175,55,.04));
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.section-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 24px;
}
.section-head h2{margin:0 0 6px}
.section-head p{margin:0}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:start;
}
h2{font-size:1.7rem; margin:0 0 12px}
h3{margin:0 0 8px}
p{margin:0 0 12px}

.features{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.feature{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.10);
}
.feature__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(13,59,102,.10);
  color:var(--primary);
  flex:0 0 auto;
}
.feature__icon svg{width:24px;height:24px}
.feature__title{font-weight:800}
.feature__desc{color:var(--muted); font-size:.95rem}

.about-media{
  position:relative;
}
.about-media img{
  border-radius:24px;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow);
  height:420px;
  object-fit:cover;
  background:#fff;
}
.about-card{
  position:absolute;
  inset:auto 14px 14px 14px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.12);
  border-radius:20px;
  padding:16px;
  box-shadow:0 16px 28px rgba(15,23,42,.10);
}
.about-card__title{font-weight:900}
.about-card__desc{color:var(--muted); margin:4px 0 10px}

.cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  padding:18px;
  box-shadow:0 14px 28px rgba(15,23,42,.05);
}
.card__icon{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background:rgba(212,175,55,.16);
  color:#7a5b00;
  font-weight:900;
  margin-bottom:10px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.gallery__item{
  margin:0;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 14px 28px rgba(15,23,42,.06);
  background:#fff;
}
.gallery__item img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .25s ease;
}
.gallery__item:hover img{transform:scale(1.03)}

.contact-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin:14px 0 14px;
}
.contact-card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.10);
  border-radius:20px;
  padding:14px 16px;
  box-shadow:0 14px 28px rgba(15,23,42,.05);
}
.contact-card__label{color:var(--muted); font-size:.92rem}
.contact-card__value{font-weight:900; color:var(--primary)}
.map{
  margin-top:14px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 14px 28px rgba(15,23,42,.06);
}
.map iframe{width:100%; height:320px; display:block}

.form-wrap{
  position:sticky;
  top:100px;
}
.form{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow);
}
.field{margin-bottom:12px}
label{display:block;font-weight:800;margin-bottom:6px}
input, textarea{
  width:100%;
  border:1px solid rgba(15,23,42,.16);
  border-radius:16px;
  padding:12px 12px;
  font-family:inherit;
  font-size:1rem;
  outline:none;
  background:#fff;
}
input:focus, textarea:focus{
  border-color:rgba(13,59,102,.45);
  box-shadow:0 0 0 4px rgba(13,59,102,.10);
}
.form-note{font-size:.92rem; margin:10px 0 0}
.alert{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(13,59,102,.06);
  color:rgba(15,23,42,.9);
}
.alert--ok{background:rgba(16,185,129,.10); border-color:rgba(16,185,129,.28)}
.alert--err{background:rgba(239,68,68,.10); border-color:rgba(239,68,68,.28)}

.trust{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.trust__item{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:20px;
  padding:12px 14px;
}
.trust__title{font-weight:900}
.trust__desc{color:var(--muted); font-size:.95rem}

.footer{
  padding:18px 0;
  background:#fff;
  border-top:1px solid rgba(15,23,42,.08);
}
.footer__line{
  text-align:center;
  color:rgba(15,23,42,.75);
  font-weight:700;
}

.to-top{
  position:fixed;
  left:16px;
  bottom:16px;
  width:46px;
  height:46px;
  border-radius:16px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.12);
  display:grid;
  place-items:center;
  box-shadow:0 16px 28px rgba(15,23,42,.10);
}

@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr; }
  .hero-card{min-height:260px}
  .grid-2{grid-template-columns:1fr}
  .form-wrap{position:relative; top:auto}
  .cards{grid-template-columns:repeat(2, 1fr)}
  .gallery{grid-template-columns:repeat(2, 1fr)}
  .nav{display:none}
  .burger{display:block}
}
@media (max-width: 520px){
  .hero h1{font-size:1.9rem}
  .hero__stats{grid-template-columns:1fr}
  .hero-mini img{height:120px}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .brand__sub{display:none}
}