: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;
}

/* ✅ Screen Reader Only - مرئي فقط لقارئات الشاشة */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ✅ تحسين التباين */
.field label {
  color: #374151; /* رمادي داكن - تباين 7:1 */
  font-weight: 600;
  font-size: 12px;
}

.text-muted {
  color: #4b5563; /* تباين 7:1 */
}

/* ✅ Focus واضح للأزرار والروابط */
a:focus, button:focus, input:focus, select:focus {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

/* ✅ Skip Link للتنقل بلوحة المفاتيح */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #667eea;
  color: white;
  padding: 8px 16px;
  z-index: 100000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}