@charset "utf-8";

.mo_only {
  display: none;
}

#container {
  margin: 80px 0 20px;
}

/* 메인 비주얼 */
#main-visual-section .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #ed1c24;
}

#main-visual-section .swiper-button-prev,
#main-visual-section .swiper-rtl .swiper-button-next {
  left: 4%;
  background-color: rgba(255,255,255,0.5);
  padding: 3%;
}

#main-visual-section .swiper-button-next,
#main-visual-section .swiper-rtl .swiper-button-prev {
  right: 4%;
  background-color: rgba(255,255,255,0.5);
  padding: 3%;
}

#main-visual-section .swiper-button-next,
#main-visual-section .swiper-button-prev {
  color: #131e5a;
}

/* 센터 소개 */
#center-intro-section {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0;
}

.intro-top {
  padding: 60px 0;
}

.intro_title {
  text-align: center;
  margin: 20px 0;
  font-weight: 900;
  font-size: 30px;
}

.intro_top_cont p {
  letter-spacing: -1px;
  margin: 10px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
}

.intro_cont {
  text-align: center;
  margin: 30px 0;
}

.intro_subtitle {
  font-size: 25px;
  font-weight: 700;
  padding: 15px 0 30px;
}

.intro_subcon {
  font-size: 14px;
}

/* 비만 관련 롤링 배너 */
.intro_img_wrap {
  padding: 40px 0;
}

.intro_img {
  padding-bottom: 70px;
}

.intro_img .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid #38458b;
  width: 15px;
  height: 15px;
  margin: 0 6px !important;
}

.intro_img .swiper-pagination-bullet-active {
  background-color: #38458b;
}

/* 센터 메뉴 버튼 */
#center-submenu-section {
  padding: 60px 0 30px;
}

.submenu_btn_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}

.submenu_btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 25px;
  background-color: #2e3d85;
  /* 병원 메인 네이비 */
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 호버 시: 살짝 위로 뜨면서 색상 변경 */
.submenu_btn a:hover {
  background-color: #1a2a6c;
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(26, 42, 108, 0.2);
}

.btn_info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn_info i {
  font-size: 22px;
  opacity: 0.9;
}

.btn_info span {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.arrow_icon {
  font-size: 14px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.submenu_btn a:hover .arrow_icon {
  opacity: 1;
  transform: translateX(6px);
}
/* 마우스 호버 시 인터랙션 */
.submenu_btn a:hover {
  background-color: #1a2a6c;
  transform: translateY(-5px);
}

.arrow_icon {
  transition: transform 0.3s ease;
}

.submenu_btn a:hover .arrow_icon {
  transform: translateX(5px);
}

/* 의료진 소개 */
#doctor-impact-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.doctor_profile {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.doctor_who {
  position: relative;
  padding-bottom: 40px;
  font-size: 25px;
  font-weight: 800;
  color: #131e5a;
  text-align: center;
  letter-spacing: -1px;
}

.doctor_who::after {
  content: '';
  display: block;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 3px;
  background-color: #131e5a;
}

.doctor_img {
  overflow: hidden;
}

.doctor_img:nth-child(2)>img {
  transition: all 300ms linear;
}

.doctor_img:nth-child(2) > img:hover {
  transform: scale(1.2);
}

.impact_grid_layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 60px;
}

.impact_card_item {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8faff;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.impact_card_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 86, 179, 0.1);
}

.impact_value {
  font-size: 48px;
  font-weight: 800;
  color: #131e5a;
}

.academic_summary_box {
  text-align: center;
  border-top: 1px solid #eee;
  padding: 50px 0;
}

.summary_text {
  padding-bottom: 40px;
}

.btn_link_more {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #ced5ff;
  color: #000;
  transition: all 350ms linear;
}

.btn_link_more:hover {
  background-color: #131e5a;
  color: #fff;
}

/* 모달 기본 스타일 */
.doctor_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.doctor_modal_content {
  position: relative;
  width: 95%;
  max-width: 800px;
  max-height: 90vh;
  background: #fff;
  border-radius: 15px;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #333;
  line-height: 1;
  transition: 0.3s;
}

.modal_close:hover {
  transform: rotate(90deg);
  color: #e74c3c;
}

/* 약력 내용 레이아웃 */
.modal_bio_wrap {
  text-align: center;
}

.modal_bio_img {
  max-width: 90%;
  margin: 0 auto 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}

.modal_bio_img img {
  width: 100%;
  display: block;
}

.bio_details {
  text-align: left;
  border-top: 2px solid #2c3e50;
  padding-top: 30px;
  letter-spacing: -1px;
}

.bio_details h5 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.bio_header {
  padding: 20px 0;
}

 .bio_header h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 2;
 }

.bio_list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.bio_list li {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
}

.bio_list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

/* 글로벌 네트워크 */
#global-network-section {
  padding: 80px 0;
  background-color: #fcfdfe;
}

.section_title_group {
  text-align: center;
}

.section_title_group .sub_label {
  font-size: 20px;
}

.section_title_group .main_h3 {
  font-size: 33px;
  line-height: 1.2;
  padding: 20px 0;
}

.network_grid_layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 90%;
  max-width: 1400px;
  margin: 90px auto 0;
}

.network_item_card {
  background-color: #fff;
  padding: 40px 30px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.network_item_card:hover {
  border-color: #2e3d85;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.network_grid_layout .img_logo {
  width: auto;
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
  margin-bottom: 25px;
}

.network_item_card:hover .img_logo {
  filter: grayscale(0%);
  opacity: 1;
}

.loc_tag {
  font-size: 12px;
  color: #2e3d85;
  font-weight: 700;
  text-transform: uppercase;
}

/*스크롤 이벤트 */
.scroll_reveal,
.scroll_reveal_item {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.scroll_reveal_item {
  opacity: 1;
  transform: translateY(0px);
}

.scroll_reveal.active,
.scroll_reveal_item.active {
  opacity: 1;
  transform: translateY(0);
}


/* 특징 */
#medical-features-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
}

.feature_row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 150px;
}

.feature_row:last-child {
  margin-bottom: 0;
}

.feature_row.row_reverse {
  flex-direction: row-reverse;
}

.feature_image_box {
  flex: 1;
  position: relative;
}

.feature_image_box img {
  width: 100%;
  border-radius: 50% 50% 0 50%;
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.05);
}

.case_badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #0084a9;
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 132, 169, 0.3);
  line-height: 1.2;
}

.feature_text_box {
  flex: 1;
}

.title_tag {
  color: #2e3d85;
  font-weight: 700;
  border-bottom: 2px solid #2e3d85;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
}

.feature_main_title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.feature_sub_title {
  font-size: 24px;
  color: #2e3d85;
  font-weight: 700;
  margin-bottom: 25px;
}

.feature_desc {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  word-break: keep_all;
}

.feature_bullet_list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.feature_bullet_list li {
  font-size: 17px;
  color: #444;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature_bullet_list li i {
  color: #2e3d85;
  font-size: 14px;
}