:root{
  --bg:#0b1117;
  --panel:#0f1a24;
  --panel2:#0c1520;
  --text:#eaf2ff;
  --muted:#a9b7c8;
  --line:rgba(255,255,255,.10);
  --brand:#0f4f7a;
  --brand2:#d56b3b;
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:22px;
}

*{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: radial-gradient(1000px 500px at 80% -80%, rgba(13,79,122,.55), transparent 70%),
              radial-gradient(800px 450px at -10% 0%, rgba(213,107,59,.35), transparent 70%),
              var(--bg);
  color:var(--text);
  line-height:1.7;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1140px, 92%); margin-inline:auto}

.skipLink{
  position:absolute; inset-inline-start:12px; top:10px;
  padding:10px 14px; background:#fff; color:#000;
  border-radius:12px; transform:translateY(-150%);
  z-index:9999;
}
.skipLink:focus{transform:translateY(0)}

.topbar{
  background:rgba(0,0,0,.55);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar__item{display:flex; align-items:center; gap:8px; color:rgba(255,255,255,.92)}
.topbar__link{opacity:.95}
.topbar__link:hover{opacity:1; text-decoration:underline}
.icon svg{fill:rgba(255,255,255,.85)}
.sep{opacity:.55; padding:0 4px}
.hide-sm{display:flex}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background:rgba(11,17,23,.55);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:12px 0;
}
/* Logo readability: keep logo text clear on dark header */
.brand{
  display:flex;
  align-items:center;
  padding:8px 12px;
  border-radius:18px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.brand img{
  height:66px;
  width:auto;
  display:block;
  filter:none;
}
.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{color:rgba(255,255,255,.92); font-weight:600; font-size:14px; padding:10px 10px; border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.06)}
.nav__cta{
  background:linear-gradient(135deg, var(--brand), #0a3556);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.nav__cta:hover{background:linear-gradient(135deg, #0a3556, var(--brand))}

.navToggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  cursor:pointer;
}
.navToggle span{
  display:block; height:2px; width:18px; background:#fff;
  margin:4px auto; border-radius:2px; opacity:.9;
}

.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.03);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 550px at 20% 10%, rgba(13,79,122,.55), transparent 60%),
    linear-gradient(180deg, rgba(11,17,23,.25), rgba(11,17,23,.92));
}
.hero__content{
  position:relative;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:stretch;
  padding:42px 0 34px;
}
.hero__text{padding-top:8px}
.pill{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.92);
  font-weight:700;
  font-size:13px;
}
.hero h1{
  margin:14px 0 8px;
  font-size:44px;
  line-height:1.15;
  letter-spacing:-.3px;
}
.hero__subtitle{
  margin:0 0 12px;
  color:rgba(255,255,255,.82);
  font-weight:600;
}
.hero p{color:rgba(255,255,255,.92); max-width:58ch}
.hero__actions{
  display:flex; flex-wrap:wrap;
  gap:10px; margin:18px 0 18px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  font-weight:800;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btnPrimary{
  background:linear-gradient(135deg, var(--brand2), #b8552b);
  border-color: rgba(255,255,255,.18);
}
.btnPrimary:hover{opacity:.96}
.btnGhost{
  background:rgba(255,255,255,.06);
}
.w100{width:100%}

.hero__badges{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:10px;
}
.badge{
  flex:1 1 160px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:12px 12px;
}
.badge__num{display:block; font-size:18px; font-weight:900}
.badge__label{display:block; color:rgba(255,255,255,.82); font-weight:600; font-size:13px}

.hero__card{
  background:rgba(15,26,36,.72);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero__card h3{margin:0 0 10px; font-size:18px}
.klist{list-style:none; padding:0; margin:0 0 16px}
.klist li{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.klist li:last-child{border-bottom:none}
.klist span{color:rgba(255,255,255,.75); font-weight:600}
.klist strong{font-weight:800; text-align:left; direction:ltr}

.section{padding:72px 0}
.sectionAlt{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.sectionTitle{
  font-size:30px;
  margin:0 0 12px;
  letter-spacing:-.2px;
}
.lead{color:rgba(255,255,255,.90); font-weight:600; max-width:78ch}
.muted{color:var(--muted); margin:0}
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  margin-bottom:18px;
}
.mt32{margin-top:32px}
.subTitle{margin:0; font-size:18px}

.grid2{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:start;
}

.featureGrid{
  display:grid;
  gap:12px;
  margin:18px 0 18px;
}
.feature{
  display:flex; gap:12px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.feature__icon{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:12px;
  background:rgba(213,107,59,.18);
  border:1px solid rgba(213,107,59,.35);
  font-weight:900;
}
.feature h4{margin:0 0 4px; font-size:16px}
.feature p{margin:0; color:rgba(255,255,255,.82)}

.miniCards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.miniCard{
  padding:14px;
  border-radius:18px;
  background:rgba(15,26,36,.55);
  border:1px solid rgba(255,255,255,.10);
}
.miniCard__k{font-weight:900; color:rgba(255,255,255,.92); margin-bottom:6px}
.miniCard__v{color:rgba(255,255,255,.84); font-weight:600; font-size:14px}

.aboutMedia{
  position:relative;
}
.aboutMedia__img{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.aboutMedia__note{
  position:absolute;
  inset-inline:12px;
  bottom:12px;
  padding:12px;
  border-radius:18px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
}
.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:8px}
.chip{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-size:13px;
  font-weight:800;
}

.productWrap{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap:18px;
  align-items:stretch;
}
.productBanner img{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.cards2{grid-template-columns: 1fr 1fr}
.card{
  padding:16px;
  border-radius:18px;
  background:rgba(15,26,36,.55);
  border:1px solid rgba(255,255,255,.10);
  min-height:120px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:rgba(255,255,255,.82); font-weight:600; font-size:14px}
.cardHighlight{
  background:linear-gradient(135deg, rgba(13,79,122,.35), rgba(213,107,59,.22));
  border-color: rgba(255,255,255,.16);
}
.link{display:inline-block; margin-top:10px; font-weight:900; color:#fff; text-decoration:underline}

.bullets{margin:0; padding:0 18px 0 0; color:rgba(255,255,255,.88); font-weight:700}
.bullets li{margin:8px 0}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.gallerySmall{grid-template-columns: repeat(2, 1fr); max-width:720px}
.gItem{
  padding:0;
  border:none;
  cursor:pointer;
  border-radius:18px;
  overflow:hidden;
  background:transparent;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  transition: transform .18s ease;
}
.gItem:hover{transform:translateY(-2px)}
.gItem img{width:100%; height:220px; object-fit:cover}
.gallerySmall .gItem img{height:240px}

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.contactCard{
  background:rgba(15,26,36,.55);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.contactCard h3{margin:0 0 12px}
.form{display:grid; gap:12px}
.formRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
label span{display:block; font-weight:800; margin-bottom:6px; color:rgba(255,255,255,.92)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  color:var(--text);
  font-family:inherit;
  font-weight:700;
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,.55)}
input:focus, select:focus, textarea:focus{
  border-color: rgba(213,107,59,.65);
  box-shadow: 0 0 0 4px rgba(213,107,59,.18);
}

.consent{
  display:flex; gap:10px; align-items:flex-start;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:12px;
  border-radius:18px;
}
.consent input{width:18px; height:18px; margin-top:2px}

.hint{margin:0; color:rgba(255,255,255,.78); font-weight:700; font-size:13px}
.hint a{text-decoration:underline}

.contactList{display:grid; gap:10px; margin-bottom:14px}
.contactItem{
  display:flex; justify-content:space-between; gap:12px;
  padding:12px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.contactItem__k{font-weight:900; color:rgba(255,255,255,.9)}
.contactItem__v{font-weight:900; direction:ltr; text-align:left}

.social{
  display:flex; flex-wrap:wrap; gap:10px;
  margin:14px 0 14px;
}
.socialBtn{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
}
.socialBtn svg{fill:#fff; opacity:.9}
.socialBtn:hover{background:rgba(255,255,255,.09)}

.mapWrap{
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
}
.mapWrap iframe{width:100%; height:300px; display:block}

.footer{
  padding:36px 0;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.28);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap:16px;
  align-items:start;
}
.footer__brand img{height:44px; width:auto; margin-bottom:10px}
.footer__brand p{margin:0; color:rgba(255,255,255,.78); font-weight:700}
.footer__links{display:grid; gap:8px}
.footer__links a{font-weight:900; opacity:.9}
.footer__links a:hover{text-decoration:underline}
.footer__copy{display:flex; align-items:end; justify-content:flex-end; font-weight:800; color:rgba(255,255,255,.75)}

.lightbox{
  position:fixed; inset:0;
  display:grid; place-items:center;
  z-index:120;
}
.lightbox[hidden]{display:none !important;}
.lightbox__backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.72);
  border:none;
}
.lightbox__content{
  position:relative;
  width:min(980px, 92vw);
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  background:rgba(0,0,0,.65);
}
.lightbox__img{
  width:100%;
  height:min(78vh, 680px);
  object-fit:contain;
  background:#0a0f14;
}
.lightbox__close{
  position:absolute;
  top:10px;
  inset-inline-end:10px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

@media (max-width: 980px){
  .hero__content{grid-template-columns: 1fr; padding-top:28px}
  .hero{min-height:auto}
  .hero h1{font-size:36px}
  .grid2{grid-template-columns: 1fr}
  .productWrap{grid-template-columns: 1fr}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .contactGrid{grid-template-columns: 1fr}
  .footer__inner{grid-template-columns: 1fr}
  .footer__copy{justify-content:flex-start}
  .hide-sm{display:none}
}

@media (max-width: 560px){
  .brand img{height:38px}
  .hero h1{font-size:30px}
  .btn{width:100%}
  .hero__actions{gap:10px}
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .formRow{grid-template-columns: 1fr}
  .nav{display:none}
  .navToggle{display:block}
  .nav.isOpen{
    display:grid;
    position:fixed;
    top:70px;
    inset-inline:12px;
    background:rgba(11,17,23,.94);
    border:1px solid rgba(255,255,255,.14);
    border-radius:22px;
    padding:12px;
    gap:8px;
    box-shadow: var(--shadow);
  }
  .nav a{padding:12px; font-size:15px}
}

/* Form feedback */
.alert{
  margin:12px 0 14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-weight:800;
}
.alert a{ text-decoration:underline; }
.alertSuccess{ border-color: rgba(66, 245, 141, .35); background: rgba(66, 245, 141, .08); }
.alertError{ border-color: rgba(255, 90, 90, .35); background: rgba(255, 90, 90, .08); }


@media (max-width:720px){
  .brand img{height:46px}
  .brand{padding:4px 8px}
}

.footer__single{padding:18px 0; text-align:center; color:rgba(255,255,255,.75); font-weight:600}

.topbar{display:none}
