/* Map iframe additional styles */
.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  min-height: 450px;
  height: 450px;
  display: block;
  border: 0;
}

.contact-map-section {
  background: var(--color-surface);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 48px;
}

.contact-map-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: var(--color-text);
}

/* Dark theme */
body.dark-theme .contact-map-section {
  background: var(--color-surface-dark);
}

body.dark-theme .contact-map-section h2 {
  color: var(--color-text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-map-section {
    padding: 24px;
  }
  
  .map-container iframe {
    min-height: 300px;
    height: 300px;
  }
}

