:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --white:#fff;
  --text:#0f172a;
  --muted:#64748b;
  --line:rgba(15,23,42,.10);
  --primary:#0ea5e9;
  --primary2:#22c55e;
  --radius:18px;
  --shadow: 0 14px 40px rgba(2,6,23,.18);
}

*{
  box-sizing:border-box;
}

html,body{
  height:100%;
}

body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

button{
  font-family:inherit;
  cursor:pointer;
  border:none;
  background:none;
}

input,select,textarea{
  font-family:inherit;
}

.container{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
}

/* تنسيقات الأزرار الإضافية */
.btn-chip{
  background:#fff;
  border-color: var(--line);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
}

.icon-person::before{
  content:"👤";
}

.icon-phone::before,
.icon-whatsapp::before{
  content:"" !important;
}

/* ضمان خلفية بيضاء للصفحة */
html{
  background:#fff;
}

body{
  background:#fff;
}