/* CSS Contacto */
.contact-form {
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-pink);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 143, 163, 0.1);
}

/* Custom Select Style */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  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='%23ff8fa3' 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 1rem center;
  background-size: 1.2rem;
  padding-right: 3rem; /* Space for the arrow */
}

.form-group select option {
  background-color: #1a050a; /* Dark background matching theme */
  color: white;
  padding: 10px;
}

/* ===========================================
   ESTILOS ADICIONALES PARA CONTACTO
   =========================================== */

/* Container de pagina de contacto */
.contact-page-container {
  padding-top: 150px;
  padding-bottom: 100px;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

/* Alerta de exito */
.alert-success {
  padding: 1.5rem;
  border-color: #4caf50;
  color: #4caf50;
  margin-bottom: 2rem;
  text-align: center;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  border: 1px solid #4caf50;
}

.alert-success i {
  font-size: 1.2rem;
  vertical-align: middle;
  margin-right: 5px;
}

/* Boton de formulario */
.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* ===========================================
   RESPONSIVE MOVIL PARA CONTACTO
   =========================================== */

@media (max-width: 768px) {
  .contact-page-container {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 380px) {
  .contact-title {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }
}
