.map-section {
  padding: 6rem 2rem;
  background: var(--color-bg-dark, #0a192f);
}

.map-section__container {
  max-width: 1400px;
  margin: 0 auto;
}

.map-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.map-section__subtitle {
  color: var(--color-accent, #64ffda);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.map-section__title {
  font-size: 2.5rem;
  color: var(--color-white, #fff);
  margin-bottom: 1rem;
}

/* Carte Google Maps */
.map-section__wrapper {
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#mapContainer {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 500px;
}

.map__frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Proximités */
.proximity {
  margin-bottom: 3rem;
}

.proximity__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.proximity__item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.proximity__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.proximity__label {
  color: var(--color-white, #fff);
  font-weight: 500;
  font-size: 1.1rem;
}

.proximity__distance {
  color: var(--color-accent, #64ffda);
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .map-section {
    padding: 4rem 1rem;
  }
  
  .map-section__title {
    font-size: 2rem;
  }
  
  #mapContainer {
    height: 400px;
  }
  
  .proximity__grid {
    grid-template-columns: 1fr;
  }
}