:root{
  --navy:#0F3D5E;
  --teal:#1ECAD3;
  --bg:#ffffff;
  --soft:#F2F4F6;
  --text:#0b1b2a;
  --muted:#5b6b79;
  --shadow:0 12px 30px rgba(15,61,94,.12);
  --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;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.container{max-width:1140px;margin:0 auto;padding:0 16px}

:target{scroll-margin-top:90px}

/* Topbar */
.topbar{
  background:linear-gradient(90deg, rgba(30,202,211,.12), rgba(15,61,94,.08));
  border-bottom:1px solid rgba(15,61,94,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  font-size:14px;
  color:var(--muted);
}
.topbar__link{color:var(--navy);font-weight:700}
.dot{margin:0 10px;color:rgba(0,0,0,.25)}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(15,61,94,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{display:flex;align-items:center;gap:10px}
.brand__logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:auto;
  height:auto;
  background:none;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
}
.brand__logo--sm{width:38px;height:38px;border-radius:14px}
.brand__mark{display:none}
.brand__name{font-weight:900;line-height:1.1;color:var(--navy)}
.brand__sub{font-weight:700;line-height:1;color:rgba(15,61,94,.7)}

.nav{display:flex;gap:18px;align-items:center}
.nav a{color:var(--muted);font-weight:700}
.nav a:hover{color:var(--navy)}
.header__actions{display:flex;gap:10px;align-items:center}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  background:var(--navy);
  color:#fff;
  font-weight:900;
  border:1px solid rgba(15,61,94,.2);
  box-shadow:0 10px 24px rgba(15,61,94,.15);
  cursor:pointer;
  transition:transform .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn--ghost{
  background:#fff;
  color:var(--navy);
  box-shadow:none;
}
.btn--full{width:100%}
.btn--lg{padding:12px 18px;border-radius:16px;font-size:16px}

/* Burger */
.burger{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(15,61,94,.15);
  background:#fff;
  display:none;
  cursor:pointer;
  padding:10px;
  gap:4px;
  flex-direction:column;
  justify-content:center;
}
.burger span{
  display:block;
  height:2px;
  background:var(--navy);
  border-radius:999px;
}

/* Mobile Nav */
.mobileNav{
  display:none;
  flex-direction:column;
  gap:6px;
  padding:12px 16px 16px;
  border-top:1px solid rgba(15,61,94,.08);
  background:#fff;
  transform:translateY(-6px);
  opacity:0;
  transition:transform .18s ease, opacity .18s ease;
}
.mobileNav a{
  padding:10px 12px;
  border-radius:12px;
  background:rgba(242,244,246,.7);
  font-weight:800;
  color:var(--navy);
}
.mobileNav.is-open{
  display:flex;
  transform:translateY(0);
  opacity:1;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Hero */
.hero{
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(30,202,211,.20), transparent 60%),
    radial-gradient(900px 420px at 80% 0%, rgba(15,61,94,.14), transparent 55%),
    linear-gradient(180deg, rgba(242,244,246,.75), #fff 55%);
  padding:44px 0 18px;
}
.hero__inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(30,202,211,.14);
  color:var(--navy);
  font-weight:900;
  border:1px solid rgba(30,202,211,.25);
}
h1{
  margin:12px 0 8px;
  font-size:42px;
  line-height:1.1;
  color:var(--navy);
}
.h1__sub{
  display:block;
  font-size:18px;
  color:rgba(15,61,94,.7);
  margin-top:10px;
  font-weight:800;
}
.lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
  margin:0 0 14px;
}
.hero__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:10px 0 14px;
}
.hero__highlights{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}
.pill{
  padding:8px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  color:var(--navy);
  font-weight:900;
}

.hero__mini{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:16px;
}
.miniCard{
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  border-radius:var(--radius);
  padding:12px;
  box-shadow:0 8px 18px rgba(0,0,0,.05);
}
.miniCard__title{font-weight:900;color:var(--navy)}
.miniCard__text{color:var(--muted);font-weight:700;margin-top:4px}

