:root{
  --bg: #f6f8fb;
  --text: #0b1220;
  --muted: rgba(11,18,32,0.72);
  --muted2: rgba(11,18,32,0.56);
  --card: rgba(255,255,255,0.92);
  --line: rgba(11,18,32,0.10);
  --shadow: 0 16px 42px rgba(15, 23, 42, 0.10);
  --shadow2: 0 10px 26px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius2: 24px;

  /* New colors */
  --primary: #0ea5e9;    /* sky */
  --primary2: #22c55e;   /* green */
  --warm: #f59e0b;       /* amber */
}

*{box-sizing:border-box}
html,body{height:100%}
html{overflow-x:hidden}
body{
  margin:0;
  font-family: "Cairo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(14,165,233,0.18), transparent 62%),
    radial-gradient(900px 520px at 90% 10%, rgba(34,197,94,0.14), transparent 60%),
    radial-gradient(900px 520px at 60% 110%, rgba(245,158,11,0.10), transparent 60%),
    var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

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

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,248,251,0.82);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding: 12px 0;
  flex-direction: row;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 220px;
}
.brand .logoWrap{
  width:52px; height:52px;
  border-radius: 16px;
  background: #ffffff;
  border:1px solid rgba(11,18,32,0.10);
  box-shadow: var(--shadow2);
  display:grid; place-items:center;
  overflow:hidden;
}
.brand img{
  width:40px; height:40px; object-fit:contain;
  image-rendering: -webkit-optimize-contrast;
}
.brand .name{
  display:flex; flex-direction:column; line-height:1.15;
}
.brand .name strong{font-weight:900; letter-spacing:0.2px}
.brand .name span{font-size:12px; color:var(--muted2); font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif}


.navGroup{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:flex-end;
}
.navlinks{
  display:flex; align-items:center; gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a{
  padding:10px 12px;
  border-radius:999px;
  color: var(--muted);
  border:1px solid transparent;
  transition: 180ms ease;
  font-size:14px;
}
.navlinks a:hover{
  color: var(--text);
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.14);
}
.navcta{
  display:flex; align-items:center; gap:10px;
  justify-content:flex-end;
  min-width: 260px;
}
.pill{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.70);
}
.pill small{color:var(--muted2); font-size:12px}
.pill .val{font-weight:900; font-size:14px; font-family:"Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid rgba(11,18,32,0.12);
  background: rgba(255,255,255,0.80);
  color: var(--text);
  cursor:pointer;
  transition: 180ms ease;
  font-weight:900;
  box-shadow: var(--shadow2);
}
.btn:hover{transform: translateY(-1px); filter:saturate(1.05)}
.btn.primary{
  background: linear-gradient(135deg, rgba(14,165,233,0.98), rgba(34,197,94,0.92));
  border-color: rgba(14,165,233,0.18);
  box-shadow: 0 18px 45px rgba(14,165,233,0.18);
  color: #061018;
}

.hero{
  padding: 44px 0 18px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap:22px;
  align-items:stretch;
}
.card{
  border:1px solid rgba(11,18,32,0.10);
  background: var(--card);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.heroText{
  padding: 26px;
  position:relative;
  overflow:hidden;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius:999px;
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.80);
  color: var(--muted);
  font-weight:800;
  font-size:13px;
}
.kicker i{
  width:10px; height:10px; border-radius:999px;
  background: var(--primary2);
  box-shadow: 0 0 0 6px rgba(34,197,94,0.14);
}
.hero h1{
  margin: 14px 0 6px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 950;
}
.hero p{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height:1.9;
}
.enSub{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: rgba(11,18,32,0.58);
  font-size: 13px;
  letter-spacing: 0.2px;
}
.heroActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.stat{
  padding: 14px 14px;
  border-radius: var(--radius);
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.78);
}
.stat .num{
  font-weight: 950;
  font-family:"Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
}
.stat .lbl{
  color: var(--muted2);
  font-size: 12px;
  margin-top: 4px;
  line-height:1.6;
}

