/*core\static\css\form.css*/
/* ===============================
   CONTACT SECTION
================================= */

/* Sección full-width, igual que .hero */
#contact {
  width: 100%;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  padding: 4rem var(--page-gutter);
}

/* Contenido centrado, igual que .hero-inner */
.contact-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Labels y títulos en verde LimonIt */
#contact h2,
#contact h5,
#contact .form-label,
#contact .contact-direct p {
  color: var(--limonit-green);
}

/* Texto dentro de los inputs */
#contact .form-control {
  color: var(--limonit-green);
}

/* Placeholder más sutil */
#contact .form-control::placeholder {
  color: rgba(37, 124, 66, 0.45);
}

/* Dark mode — aclarar un poco */
.theme-dark #contact h2,
.theme-dark #contact h5,
.theme-dark #contact .form-label,
.theme-dark #contact .contact-direct p {
  color: var(--limonit-yellow);
}

.theme-dark #contact .form-control {
  color: var(--limonit-yellow);
}

.theme-dark #contact .form-control::placeholder {
  color: rgba(224, 199, 7, 0.4);
}

/* Glow decorativo, igual que los heroes */
#contact::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
      rgba(224, 199, 7, 0.35) 0%,
      rgba(37, 124, 66, 0.25) 40%,
      transparent 70%);
  filter: blur(60px);
  z-index: 0;
}