
/* Arabic RTL Wellness Spa Site */
:root{
  --primary:#156C6F;
  --accent:#E5C07B;
  --bg:#f8f9fb;
  --text:#222;
  --muted:#6b7280;
  --card:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; font-family:"Tajawal", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Kufi Arabic", sans-serif;
  background:var(--bg); color:var(--text); direction:rtl;
}

.header{
  position:sticky; top:0; z-index:100; background:var(--card);
  border-bottom:1px solid #eee;
}
.nav{
  max-width:1100px; margin:auto; display:flex; align-items:center; justify-content:space-between; padding:12px 16px;
}
.brand{display:flex; gap:10px; align-items:center}
.brand .logo{
  width:40px; height:40px; border-radius:10px; background:linear-gradient(135deg,#1aa4a8,#0e4e50);
  display:grid; place-items:center; color:white; font-weight:700; letter-spacing:1px;
}
.brand .title{font-weight:800; font-size:18px}
.nav a{color:var(--text); text-decoration:none; margin:0 8px; font-weight:500}
.nav a.btn{background:var(--primary); color:white; padding:10px 14px; border-radius:10px}

.hero{
  max-width:1100px; margin:24px auto; display:grid; grid-template-columns:1.1fr .9fr; gap:20px; padding:0 16px;
}
.hero .card{
  background:var(--card); border-radius:16px; padding:22px; box-shadow:0 10px 25px rgba(0,0,0,.04);
}
.hero h1{margin:0 0 10px 0; font-size:28px}
.hero p{color:var(--muted); line-height:1.9}

.grid{
  display:grid; gap:16px; grid-template-columns:repeat(3,1fr);
}
.card{
  background:var(--card); border-radius:16px; padding:18px; box-shadow:0 10px 25px rgba(0,0,0,.04);
}
.card img{width:100%; height:210px; object-fit:cover; border-radius:12px; margin-bottom:10px}
.tag{display:inline-flex; align-items:center; gap:6px; color:#fff; background:var(--primary); padding:6px 10px; border-radius:999px; font-size:12px}

.section{max-width:1100px; margin:28px auto; padding:0 16px}
.section h2{margin:0 0 12px 0; font-size:22px}

.service-list{display:grid; grid-template-columns:repeat(2,1fr); gap:12px}
.service{padding:14px; border:1px solid #eee; border-radius:12px; background:#fff}
.service h3{margin:0 0 6px 0; font-size:16px}
.service p{margin:0; color:var(--muted)}

.branch-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.branch .name{font-weight:700; font-size:18px; margin:6px 0 10px}
.actions{display:flex; gap:8px; align-items:center}
.btn{display:inline-flex; gap:8px; align-items:center; background:var(--primary); color:white; padding:10px 12px; border-radius:10px; text-decoration:none; font-weight:600}
.btn.secondary{background:#0B9444}
.btn.ghost{background:#f3f4f6; color:var(--text)}

.form{
  display:grid; gap:12px; max-width:650px; background:#fff; border:1px solid #eee; padding:16px; border-radius:12px
}
.input-row{display:grid; gap:12px; grid-template-columns:1fr 1fr}
input, select, textarea{
  width:100%; padding:12px; border:1px solid #ddd; border-radius:10px; font-family:inherit; font-size:15px
}
label{font-weight:700; font-size:14px}
.form .btn{width:max-content}

.footer{margin-top:40px; background:#0f172a; color:#cbd5e1; padding:24px 16px}
.footer .wrap{max-width:1100px; margin:auto; display:grid; grid-template-columns:2fr 1fr; gap:20px}
.footer a{color:#e2e8f0}

.whatsapp-icon{
  width:18px; height:18px; display:inline-block; background:#25D366; border-radius:999px; position:relative;
}
.whatsapp-icon:after{content:'✆'; position:absolute; inset:0; font-size:12px; display:grid; place-items:center; color:white}

@media (max-width:960px){
  .hero{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .branch-grid{grid-template-columns:1fr}
  .service-list{grid-template-columns:1fr}
  .input-row{grid-template-columns:1fr}
}
