* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f4f7f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 480px;
}

.text-center {
  text-align: center;
}

/* العناوين */
.main-title {
  color: #38b6ff; /* أزرق فاتح */
  font-size: 24px;
  margin-bottom: 8px;
}
input[type="tel"] {
    text-align: right;
    direction: rtl;
}
.sub-title {
  color: #7f8c8d; /* رمادي */
  font-size: 14px;
  margin-bottom: 25px;
}

/* الحقول */
.form-group {
  margin-bottom: 18px;
  text-align: right;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #2c3e50;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #38b6ff;
}

/* خيارات الراديو */
.options-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

/* الأزرار */
.btn {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.btn-primary {
  background-color: #38b6ff;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background-color: #249ee4;
}

.btn-secondary {
  background-color: #ffffff;
  color: #555;
  border: 1px solid #ccc;
}

.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-transparent {
  background-color: transparent;
  color: #7f8c8d;
  border: none;
}

.btn-transparent:hover {
  text-decoration: underline;
}

/* قسم خدمة العملاء */
.support-section {
  margin-top: 30px;
  text-align: center;
}

.support-text {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 12px;
}

.security-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2ecc71; /* أخضر فاتح */
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.green-lock {
  color: #2ecc71;
}

/* الشعار والحقوق */
.company-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.company-logo {
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-text {
  color: #95a5a6;
  font-size: 12px;
}

/* العداد */
.timer-box {
  font-size: 32px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 4px;
}

.timer-label {
  color: #7f8c8d;
  font-size: 13px;
  margin-bottom: 20px;
}

/* الزر العائم للاتصال */
.floating-call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.2s;
}

.floating-call-btn:hover {
  transform: scale(1.1);
}

.phone-tooltip {
  display: none;
  position: absolute;
  right: 60px;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}

.floating-call-btn:hover .phone-tooltip {
  display: block;
}
.site-logo {
    display: block;
    max-width: 300px; /* يمكنك تكبير أو تصغير الرقم حسب الحجم المناسب لك */
    height: auto;
    margin: 0 auto 20px auto; /* لتوسيط الصورة وإضافة مسافة بينها وبين العنوان */
}