/* Hero Card */
.heroCard{
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  border-radius:22px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.heroCard__top{
  display:flex;
  gap:12px;
  align-items:center;
  padding:16px;
}
.heroCard__icon{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(30,202,211,.18);
  font-size:20px;
}
.heroCard__title{font-weight:1000;color:var(--navy);line-height:1.2}
.heroCard__sub{color:var(--muted);font-weight:800}
.heroCard__img{padding:0}
.heroCard__img::before{
  content:"";
  display:block;
  width:100%;
  aspect-ratio:16/11;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35)),
    url("assets/hero.jpg");
  background-size:cover;
  background-position:center;
}
.heroCard__img .placeholder{display:none}
.heroCard__bottom{
  padding:14px 16px 16px;
  display:grid;
  gap:10px;
}

.placeholder{
  border-radius:18px;
  background:linear-gradient(135deg, rgba(15,61,94,.10), rgba(30,202,211,.10));
  border:1px dashed rgba(15,61,94,.25);
  color:rgba(15,61,94,.7);
  padding:34px 16px;
  text-align:center;
  font-weight:900;
  min-height:190px;
  display:grid;
  place-items:center;
}

.muted{color:var(--muted)}
.small{font-size:12.5px}

/* Sections */
.section{padding:56px 0}
.section--alt{background:var(--soft)}
.sectionHead{margin-bottom:16px}
.sectionHead h2{
  margin:0 0 6px;
  font-size:28px;
  color:var(--navy);
}
.sectionHead p{
  margin:0;
  color:var(--muted);
  font-weight:700;
}

/* Services grid */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
  margin-bottom:18px;
}
.serviceCard{
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  border-radius:20px;
  padding:14px;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.serviceCard__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.serviceCard__title{font-weight:1000;color:var(--navy);line-height:1.2}
.serviceCard__sub{color:rgba(15,61,94,.65);font-weight:900;margin-top:2px}
.serviceCard__icon{
  width:42px;
  height:42px;
  border-radius:16px;
  background:rgba(30,202,211,.18);
  display:grid;
  place-items:center;
  font-size:18px;
}
.serviceCard__desc{
  color:var(--muted);
  font-weight:700;
  line-height:1.7;
  margin:0;
}
.serviceCard__actions{display:flex;gap:8px;margin-top:auto;flex-wrap:wrap}

.center{display:flex;justify-content:center}

/* Why */
.whyGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:18px;
}
.card{
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  border-radius:20px;
  padding:16px;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.card__icon{
  width:46px;
  height:46px;
  border-radius:16px;
  background:rgba(30,202,211,.18);
  display:grid;
  place-items:center;
  font-size:20px;
  margin-bottom:10px;
}
.card h3{margin:0 0 6px;color:var(--navy);font-weight:1000}
.card p{margin:0;color:var(--muted);font-weight:700;line-height:1.7}

/* CTA Strip */
.ctaStrip{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:linear-gradient(135deg, rgba(15,61,94,.12), rgba(30,202,211,.18));
  border:1px solid rgba(15,61,94,.12);
  border-radius:22px;
  padding:16px;
}
.ctaStrip__text{display:flex;flex-direction:column;gap:2px}
.ctaStrip__actions{display:flex;gap:10px;flex-wrap:wrap}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
  margin-top:24px;
}

.gallery__item{
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  border-radius:22px;
  padding:10px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.gallery__item:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 32px rgba(0,0,0,.12);
}

.gallery__item img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  border:4px solid #fff;
  border-radius:16px;
  background:#f3f3f3;
}

