/* ===================================================
   contactenos.css — Estilos exclusivos para la página de Contacto Rediseñada
   Requiere base.css cargado primero
   =================================================== */

/* ── Contenedor Principal Premium ── */
.contact-page-premium {
  position: relative;
  padding: 100px 5%;
  background: url('../images/contect-mix.jpg') center/cover no-repeat fixed;
  overflow: hidden;
  min-height: 800px;
}

.contact-page-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 0, 66, 0.9) 0%, rgba(3, 42, 109, 0.8) 100%);
  z-index: 1;
}

/* ── Elementos Decorativos de Fondo ── */
.contact-bg-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.c-circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 0, 209, 0.04) 0%, transparent 60%);
  top: -100px;
  left: -200px;
  animation: pulse-slow 8s infinite alternate ease-in-out;
}

.c-circle-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 60%);
  bottom: -50px;
  right: -150px;
  animation: pulse-slow 6s infinite alternate-reverse ease-in-out;
}

/* ── Layout de la Sección de Contacto ── */
.premium-layout {
  position: relative;
  z-index: 2;
  align-items: stretch;
}

/* -- Mascot removal (styles not needed anymore) -- */

/* ── Personalización de Tarjetas de Información ── */
.premium-card {
  background: var(--white);
  border: 1px solid rgba(4, 0, 140, 0.08);
  box-shadow: 0 10px 30px rgba(4, 0, 140, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-card:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(4, 0, 140, 0.12);
  border-color: var(--blue-pale);
}

.premium-card:hover::before {
  transform: scaleY(1);
}

/* ── Estilos Premium del Formulario ── */
.premium-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 60px rgba(4, 0, 140, 0.1);
  position: relative;
  z-index: 10;
  border-radius: var(--radius-xl);
  padding: 50px 45px;
}

.premium-form h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.premium-form h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--yellow);
  margin-top: 15px;
  border-radius: 4px;
}

.premium-form .btn-submit {
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
  font-size: 1.1rem;
}

.premium-form .btn-submit:hover {
  box-shadow: 0 15px 35px rgba(255, 184, 0, 0.4);
  transform: translateY(-3px);
}

/* Inputs and focus states for the premium form */
.premium-form .form-group input,
.premium-form .form-group select,
.premium-form .form-group textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--gray-light);
  transition: all 0.3s ease;
}

.premium-form .form-group input:focus,
.premium-form .form-group select:focus,
.premium-form .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(4, 0, 140, 0.08);
  background: var(--white);
}

.checkbox-group {
  margin: 20px 0 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.checkbox-label:hover .checkbox-text {
  color: var(--blue);
}

/* ── Modificadores Opcionales (Ej. Mapa width completo) ── */
.map-section.full-width-map {
  padding-bottom: 0;
}

.map-section.full-width-map .map-wrap {
  max-width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* ── Animaciones Adicionales ── */
/* Animations removed as mascot was deleted */

@keyframes pulse-slow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.4;
  }
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .premium-form {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .contact-page-premium {
    padding: 60px 5%;
    min-height: auto; /* Permite que crezca con el contenido */
  }

  .premium-form {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .premium-form h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .premium-form {
    padding: 25px 15px;
  }
}