.contact-form #contact-submit {
  border-radius: 5px;
}

/* Estilo general para la sección */
#ubicacion {
  background-color: #fff;
}

/* Estilo del mapa */
#ubicacion .map-container iframe {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

#ubicacion .map-container iframe:hover {
  transform: scale(1.02);
  /* Efecto de zoom suave */
}

/* Estilo de la dirección */
#ubicacion p strong {
  font-size: 1.1rem;
  color: #28abe3;
}

/*=================================
GENERAL
=================================*/

.contact-modern {
  background: #f5f7fb;
  padding: 90px 0;
}

.mini-title {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(40, 171, 227, 0.12);
  color: #28abe3;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.contact-title p {
  color: #64748b;
  line-height: 1.9;
}

/*=================================
CARDS
=================================*/

.contact-info-card,
.contact-form-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-card h3,
.contact-form-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

/*=================================
ITEMS
=================================*/

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #28abe3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-item span {
  display: block;
  color: #64748b;
  font-size: 14px;
}

.contact-item h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

/*=================================
SOCIAL
=================================*/

.social-contact {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.social-contact a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 18px;
}

.social-contact a:hover {
  background: #28abe3;
  color: #fff;
  transform: translateY(-5px);
}

/*=================================
FORM
=================================*/

.contact-form-card .form-control {
  height: 58px;
  border: none;
  background: #f8fafc;
  border-radius: 16px;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: none;
}

.contact-form-card textarea.form-control {
  height: auto;
}

.contact-form-card .form-control:focus {
  background: #fff;
  border: 1px solid #28abe3;
  box-shadow: 0 0 0 4px rgba(40, 171, 227, 0.1);
}

/*=================================
BUTTON
=================================*/

.btn-contact-send {
  border: none;
  background: #28abe3;
  color: #fff;
  padding: 15px 30px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.35s;
}

.btn-contact-send:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(40, 171, 227, 0.25);
}

/*=================================
LOCATION
=================================*/

.location-modern {
  padding: 90px 0;
  background: #fff;
}

.location-box {
  background: #f8fafc;
  border-radius: 35px;
  padding: 40px;
}

.location-info h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.location-info p {
  color: #64748b;
  line-height: 1.9;
}

.schedule-box {
  margin-top: 35px;
  padding: 25px;
  border-radius: 20px;
  background: #fff;
}

.schedule-box h5 {
  font-weight: 700;
  margin-bottom: 15px;
}

.schedule-box span {
  display: block;
  color: #64748b;
  margin-bottom: 5px;
}

.map-box iframe {
  border-radius: 25px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/*=================================
RESPONSIVE
=================================*/

@media (max-width: 768px) {
  .contact-title h2 {
    font-size: 36px;
  }

  .location-info h2 {
    font-size: 34px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px 25px;
  }
}