/* fallback لو نسيت gallery__item */
.gallery > img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  border:4px solid #fff;
  border-radius:16px;
  background:#f3f3f3;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.gallery > img:hover{
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 16px 32px rgba(0,0,0,.12);
}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
}
.review{
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  border-radius:20px;
  padding:16px;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.review__stars{color:var(--teal);font-weight:1000}
.review p{
  margin:10px 0;
  color:var(--muted);
  font-weight:800;
  line-height:1.8;
}
.review__name{font-weight:1000;color:var(--navy)}

/* FAQ */
.faq{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.faq__item{
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  border-radius:18px;
  padding:12px 14px;
}
.faq__item summary{cursor:pointer;font-weight:1000;color:var(--navy)}
.faq__content{
  margin-top:8px;
  color:var(--muted);
  font-weight:800;
  line-height:1.7;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}
.contact__cards{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.infoCard{
  display:flex;
  gap:10px;
  align-items:center;
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  border-radius:18px;
  padding:12px;
}
.infoCard__icon{
  width:44px;
  height:44px;
  border-radius:16px;
  background:rgba(30,202,211,.18);
  display:grid;
  place-items:center;
  font-size:18px;
}
.infoCard__title{font-weight:1000;color:var(--navy)}
.infoCard__text{color:var(--muted);font-weight:800}

.form{
  background:#fff;
  border:1px solid rgba(15,61,94,.10);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow);
}
.form__row{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:10px;
}
label{font-weight:1000;color:var(--navy)}
input,select,textarea{
  border:1px solid rgba(15,61,94,.14);
  border-radius:14px;
  padding:10px 12px;
  outline:none;
  font-family:inherit;
}
input:focus,select:focus,textarea:focus{
  border-color:rgba(30,202,211,.8);
  box-shadow:0 0 0 4px rgba(30,202,211,.18);
}
.form__hint{margin-top:10px}

/* Footer */
.footer{
  background:#0b2d44;
  color:#fff;
  padding:22px 0;
}
.footer__inner{
  display:grid;
  grid-template-columns:1.1fr .6fr .6fr;
  gap:14px;
  align-items:center;
}
.footer__brand{display:flex;gap:10px;align-items:center}
.footer__name{font-weight:1000}
.footer__links{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.footer__links a{opacity:.9}
.footer__copy{justify-self:end;opacity:.85}

/* Floating CTA */
.fab{
  position:fixed;
  left:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:60;
}
.fab__btn{
  width:54px;
  height:54px;
  border-radius:18px;
  background:var(--navy);
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow:var(--shadow);
  font-size:20px;
  border:1px solid rgba(255,255,255,.2);
}
.fab__btn--wa{background:var(--teal);color:#083044}
.fab__btn--fb{background:#1877f2;color:#fff}
.fab__btn--ig{background:#e1306c;color:#fff}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .burger{display:flex}
  .hero__inner{grid-template-columns:1fr}
  h1{font-size:36px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .whyGrid{grid-template-columns:repeat(2,1fr)}
  .gallery{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .reviews{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .footer__inner{
    grid-template-columns:1fr;
    gap:10px;
    text-align:center;
  }
  .footer__copy{justify-self:center}
}

@media (max-width: 520px){
  .hero{padding:28px 0 10px}
  .section{padding:44px 0}
  h1{font-size:30px}
  .h1__sub{font-size:16px}
  .hero__cta{width:100%}
  .hero__cta .btn{width:100%}
  .grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .fab{left:12px;bottom:12px}
  .fab__btn{width:50px;height:50px}
}

.about-image{
  margin:20px 0;
}

.about-image img{
  width:100%;
  max-height:420px;
  object-fit:cover;
  display:block;
  border-radius:20px;
  border:4px solid #fff;
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}
.brand__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}
.fab__btn{
  width:60px;
  height:60px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  box-shadow:0 10px 24px rgba(0,0,0,.2);/* زر الاتصال فقط */
.fab__btn--call{
  background:#0F3D5E;
  color:#fff;
}

/* حجم الأيقونة */
.fab__btn{
  font-size:28px;
}
