/* 전체 섹션 */
.road-as-section {
  padding: 120px 0;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

.road-as-inner {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 왼쪽 텍스트 영역 */
.road-as-text {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.road-as-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.road-as-subtitle {
  font-size: 1rem;
  color: #6b7a8f;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.road-as-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1b4ef0, #4cc9f0);
  border-radius: 2px;
  margin-bottom: 40px;
}

/* 회사 정보 */
.road-as-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.road-as-info .address {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.road-as-info .phone {
  font-weight: 600;
  color: #1b4ef0;
  margin-bottom: 10px;
}

.road-as-info .desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 지도 영역 */
.road-as-mapbox {
  width: 100%;
  display: flex;

  justify-content: center;

}

.map {
  width: 100% !important;
  height: 400px !important;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: visible;
}



/* 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;
}

#as_center_map {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

#as_center_map img {
  box-shadow: none;
  border-radius: 0;
}

#as_center_map:hover img {
  transform: none;
}

/* 반응형 */
@media (max-width: 992px) {
  .road-as-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .road-as-text {
    flex: none;
    text-align: center;
  }

  .road-as-line {
    margin: 0 auto 40px;
  }

  .road-as-info {
    text-align: center;
  }
}