/* DISEÑO CONTACTO - INNOVARTE DESIGN */

.id-contact-section {
  padding: 120px 0 80px;
  text-align: center;
  background: radial-gradient(
    circle at top right,
    rgba(0, 229, 255, 0.05),
    transparent
  );
}

.id-contact-sub {
  color: var(--text-dim);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.id-contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--glass);
  padding: 50px;
  border-radius: 40px;
  border: 1px solid var(--border);
  backdrop-filter: blur(15px);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.id-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.id-form-group {
  text-align: left;
}

.id-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--cian);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.id-form-input {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  transition: 0.3s;
  /* Asegura que el icono del select sea visible si es necesario */
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
}

/* CORRECCIÓN: Color de las letras en las opciones del menú desplegable */
.id-form-input option {
  background-color: #0a0a0a; /* Fondo oscuro para que resalte el texto */
  color: #fff; /* Letras blancas */
  padding: 10px;
}

.id-form-input:focus {
  outline: none;
  border-color: var(--cian);
  background: rgba(255, 255, 255, 0.1);
}

/* Compliance RingCentral */
.id-compliance-box {
  background: rgba(0, 229, 255, 0.03);
  padding: 25px;
  border-radius: 20px;
  margin: 30px 0;
  border-left: 4px solid var(--cian);
  text-align: left;
}

.id-check-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  cursor: pointer;
}

.id-check-group:last-child {
  margin-bottom: 0;
}

.id-check-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--cian);
  margin-top: 2px;
}

.id-check-text {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Pantalla de Éxito */
#id-success-screen {
  padding: 40px 20px;
  animation: fadeInSuccess 0.6s ease forwards;
}

.id-success-icon {
  width: 80px;
  height: 80px;
  background: var(--lime);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
}

.id-success-p {
  color: var(--text-dim);
  margin: 20px 0;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MODO ENFOQUE */
.id-focus-mode .id-nav-list {
  display: none !important;
}

@media (max-width: 768px) {
  .id-form-grid {
    grid-template-columns: 1fr;
  }
  .id-contact-form-container {
    padding: 30px 20px;
  }
}
