/* Medical soft black theme */
:root{
  --bg:#0e141b;
  --panel:#121b24;
  --panel2:#0f1922;
  --text:#eaf1ff;
  --muted:#a9b6c8;
  --line:rgba(255,255,255,.08);
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --radius:18px;
  --accent:#1f9d6a;
  --accent2:#0ea5e9;
}

*{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);
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(14,20,27,.72);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}


.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:42px; height:42px; border-radius:14px;
  background: radial-gradient(120% 120% at 20% 20%, rgba(31,157,106,.55), rgba(14,165,233,.35), rgba(18,27,36,0));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.brand__name{font-weight:900; letter-spacing:.2px; font-size:14px}

.brand__tag{font-size:12px; color:var(--muted); margin-top:4px; direction:ltr; text-align:left}


.nav{
  display:flex;
  gap:14px;
  margin:0;
  justify-content:flex-start;
}

.nav a{
  padding:10px 12px; border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav a:hover{color:var(--text); border-color:var(--line); background:rgba(255,255,255,.03)}

.topbar__actions{display:flex; gap:10px}
.pill{
  padding:10px 12px; border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  font-weight:700;
}
.pill--outline{background:transparent}

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  cursor:pointer;
}

.hamburger span{
  display:block; width:18px; height:2px; margin:4px auto;
  background:var(--text); opacity:.9; border-radius:2px;
}
.mobile{
  display:none;
  padding:10px 0 16px;
  border-top:1px solid var(--line);
}
.mobile a{
  display:block;
  width:min(1120px, 92%);
  margin:0 auto;
  padding:12px 0;
  color:var(--muted);
}
.mobile a:hover{color:var(--text)}

.hero{
  padding:56px 0 28px;
  background:var(--bg);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:24px;
  align-items:center;
}

.hero__content{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
h1{margin:0 0 10px; font-size:clamp(26px, 3.4vw, 40px); line-height:1.25}
.lead{margin:0; color:var(--muted); font-size:16px; line-height:1.9}

.hero__cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg, rgba(31,157,106,.95), rgba(14,165,233,.45));
  color:white;
  font-weight:800;
  cursor:pointer;
}
.btn:hover{filter:brightness(1.05)}
.btn--ghost{
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.btn--wide{width:100%}

.hero__badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.badge{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.hero__media{display:none}
.mediaCard{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--panel);
  box-shadow:var(--shadow);
}
.mediaCard img{display:block; width:100%; height:320px; object-fit:cover}
.mediaCard--small img{height:160px}

.section{padding:46px 0; background:var(--bg)}
.section--alt{background:var(--bg)} /* keep unified color */
.section__head h2{margin:0 0 10px; font-size:26px}
.section__head p{margin:0; color:var(--muted); line-height:1.9}

.stats{
  margin-top:20px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.stat{
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  padding:16px;
}
.stat__num{font-weight:900; font-size:18px}
.stat__txt{color:var(--muted); margin-top:6px; font-size:13px}

.grid{display:grid; gap:12px}
.cards{
  grid-template-columns: repeat(4, 1fr);
  margin-top:18px;
}
.card{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(18,27,36,.75);
  padding:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.8; font-size:14px}
.card--highlight{
  background:linear-gradient(135deg, rgba(31,157,106,.20), rgba(14,165,233,.10), rgba(18,27,36,.75));
}

.gallery{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.gitem{
  padding:0;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.02);
  cursor:pointer;
}
.gitem img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .25s ease;
}
.gitem:hover img{transform:scale(1.03)}

.contactGrid{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1.05fr 1fr 1.1fr;
  gap:12px;
  align-items:start;
}
.panel{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(18,27,36,.75);
  padding:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}
.panel h3{margin:0 0 12px}
.panel--map{padding:18px}
.mapWrap{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
}
.mapWrap iframe{width:100%; height:320px; border:0}

.infoRow{
  display:flex;
  gap:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  margin-bottom:10px;
}
.infoIcon{
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  font-size:18px;
}
.infoLabel{font-size:12px; color:var(--muted)}
.infoValue{font-weight:800; margin-top:3px; display:block}

.divider{height:1px; background:var(--line); margin:16px 0}

.hours .hourRow{
  display:flex; justify-content:space-between; gap:10px;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  margin-bottom:10px;
}
.hourDay{color:var(--muted); font-weight:700}
.hourTime{font-weight:900}

.form label{display:block; margin-bottom:12px}
.form span{display:block; margin-bottom:8px; color:var(--muted); font-size:13px; font-weight:700}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(14,20,27,.55);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color:rgba(14,165,233,.55)}
.formHint{margin-top:12px; color:var(--muted); font-size:13px}

.footer{
  border-top:1px solid var(--line);
  background:rgba(14,20,27,.9);
  padding:18px 0;
}
.footer__inner{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  color:var(--muted);
  flex-wrap:wrap;
  text-align:center;
}

.footer__mini{font-size:12px; opacity:.9}

.lightbox{
  position:fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  background:rgba(0,0,0,.72);
  z-index:80;
  padding:20px;
}
.lightbox img{
  max-width:min(980px, 95vw);
  max-height:85vh;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 25px 70px rgba(0,0,0,.65);
}
.lightbox__close{
  position:fixed;
  top:18px; inset-inline-end:18px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:white;
  font-size:26px;
  cursor:pointer;
}

@media (max-width: 980px){
  .nav, .topbar__actions{display:none}
  .hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  cursor:pointer;
}

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

  .mediaCard img{height:260px}
  .stats{grid-template-columns:repeat(2,1fr)}
  .cards{grid-template-columns:repeat(2,1fr)}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .contactGrid{grid-template-columns:1fr}
  .mobile{display:none}
}

@media (max-width: 520px){
  .hero__content{padding:18px}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
}


/* ===== Beauty touches (subtle, medical, no layout change) ===== */
.topbar{
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn{
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(31,157,106,0.35);
  filter: brightness(1.03);
}

.card{
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.12);
}

/* Elegant section separator */
.section::after{
  content:"";
  display:block;
  width:80px;
  height:2px;
  margin:40px auto 0;
  background: linear-gradient(to left, transparent, var(--accent), transparent);
  opacity: .35;
}

/* Headings accent (very subtle) */
.section__head h2::before{
  content:"▮ ";
  color: var(--accent);
}
