/* Footer Google Maps Styles */
.footer-widget.widget-map {
  margin-bottom: 30px;
}

.footer-widget.widget-map .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--tj-heading-color, #1a1a1a);
}

.footer-map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.footer-map-container:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.footer-map-container iframe {
  display: block;
  width: 100%;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-widget.widget-map {
    margin-bottom: 40px;
  }
  
  .footer-map-container iframe {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .footer-map-container iframe {
    height: 250px;
  }
}
