.road-section {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 40px 80px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.road-info {
  flex: 0 0 420px;
  padding: 48px 40px;
  background: #ffffff;
  /* border-radius: 20px;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0; */
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.road-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, 
    #60a5fa, 
    #3b82f6, 
    #2563eb, 
    #1d4ed8,
    #2563eb,
    #3b82f6,
    #60a5fa
  ); */
  background-size: 200% 100%;
  animation: flowingGradient 3s ease-in-out infinite;
}

.road-info h3 {
  font-size: 1.875rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.road-info .address {
  font-size: 1.125rem;
  color: #334155;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}

.road-info .address::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: 1.25rem;
}

.road-info .phone {
  font-size: 1.75rem;
  color: #3b82f6;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.road-info .phone:hover {
  color: #2563eb;
  transform: scale(1.02);
}

.road-info .desc {
  font-size: 1rem;
  color: #64748b;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
  line-height: 1.6;
}

.road-mapbox {
  flex: 1;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.road-mapbox .map {
  width: 100%;
  height: 100%;

  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  transition: all 0.4s ease;
}

.road-mapbox .map::before {
  content: '지도를 불러오는 중...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 500;
  z-index: 0;
}

.road-mapbox .map:hover {
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 30px 80px rgba(59, 130, 246, 0.08);
}

/* Responsive Design for Road Section */
@media (max-width: 1200px) {
  .road-section {
    padding: 0 30px 60px;
    gap: 30px;
  }

  .road-info {
    flex: 0 0 380px;
    padding: 40px 32px;
  }

  .road-info h3 {
    font-size: 1.75rem;
    margin-bottom: 28px;
  }

  .road-info .phone {
    font-size: 1.5rem;
  }
}

@media (max-width: 968px) {
  .road-section {
    flex-direction: column;
    padding: 0 30px 60px;
    gap: 32px;
  }

  .road-info {
    flex: none;
    width: 100%;
    padding: 40px 32px;
  }

  .road-mapbox .map {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .road-section {
    padding: 0 20px 50px;
    gap: 24px;
  }

  .road-info {
    padding: 36px 28px;
  }

  .road-info h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .road-info .address {
    font-size: 1rem;
    padding-left: 24px;
  }

  .road-info .phone {
    font-size: 1.375rem;
    margin-bottom: 24px;
  }

  .road-info .desc {
    font-size: 0.9375rem;
    padding-top: 24px;
  }

  .road-mapbox .map {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .road-section {
    padding: 0 16px 40px;
    gap: 20px;
  }

  .road-info {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .road-info h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .road-info .address {
    font-size: 0.9375rem;
    padding-left: 24px;
    margin-bottom: 16px;
  }

  .road-info .phone {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .road-info .desc {
    font-size: 0.875rem;
    padding-top: 20px;
  }

  .road-mapbox .map {
    border-radius: 12px;
    min-height: 300px;
  }

  .road-mapbox .map::before {
    font-size: 0.9375rem;
  }
}

/* InfoWindow 스타일 */
.info-window {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  padding: 8px 12px;
  color: #222;
}

.info-window h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-window p {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

/* 반응형 */