.heroMedia{
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mediaCard{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.85);
  position:relative;
  box-shadow: var(--shadow2);
}
.mediaCard img{
  width:100%;
  height: 215px;
  object-fit: cover;
}
.mediaCard .badge{
  position:absolute;
  inset:auto 12px 12px 12px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}
.badge .tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius:999px;
  background: rgba(246,248,251,0.86);
  border:1px solid rgba(11,18,32,0.10);
  backdrop-filter: blur(8px);
  font-weight:900;
  font-size:12px;
}
.badge .tag span{
  font-family:"Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight:950;
  color: rgba(11,18,32,0.80);
}
.badge .tag i{
  width:10px; height:10px; border-radius:999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(14,165,233,0.14);
}

.section{
  padding: 26px 0;
}
.sectionHeader{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 14px;
}
.sectionHeader h2{
  margin:0;
  font-size: 22px;
  font-weight: 950;
}
.sectionHeader p{
  margin:0;
  color: var(--muted2);
  font-size: 13px;
  font-family:"Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.feature{
  padding: 16px;
  border-radius: var(--radius2);
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow2);
}
.feature h3{
  margin: 6px 0 6px;
  font-size: 16px;
  font-weight: 950;
}
.feature p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  line-height:1.9;
}
.iconDot{
  width: 42px; height: 42px;
  border-radius: 14px;
  background: rgba(14,165,233,0.10);
  border:1px solid rgba(14,165,233,0.18);
  display:grid;
  place-items:center;
}
.iconDot svg{width:22px; height:22px}

.products{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.product{
  overflow:hidden;
  border-radius: var(--radius2);
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow2);
}
.product img{height: 260px; width:100%; object-fit: cover}
.product .body{padding:14px 16px}
.product .title{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.product h3{margin:0; font-size:16px; font-weight:950}
.product .mini{
  font-family:"Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--muted2);
  font-size: 12px;
}
.product p{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height:1.9;
}

.gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.gallery .shot{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.86);
  position:relative;
  box-shadow: var(--shadow2);
}
.gallery .shot img{height: 330px; width:100%; object-fit:cover}
.gallery .shot .cap{
  position:absolute;
  inset:auto 12px 12px 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(246,248,251,0.86);
  border:1px solid rgba(11,18,32,0.10);
  backdrop-filter: blur(8px);
  font-weight:900;
  font-size: 13px;
}

.mapWrap{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow2);
}
.mapWrap iframe{
  width:100%;
  height: 380px;
  border:0;
  display:block;
}

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.contactCard{
  padding: 16px;
  border-radius: var(--radius2);
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow2);
}
.contactCard h3{margin:0 0 8px; font-size:16px; font-weight:950}
.contactList{display:grid; gap:10px}
.contactItem{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding: 12px;
  border-radius: 16px;
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(246,248,251,0.70);
}
.contactItem .k{color: var(--muted2); font-size:12px}
.contactItem .v{
  font-weight:950;
  font-family:"Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}
.form{display:grid; gap:10px}
.field{display:grid; gap:6px}
.field label{font-size:13px; color: var(--muted)}
.input, textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(11,18,32,0.12);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  outline:none;
  font-family: inherit;
  font-size:14px;
}
textarea{min-height: 120px; resize: vertical}
.hint{color: var(--muted2); font-size: 12px; line-height:1.7}
.footer{
  padding: 22px 0 30px;
  color: var(--muted2);
  margin-top: 20px;
}
.footer .row{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  flex-wrap:wrap;
}
.footer a{color: rgba(11,18,32,0.78)}
.footer a:hover{text-decoration:underline}

.mobileToggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(11,18,32,0.12);
  background: rgba(255,255,255,0.86);
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.mobileMenu{display:none; padding-bottom: 12px}
.mobileMenu a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.86);
  color: var(--muted);
  box-shadow: var(--shadow2);
}
.mobileMenu a:hover{color: var(--text); background: rgba(14,165,233,0.08)}
.hr{height:1px; background: rgba(11,18,32,0.10); margin: 14px 0}
.ltr{direction:ltr; text-align:left}

