/* =========================================================
   CENTRAL TAXI AIRPORT LIMA — contacto.css (solo página Contacto)
   ========================================================= */

.contact-info li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem 0;
  border-bottom: 1px dashed rgba(0,0,0,.1);
  font-size: 1rem;
}
.contact-info i { color: var(--color-gold); font-size: 1.2rem; width: 24px; }
.contact-info a { color: var(--color-dark); transition: color .2s var(--ease-out); }
.contact-info a:hover { color: var(--color-gold-dark); }

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-black);
  color: var(--color-gold);
  margin-right: .6rem;
  transition: background-color .2s var(--ease-out), color .2s var(--ease-out), transform .2s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .social-icons a:not(.is-disabled):hover { background-color: var(--color-gold); color: var(--color-black); transform: translateY(-3px); }
}

.contact-form .form-label { font-weight: 600; color: var(--color-dark); }
.contact-form .form-control {
  border-radius: .6rem;
  border: 1px solid #ddd;
  padding: .65rem .9rem;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.contact-form .form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 .2rem rgba(201,162,39,.2);
}
.contact-form .invalid-feedback { font-size: .82rem; }

.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(201,162,39,.3);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.map-wrapper iframe { width: 100%; height: 320px; border: 0; display: block; }
