/* =========================================
   HERO CINEMATOGRÁFICO — VERSIÓN MEJORADA
   ========================================= */

.contact-hero {
  position: relative;
  width: 100%;
  height: 75vh; /* MÁS ALTO, MÁS IMPACTO */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--white-pure);
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.1) saturate(1.2);
  z-index: 0;
}

/* CAPA CINEMATOGRÁFICA */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.75)
    );
  z-index: 1;
}

/* GLOW NEÓN IZQUIERDA */
.contact-hero::before {
  content: "";
  position: absolute;
  left: -15%;
  top: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle,
    rgba(0, 234, 255, 0.18),
    transparent 70%
  );
  filter: blur(120px);
  z-index: 2;
}

/* GLOW NEÓN DERECHA */
.contact-hero::after {
  content: "";
  position: absolute;
  right: -15%;
  top: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle,
    rgba(255, 0, 200, 0.18),
    transparent 70%
  );
  filter: blur(120px);
  z-index: 2;
}

/* TEXTO */
.contact-hero h1 {
  position: relative;
  z-index: 5;
  font-size: 4.2rem;
  color: var(--cyan);
  text-shadow: 0 0 25px var(--cyan);
  margin-bottom: 20px;
}

.contact-hero p {
  position: relative;
  z-index: 5;
  font-size: 1.45rem;
  opacity: 0.95;
  max-width: 850px;
  margin: 0 auto;
  text-shadow: 0 0 12px rgba(0, 234, 255, 0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-hero {
    height: 55vh;
  }

  .contact-hero h1 {
    font-size: 2.8rem;
  }

  .contact-hero p {
    font-size: 1.15rem;
  }
}


/* =========================================
   CONTACTO PREMIUM — CONTENEDOR
   ========================================= */

.contact-wrapper {
  display: flex;
  gap: 40px;
  padding: 80px 40px;
  background: var(--black-deep);
}

/* =========================================
   COLUMNA IZQUIERDA — INFORMACIÓN
   ========================================= */

.contact-info-block {
  flex: 1;
  background: #111;
  padding: 35px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 234, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.1);
}

.contact-info-block h2 {
  color: var(--magenta);
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 0, 200, 0.4);
}

/* ITEMS DE INFORMACIÓN */
.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.info-icon {
  font-size: 1.6rem;
}

.info-item strong {
  color: var(--white-pure);
}

.info-item p {
  color: rgba(255, 255, 255, 0.85);
  margin: 2px 0 0;
}

/* BOTONES */
.btn-whatsapp,
.btn-call {
  display: block;
  margin-top: 20px;
  padding: 14px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--cyan);
  color: var(--black-deep);
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-whatsapp:hover,
.btn-call:hover {
  box-shadow: 0 0 18px var(--cyan);
}

/* TARJETAS DE CONFIANZA */
.trust-cards {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.trust-card {
  flex: 1;
  background: #0d0d0d;
  padding: 18px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255, 0, 200, 0.2);
  box-shadow: 0 0 12px rgba(255, 0, 200, 0.1);
}

.trust-card span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.85);
}

/* MAPA */
.contact-map {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  margin-top: 20px;
  border: 1px solid rgba(0, 234, 255, 0.2);
}

/* =========================================
   COLUMNA DERECHA — FORMULARIO PREMIUM
   ========================================= */

.contact-form-block {
  flex: 1;
  background: #111;
  padding: 35px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 0, 200, 0.2);
  box-shadow: 0 0 25px rgba(255, 0, 200, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-title {
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
  margin-bottom: 10px;
}

/* INPUTS */
.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.contact-form-block input,
.contact-form-block textarea,
.contact-form-block select {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 234, 255, 0.2);
  background: #0d0d0d;
  color: var(--white-pure);
  font-size: 1rem;
}

.contact-form-block select {
  appearance: none;
  cursor: pointer;
}

textarea {
  height: 120px;
  resize: none;
}

/* BOTÓN */
.btn-submit {
  padding: 14px;
  background: var(--magenta);
  color: var(--white-pure);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: var(--cyan);
  color: var(--black-deep);
  box-shadow: 0 0 18px var(--cyan);
}

/* MENSAJE DE ÉXITO */
.success-message {
  display: none;
  color: var(--cyan);
  margin-top: 10px;
  text-shadow: 0 0 10px var(--cyan);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .trust-cards {
    flex-direction: column;
  }
}
