/* ذيل الصفحة */
.site-footer {
  padding: 80px 24px 64px;
  border-top: 1px solid var(--bg-border);
  background: #ffffff;
}

.footer-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 36px;
}

.footer-title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.footer-title, .footer-subtitle {
  text-align: center;
}

.footer-subtitle {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.lead-form {
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  background: #0d1322;
  padding: 28px;
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: #ffffff;
}

.form-label {
  font-size: 12px;
  font-weight: bold;
}

.form-phone {
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  overflow: hidden;
}

.form-prefix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: 12px;
  color: var(--text-muted);
  border-left: 1px solid rgba(15, 23, 42, 0.1);
}

.form-prefix i {
  font-size: 14px;
}

.form-phone input {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 12px 14px;
  text-align: right;
  direction: rtl;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.form-disclaimer {
  margin: 0;
  font-size: 12px;
  color: #ffffff;
  font-weight: bold;
}

.footer-support {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-support i {
  font-size: 15px;
}

.footer-copy {
  margin-top: 42px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* تجاوب ذيل الصفحة */
@media (max-width: 768px) {
  .site-footer {
    padding: 64px 18px 56px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }


}

