* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", "Segoe UI", system-ui, sans-serif;
}

body {
  background: #f8f9fa;
  padding: 15px;
  color: #212529;
  line-height: 1.5;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #0a3d62;
  font-weight: 600;
}

p {
  text-align: center;
  margin-bottom: 20px;
  color: #444;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

label {
  display: block;
  margin: 16px 0 6px;
  font-weight: bold;
  color: #333;
  font-size: 15px;
}

input,
select {
  width: 100%;
  padding: 13px;
  margin-bottom: 16px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 17px;
  background: #fff;
  direction: ltr;
  text-align: left;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* إدخال نص عبري */
input[type="text"],
input[type="tel"] {
  direction: rtl;
  text-align: right;
}

/* إضافة أيقونة سؤال بجانب كل حقل */
input::before,
select::before {
  content: "?";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #6c757d;
  background: #e9ecef;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* قوائم التاريخ */
.date-group,
.expiry-group {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.date-group select,
.expiry-group select {
  flex: 1;
}

/* زر */
button {
  width: 100%;
  padding: 15px;
  background: #0a3d62;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
  background: #074166;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* أخطاء */
.error {
  color: #e53e3e;
  text-align: center;
  font-size: 14px;
  margin-top: -12px;
  margin-bottom: 12px;
}

/* أيقونة نجاح */
.success-icon {
  font-size: 48px;
  color: #38a169;
  text-align: center;
  margin-bottom: 10px;
}

/* لودنج دائري حكومي */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(10, 61, 98, 0.2);
  border-top: 4px solid #0a3d62;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* موبايل */
@media (max-width: 480px) {
  .container { padding: 18px; border-radius: 10px; }
  h2 { font-size: 20px; }
  input, select, button { font-size: 16px; padding: 12px; }
}
/* دعم إدخال أرقام الهاتف */
input#phone {
  direction: ltr;
  text-align: left;
  font-family: monospace;
}