/* Contact Section — Al-Bahaa Theme safe */
.contact-section {
  background: linear-gradient(160deg, var(--purple-2) 0%, var(--purple) 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 2rem;
}

.contact-section h2,
.contact-section h5,
.contact-section label {
  color: #fff;
}

.contact-section p { color: #e8e3f1; }

.contact-section .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.contact-section .form-control::placeholder { color: #bbb; }
.contact-section .form-control:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 0.25rem rgba(65,230,192,.25);
}

.contact-info {
  max-width: 400px;
  margin-inline: auto;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
}

/* أيقونات */
.contact-info i { color: #fff; margin-left: 6px; }

/* زر الواتساب */
.whatsapp-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem; /* أصلحت 1.rem إلى 1rem */
  border-radius: 12px;
  background: var(--aqua);
  color: #2b2140;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(65,230,192,0.35);
  animation: shake 0.4s;
}
.whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
}
.whatsapp-btn:hover::after { left: 120%; transition: left 0.8s ease; }

/* اهتزاز خفيف */
@keyframes shake {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-2px); }
  50%  { transform: translateX(2px); }
  75%  { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

/* تنسيقات التنبيه */
.alb-alert {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.alb-alert-success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.45);
  color: #eafff2;
}
.alb-alert-error {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.45);
  color: #ffecec;
}

/* يجعل حقول honeypot مختفية بصريًا بدون تمدد الصفحة */
.alb-hp{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border:0 !important;
  white-space:nowrap !important;
}