/* Contact page custom UI blocks (beyond Tailwind utilities). */

.formCard {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}

.formCard:hover {
  transform: translateY(-6px);
}

.inputStyle {
  margin-top: 4px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #dbeafe;
  background: white;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.inputStyle:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

.labelStyle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #475569;
}

.submitBtn {
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, #0ea5e9, #22c55e, #f97316);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.submitBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.infoCard {
  background: white;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.infoCard:hover {
  transform: translateY(-5px);
}

.infoTitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0284c7;
  margin-bottom: 4px;
}

.whatsappBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 16px;
  background: #22c55e;
  font-weight: 600;
  color: white;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.5);
  transition: 0.3s;
  text-decoration: none;
}

.whatsappBtn:hover {
  transform: scale(1.06);
  background: #16a34a;
}