@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr;}
  .navcta{min-width:auto}
  .brand{min-width:auto}
}
@media (max-width: 860px){
  .navlinks{display:none}
  .mobileToggle{display:grid; place-items:center}
  .grid3{grid-template-columns: 1fr}
  .products{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .pill{display:none}
}
@media (max-width: 420px){
  .hero h1{font-size: 28px}
  .stats{grid-template-columns: 1fr}
}
.footer .row.center{
  justify-content: center;
  text-align: center;
  width: 100%;
}

.navlinks a{
  position: relative;
}
.navlinks a::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(14,165,233,0.0), rgba(14,165,233,0.55), rgba(34,197,94,0.45), rgba(14,165,233,0.0));
  opacity:0;
  transform: translateY(3px);
  transition: 180ms ease;
}
.navlinks a:hover::after{
  opacity:1;
  transform: translateY(0px);
}

.card{
  position: relative;
}
.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  padding:1px;
  background: linear-gradient(135deg, rgba(14,165,233,0.28), rgba(34,197,94,0.18), rgba(245,158,11,0.10));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity:0.55;
}

.formStatus{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow2);
  font-weight: 900;
}
.formStatus.success{
  border-color: rgba(34,197,94,0.26);
  background: rgba(34,197,94,0.10);
}
.formStatus.error{
  border-color: rgba(239,68,68,0.26);
  background: rgba(239,68,68,0.10);
}

/* Aesthetic v5 */
::selection{
  background: rgba(14,165,233,0.20);
}

.heroText{
  background:
    radial-gradient(700px 360px at 20% 0%, rgba(14,165,233,0.18), transparent 60%),
    radial-gradient(650px 340px at 80% 30%, rgba(34,197,94,0.14), transparent 60%),
    radial-gradient(700px 380px at 30% 120%, rgba(245,158,11,0.10), transparent 60%),
    var(--card);
}

.kicker{
  box-shadow: var(--shadow2);
}

.btn{
  position: relative;
  overflow: hidden;
}
.btn::after{
  content:"";
  position:absolute;
  inset:-30% -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.55), transparent 65%);
  transform: translateX(-60%) rotate(8deg);
  opacity: 0;
  transition: 260ms ease;
}
.btn:hover::after{
  opacity: 1;
  transform: translateX(30%) rotate(8deg);
}
.btn:active{
  transform: translateY(0px) scale(0.98);
}

.card, .feature, .product, .contactCard, .shot, .mapWrap, .mediaCard{
  transition: 220ms ease;
}
.feature:hover, .product:hover, .contactCard:hover, .shot:hover, .mapWrap:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.mediaCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(11,18,32,0.00), rgba(11,18,32,0.08));
  pointer-events:none;
}

.sectionHeader h2{
  position: relative;
  padding-right: 14px;
}
.sectionHeader h2::before{
  content:"";
  position:absolute;
  right:0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(14,165,233,1), rgba(34,197,94,1));
  box-shadow: 0 0 0 6px rgba(14,165,233,0.10);
}

.input:focus, textarea:focus{
  border-color: rgba(14,165,233,0.40);
  box-shadow: 0 0 0 6px rgba(14,165,233,0.10);
}

.hero{
  position: relative;
}
.hero::before{
  content:"";
  position:absolute;
  inset: -120px 0 auto 0;
  height: 220px;
  background: linear-gradient(90deg, rgba(14,165,233,0.10), rgba(34,197,94,0.08), rgba(245,158,11,0.06));
  filter: blur(18px);
  opacity: 0.8;
  pointer-events:none;
}

.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: 520ms ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0px);
}

.topBtn{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,0.12);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow2);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 60;
}
.topBtn:hover{
  transform: translateY(-1px);
}

@media (max-width: 860px){
  .nav{flex-direction: row;}
}

*{-webkit-tap-highlight-color: transparent;}
