#contact {
  padding: 40px 0 30px 0;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-lead {
  font-size: 18px;
  color: #0e1b4d;
  margin-bottom: 0;
  text-align: center;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 10px 24px rgba(6, 12, 34, 0.08);
  border: 1px solid rgba(6, 12, 34, 0.08);
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #112363;
}

.contact-location {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2157a6;
}

.contact-detail {
  margin-bottom: 8px;
  color: #64666d;
}

.contact-detail a {
  color: #2157a6;
  text-decoration: none;
  font-weight: 600;
}

.contact-detail a:hover {
  color: #1a4a93;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #25d366;
  box-shadow: 0 8px 16px rgba(6, 12, 34, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.contact-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(6, 12, 34, 0.16);
  color: #fff;
}

.contact-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
  box-shadow: 0 8px 16px rgba(6, 12, 34, 0.12);
}

.contact-social-btn i {
  font-size: 16px;
}

.contact-social-btn.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-social-btn.facebook {
  background: #1877f2;
}

.contact-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(6, 12, 34, 0.16);
  color: #fff;
}

.contact-map {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(6, 12, 34, 0.08);
  border: 1px solid rgba(6, 12, 34, 0.08);
  min-height: 320px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}

.map-consent-placeholder {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #4a567a;
  font-weight: 600;
  padding: 20px;
}

@media (max-width: 991px) {
  .contact-map {
    min-height: 280px;
  }

  .contact-map iframe {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .contact-map {
    min-height: 260px;
  }

  .contact-map iframe {
    min-height: 260px;
  }
}
