.contact-section {
  background: var(--color-light, #fff);
  padding: 48px 0 40px;
  border-top: 1px solid #eee;
}

.contact-section .contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.contact-section .contact-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-section .contact-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  display: inline-block;
  border-bottom: 3px solid var(--color-primary, #f5cba7);
  padding-bottom: 4px;
}

.contact-section .contact-header p {
  color: var(--muted, #777);
  font-size: 15px;
}

.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--surface, #f6f7f9);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.contact-section .contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-section .contact-icon {
  font-size: 22px;
  line-height: 1.2;
  flex-shrink: 0;
}

.contact-section .contact-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-dark, #1f1f1f);
}

.contact-section .contact-item p,
.contact-section .contact-item a {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted, #777);
}

.contact-section .contact-item a[href^="tel:"] {
  font-weight: 600;
  color: var(--color-dark, #1f1f1f);
  transition: color 0.2s;
}

.contact-section .contact-item a[href^="tel:"]:hover {
  color: var(--color-primary, #f5cba7);
}

.contact-section .contact-map-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--color-dark, #1f1f1f) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section .contact-map-link:hover {
  color: var(--color-primary, #f5cba7) !important;
}

.contact-section .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px 22px;
  border-radius: 30px;
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-section .whatsapp-btn i {
  font-size: 20px;
}

.contact-section .whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.contact-section .contact-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
  border: 1px solid #eee;
}

.contact-section .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section .contact-map {
    min-height: 280px;
  }

  .contact-section .contact-map iframe {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 36px 0 28px;
  }

  .contact-section .contact-header h2 {
    font-size: 24px;
  }

  .contact-section .contact-info {
    padding: 22px;
  }
}
