/* ====================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DE CONTACTO
   Diseño limpio sin fondos de color
   ==================================== */

/* Variables */
:root {
  --primary: #0B6B21;
  --primary-dark: #084f19;
  --primary-light: #e8f5e9;
  --accent-lime: #BAF235;
  --gold-accent: #ECC101;
  --dark: #1b2a38;
  --gray-light: #f8f9fa;
  --gray-border: #e0e0e0;
}

/* Contenedor principal */
.contact-section {
  margin: 60px 0;
}

.contact-info-section,
.contact-form-section {
  margin-bottom: 60px;
}

/* ===== INFORMACIÓN DE CONTACTO - SIN FONDO ===== */
.contact-info-section {
  background: transparent;
  padding: 40px 0;
}

.contact-info-section .section-title {
  color: var(--dark);
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.contact-info-section .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

/* Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TARJETAS ===== */
.contact-info-card {
  background: #fff;
  padding: 25px;
  border-radius: 0;
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-left-color: var(--primary-dark);
}

/* Header de tarjeta */
.contact-info-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}

/* Ícono */
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 20px;
  color: #fff;
}

/* Título */
.contact-info-title {
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Contenido */
.contact-info-content {
  color: #555;
}

.contact-info-content p {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.contact-info-content strong {
  color: var(--dark);
}

.contact-info-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact-info-note {
  font-size: 13px;
  color: #777;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-border);
  font-style: italic;
}

/* ===== BOTÓN WHATSAPP ===== */
.whatsapp-btn-container {
  margin-top: 15px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
}

.whatsapp-btn i {
  font-size: 18px;
}

/* ===== REDES SOCIALES ===== */
.contact-social .footer-social {
  display: flex;
  gap: 10px;
}

.contact-social .footer-social a {
  width: 42px;
  height: 42px;
  background: var(--dark);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social .footer-social a:hover {
  background: var(--primary);
}

/* ===== FORMULARIO ===== */
.contact-form-section {
  background: var(--gray-light);
  padding: 60px 0;
}

.contact-form-section .section-title {
  color: var(--dark);
  font-size: 32px;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.contact-form-section .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.contact-form-section .section-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contenedor del formulario */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.contact-form-container .form-group {
  margin-bottom: 20px;
}

.contact-form-container .form-control {
  border: 1px solid var(--gray-border);
  border-radius: 0;
  padding: 12px 15px;
  font-size: 15px;
  transition: border-color 0.3s;
  background: #fff;
  width: 100%;
  height: auto;
}

.contact-form-container .form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: none;
}

.contact-form-container textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-form-container select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%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;
  padding-right: 40px;
}

/* Botón submit */
.contact-form-container .submit-btn,
.contact-form-container button[type="submit"] {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form-container .submit-btn:hover,
.contact-form-container button[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Nota del formulario */
.form-note {
  color: #dc2626;
  font-size: 14px;
  background: #fef2f2;
  padding: 12px 15px;
  border-left: 3px solid #dc2626;
  margin-top: 20px;
}

/* ===== MAPA ===== */
.contact-map-section {
  margin: 60px 0;
}

.contact-map-section .section-title {
  color: var(--dark);
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.map-container {
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ===== ÁREA DE COBERTURA ===== */
.coverage-area {
  background: var(--gray-light);
  padding: 40px;
  margin: 60px 0;
  border-left: 4px solid var(--primary);
}

.coverage-area .section-title {
  color: var(--dark);
  font-size: 24px;
  margin-bottom: 15px;
}

.coverage-area p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .contact-info-section {
    padding: 30px 0;
  }

  .contact-form-container {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    margin: 40px 0;
  }

  .contact-info-section .section-title,
  .contact-form-section .section-title {
    font-size: 26px;
  }

  .contact-form-container {
    padding: 25px 20px;
  }

  .coverage-area {
    padding: 30px 25px;
  }
}

@media (max-width: 575px) {
  .contact-info-card {
    padding: 20px;
  }

  .contact-info-icon {
    width: 42px;
    height: 42px;
  }

  .contact-info-icon i {
    font-size: 18px;
  }

  .contact-info-title {
    font-size: 16px;
  }
}
