/* Contact Page Styles */

/* Hero: gradient background like other hero pages */
.contact-hero {
  position: relative;
  padding-top: 120px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark-color) 100%);
  overflow: hidden;
}

@keyframes floatY {
  from { transform: translateY(0); }
  to { transform: translateY(18px); }
}
@keyframes driftRotate {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-12px) rotate(8deg); }
}
@keyframes softPulse {
  0% { opacity: 0.50; }
  50% { opacity: 0.75; }
  100% { opacity: 0.50; }
}

/* Cards */
.wa-card, .contact-card { transition: box-shadow .2s ease, transform .2s ease; }
.wa-card:hover, .contact-card:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }

/* WhatsApp Button */
.wa-button { box-shadow: 0 8px 16px rgba(17,153,142,0.25); }
.wa-button:hover { opacity: .95; transform: translateY(-1px); }

/* Inputs */
.contact-input { background-color: #fff; }
.contact-input:focus { outline: none; }

/* Submit */
.submit-btn { box-shadow: 0 8px 16px rgba(17,153,142,0.25); }
.submit-btn:hover { transform: translateY(-1px); }

/* Errors */
.input-error { min-height: 20px; }
/* Move shapes to contact section */
.contact-section { position: relative; overflow: hidden; }
.contact-section .hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.contact-section .shape {
  position: absolute;
  border-radius: 9999px;
  opacity: 0.55;
  filter: blur(0);
  box-shadow: 0 0 40px rgba(20,184,166,0.12);
}
.contact-section .shape-1 {
  width: 220px; height: 220px;
  top: -20px; left: -20px;
  background: radial-gradient(circle at 30% 30%, rgba(20,184,166,0.2), rgba(20,184,166,0.12));
  animation: floatY 7s ease-in-out infinite alternate, softPulse 6s ease-in-out infinite;
}
.contact-section .shape-2 {
  width: 260px; height: 260px;
  top: 35%; right: -30px;
  background: radial-gradient(circle at 60% 40%, rgba(20,184,166,0.18), rgba(20,184,166,0.1));
  animation: driftRotate 12s linear infinite, softPulse 8s ease-in-out infinite;
}
.contact-section .shape-3 {
  width: 180px; height: 180px;
  bottom: -40px; left: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(20,184,166,0.18), rgba(20,184,166,0.1));
  animation: floatY 9s ease-in-out infinite alternate-reverse, softPulse 7s ease-in-out infinite;
}
.contact-section .container { position: relative; z-index: 1; }