/* =========================================
   contacto.css - ESTILOS DE CONTACTO Y FORMULARIO
   ========================================= */

/* 1. ENCABEZADO */
.page-header {
  padding-top: 120px;
  padding-bottom: 60px;
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #f5a623;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* 2. CAJAS DE CRISTAL (Contenedores Principales) */
.contact-box {
  background: rgba(12, 45, 72, 0.9); /* Azul oscuro corporativo */
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  height: 100%;
  color: white;
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  border-color: #f5a623;
}

.box-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #f5a623;
  display: inline-block;
  padding-bottom: 5px;
}

/* 3. ITEMS DE INFORMACIÓN (Icono + Texto) */
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-icon-wrapper {
  background-color: #f5a623;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #0c2d48;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.info-content h5 {
  font-weight: 700;
  margin-bottom: 2px;
  color: white;
}

.info-content p,
.info-content a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
}

.info-content a:hover {
  color: #f5a623;
}

/* 4. MAPA */
.map-container {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
}

/* 5. FORMULARIO ESTILIZADO */
.form-label {
  color: #f5a623;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
  border-color: #f5a623;
  outline: none;
}

/* Botón de envío */
.btn-submit {
  background-color: #f5a623;
  color: #0c2d48;
  font-weight: 800;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  border: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #ffca2c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}
