
:root{
  --bg:#08111f;
  --bg-soft:#0d1a2d;
  --card:#101f34;
  --text:#f5f7fb;
  --muted:#aeb9c9;
  --accent:#1597ff;
  --accent-2:#55b8ff;
  --border:rgba(255,255,255,.10);
  --shadow:0 20px 60px rgba(0,0,0,.30);
}

*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}

body{
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at 15% 10%,rgba(21,151,255,.13),transparent 32%),
    radial-gradient(circle at 85% 85%,rgba(21,151,255,.09),transparent 30%),
    var(--bg);
  color:var(--text);
  line-height:1.8;
}

a{color:inherit;text-decoration:none}

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

.hero{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:70px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.eyebrow{
  color:var(--accent-2);
  font-weight:700;
  letter-spacing:.08em;
  font-size:.9rem;
  margin-bottom:10px;
}

h1{
  font-size:clamp(2.5rem,6vw,5rem);
  line-height:1.05;
  margin-bottom:20px;
}

h1 span{color:var(--accent)}

.lead{
  color:var(--muted);
  font-size:1.15rem;
  max-width:650px;
}

.stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0;
}

.stat{
  padding:13px 18px;
  background:rgba(255,255,255,.045);
  border:1px solid var(--border);
  border-radius:14px;
}

.stat strong{
  display:block;
  font-size:1.25rem;
  color:var(--text);
}

.stat small{color:var(--muted)}

.links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--card);
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-2px);
  border-color:var(--accent);
}

.btn.primary{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

.photo{
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:var(--card);
}

.photo img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:4/3;
  object-fit:cover;
}

section{
  padding:85px 0;
}

.section-title{
  font-size:clamp(1.8rem,4vw,2.8rem);
  margin-bottom:16px;
}

.section-text{
  color:var(--muted);
  max-width:800px;
  font-size:1.08rem;
}

.business-grid{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.business{
  background:rgba(255,255,255,.045);
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
}

.business h3{
  margin-bottom:8px;
  font-size:1.35rem;
}

.business p{color:var(--muted)}

.gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:30px;
}

.gallery figure{
  background:rgba(255,255,255,.045);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
}

.gallery img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.gallery figcaption{
  padding:13px 16px;
  color:var(--muted);
}

footer{
  padding:30px 0 45px;
  border-top:1px solid var(--border);
  color:var(--muted);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

@media(max-width:800px){
  .hero{padding:45px 0}
  .hero-grid,
  .business-grid,
  .gallery{grid-template-columns:1fr}
  .hero-grid{gap:28px}
  section{padding:60px 0}
}

[dir="rtl"] body{
  font-family:Tahoma,"Noto Sans Arabic",Arial,sans-serif;
}

[dir="rtl"] .eyebrow{
  letter-spacing:0;
}

[dir="rtl"] .hero-grid{
  direction:rtl;
}

[dir="rtl"] .photo{
  direction:ltr;
}
