@charset "UTF-8";

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
/*  background-color: #f3f4f7;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 스크롤바 테스트 */
/* 
html {
    scrollbar-width: normal; scrollbar-color: #777 #555;
}
html::-webkit-scrollbar {
    width: 18px;
}
html::-webkit-scrollbar-thumb {
    background-color: #7775;
}
html:-webkit-scrollbar-thumb:hover {
    background-color: #777;
}
html::-webkit-scrollbar-track {
    background-color: #5555;
} */

/*.vis-dots {position: absolute; right: 360px; bottom: -570px; z-index: 5000;}*/
/*.vis-dots li {display: inline-block; margin: 0 6px;}*/
/*.vis-dots li button {text-indent: -9999px; display: block; width: 10px; height: 10px; background: #ffffff; border-radius: 50%; border: none;}*/
/*.vis-dots li.slick-active button {background: #005baa;}*/
/*.vis-slide {width: 100%;}*/
/*.vis-slide .contents {min-width: 1424px; display: block; position: relative; height: 100%;}*/
/*.vis-slide h2 {color: #ffffff; font-size: 35px; font-weight:500; letter-spacing: -0.05em; line-height: 47px; position: absolute; right: 360px; top: 310px;}*/


.radio-option input,
.radio-option select,
.radio-option textarea,
.form-group input,
.checkbox-option input,
.radio-option button {
  all: revert; /* 브라우저 기본 스타일로 복구 */
}



/* Container */
.container2 {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 73px;
}

/* Visually Hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #bcbcbc;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 100px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1534px;
  margin: 0 auto;
  height: 100%;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.header-navigation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  height: 80px;
  justify-content: space-between;
  margin-left: auto;
}

.header-top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 14px;
  gap: 74px;
}

.header-menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header-menu a {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-menu a:hover {
  color: #007bf2;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.language-selector:hover {
  background-color: #f8f9fa;
}

.language-selector span {
  font-size: 12px;
  color: #333;
  font-weight: 500;
}

.dropdown-arrow {
  width: 8px;
  height: 6px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.language-selector.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Language List 드롭다운 스타일 */
.language-list {
  position: absolute;
  top: 60px;
  left: 50%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 80px;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) translateX(700px);
  transition: all 0.3s ease;
}

.language-list.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(700px);
}

.language-list li {
  margin: 0;
  padding: 0;
}

.language-list li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.language-list li:last-child a {
  border-bottom: none;
}

.language-list li a:hover {
  color: #007bf2;
}

.dropdown-arrow {
  width: 8px;
  height: 6px;
  opacity: 0.7;
}

.header-main-nav {
/*  height: 20px;*/
}

.header-main-nav ul {
  display: flex;
  list-style: none;
  gap: 55px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.header-main-nav ul.depth2 {
  gap: 4px;
}

.header-main-nav a {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* GNB 메뉴 스타일 */
.gnb {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  position: relative;
}

.gnb > li {
  position: relative;
}

.gnb > li > a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.gnb > li > a:hover {
  color: #007bf2;
}

/* Depth2 메뉴 스타일 */
.depth2 {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 94px;
  z-index: 1000;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  display: flex;
  flex-direction: column;
}

.depth2 li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.depth2 li a {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  box-sizing: border-box;
}

.depth2 li:last-child a {
  border-bottom: none;
}

.depth2 li a:hover {
  color: #007bf2;
}

/* 모든 depth2 메뉴가 보이도록 하는 컨테이너 */
.gnb:hover .depth2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: auto;
}

/* GNB 전체 배경 박스 (::after 사용) */
.gnb::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 375px;
  right: -60px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
  height: 0;
  overflow: hidden;
}

/* GNB hover 시 배경 박스 표시 */
.gnb:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: 370px; /* 충분한 높이 설정 */
}

/* 각 메뉴별 depth2 높이 설정 */
.gnb > li:nth-child(1) .depth2 {
  height: 200px; /* 병원소개 - 4개 메뉴 */
}

.gnb > li:nth-child(2) .depth2 {
  height: 280px; /* 의료진 - 7개 메뉴 */
}

.gnb > li:nth-child(3) .depth2 {
  height: 160px; /* 진료안내 - 4개 메뉴 */
}

.gnb > li:nth-child(4) .depth2 {
  height: 160px; /* 검진센터 - 4개 메뉴 */
}

.gnb > li:nth-child(5) .depth2 {
  height: 120px; /* 인공신장센터 - 3개 메뉴 */
}

.gnb > li:nth-child(6) .depth2 {
  height: 80px; /* 뇌신경센터 - 2개 메뉴 */
}

.gnb > li:nth-child(7) .depth2 {
  height: 200px; /* 나은정보통 - 5개 메뉴 */
}

.gnb > li:nth-child(8) .depth2 {
  height: 160px; /* 고객센터 - 4개 메뉴 */
}

/* Depth2 메뉴 배경 투명화 (::after 배경과 통합) */
.depth2 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Depth2 메뉴 아이템 스타일 조정 */
.depth2 li a {
  border-bottom: 1px solid #f0f0f0;
  margin: 0;
  border-radius: 4px;
}

.depth2 li:first-child a {
  margin-top: 10px;
}

.depth2 li:last-child a {
  margin-bottom: 10px;
  border-bottom: none;
}

/* 활성화된 depth2 메뉴 스타일 */
.depth2.active {
  border-color: #007bf2;
  box-shadow: 0 6px 20px rgba(0, 123, 242, 0.15);
}

.depth2.active li a {
  color: #333;
  font-weight: 500;
}

.depth2.active li a:hover {
  color: #007bf2;
}

.header-main-nav a:hover {
  color: #007bf2;
}

/* Main Banner */
.main-banner {
  position: relative;
  height: 832px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.banner-slider {
  position: relative;
  height: 100%;
}

.banner-slide {
  position: relative;
  width: 100%;
  height: 832px;
  background-color: #fff;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 100%;
  z-index: 1;
  transform: translateX(-50%);
}

.banner-bg img {
  max-width: 1920px;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

/* Slick Carousel 커스터마이징 */
.slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 10px;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
}

.slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
  line-height: 0;
  padding: 0;
}

.slick-dots li.slick-active button {
  background: white;
  border-color: white;
}

.slick-dots li button:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.3);
}

/* Slick 화살표 숨기기 */
.slick-prev,
.slick-next {
/*  display: none !important;*/
}

.banner-content {
  position: relative;
  width: 1534px;
  height: 820px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.banner-text {
  max-width: 800px;
  margin-bottom: 60px;
  color: white;
  z-index: 3;
}

.banner-text h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.4;
  color: white;
}

/* .banner-text h1.pretendard {
  font-family: "Pretendard Variable", "Pretendard", -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
  font-weight: 300 !important;
  font-size: 50px !important;
} */

.banner-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
  color: white;
}

/* .banner-text h2.pretendard {
  font-family: "Pretendard Variable", "Pretendard", -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
  font-weight: 500 !important;
  font-size: 50px !important;
} */

.banner-features {
  display: flex;
  gap: 20px;
  max-width: 610px;
}

.feature-card {
  width: 190px;
  height: 190px;
  background: rgba(0, 123, 242, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 123, 242, 0.7);
}

.feature-icon {
  width: 80px;
  height: 71px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.feature-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.3;
}

/* Quick Menu */
.quick-menu {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  background: rgba(0, 123, 242, 0.8);
}

/* 1920px 이상일 때만 중앙 정렬 */
@media (min-width: 1920px) {
  .quick-menu {
    position: absolute;
    left: 50%;
    right: auto;
    transform: translateY(-50%) translateX(800px);
  }
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* padding: 20px 10px; */
  height: 113px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.quick-icon {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1); /* 아이콘을 흰색으로 변경 */
}

.quick-item span {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/* Quick Reservation */
.quick-reservation {
position: fixed; 
bottom: 0;
background: #29292d;
padding: 12px 0;
z-index:9999;
width:100%
}

.reservation-form {
  max-width: 1200px;
  margin: 0 auto;
}

.reservation-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 10px;
}

.reservation-type {
  display: flex;
  gap: 7px;
}

.reservation-form h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #007bf2;
}

.form-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: flex;
  color: white;
  font-size: 12px;
  font-weight: 500;
  /* margin-bottom: 8px; */
}

.form-group input {
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #555;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 14px;
}

/* Placeholder 스타일 */
.form-group input::placeholder {
  color: #999;
  opacity: 1;
  font-size: 14px;
}

.form-group input:focus::placeholder {
  color: #666;
  opacity: 0.7;
}

/* 빈 값일 때 placeholder 표시 */
.form-group input:invalid {
  color: #999;
}

.form-group input:invalid::placeholder {
  color: #999;
  opacity: 1;
}

/* 빈 값일 때 placeholder 강제 표시 */
.form-group input:not(:focus):invalid {
  color: #999;
}

.form-group input:not(:focus):invalid::placeholder {
  color: #999;
  opacity: 1;
}

/* 값이 있을 때는 일반 텍스트 색상 */
.form-group input:not(:placeholder-shown) {
  color: white;
}

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

.btn-reserve {
  background: #007bf2;
  width: 143px;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-reserve:hover {
  background: #0056b3;
}

.privacy-notice {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  font-size: 14px;
}
.privacy-notice p {
  font-size: 15px;
  font-weight: 500;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #999;
  font-weight: 500;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.checkbox-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #007bf2;
}

/* Centers Section */
.centers-section {
  padding: 100px 0 0;
  background: white;
  height: 1074px;
  scroll-margin-top: 166px; /* 헤더 높이만큼 오프셋 */
}

.centers-section > .container2 {
  max-width: 1920px;
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
}

.centers-section .section-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 100px;
}

.doctors-section .section-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 100px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
}

.section-english {
  font-size: 16px;
  color: #007bf2;
  font-weight: 500;
}

.centers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
/*  max-width: 1920px;*/
  margin: 0;
}

.center-card {
  position: relative;
  height: 716px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.center-card:hover {
  transform: scale(1.02);
}

.center-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.center-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

.center-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.center-content p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Doctors Section */
.doctors-section {
  padding: 100px 0 0;
  background: white;
  scroll-margin-top: 166px; /* 헤더 높이만큼 오프셋 */
}

.doctors-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 12px 24px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 52px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  background: #e9ecef;
}

.tab-button.active {
  background: #007bf2;
  color: white;
  border-color: #007bf2;
}

.doctor-profile {
  display: grid;
  grid-template-columns: 627px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1534px;
  padding-left: 176px;
  margin: 0 auto;
}

.doctor-photo {
  position: relative;
  width: 627px;
  height: 514px;
  overflow: hidden;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.doctor-info {
  padding: 20px 0;
}

.doctor-name {
  font-size: 60px;
  font-weight: 700;
  color: #dbdbdb;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.doctor-title-area {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.doctor-title {
  font-size: 50px;
  font-weight: 600;
  color: #333;
}

.doctor-specialty {
  font-size: 30px;
  color: #666;
  font-weight: 400;
}

.doctor-expertise h5 {
  font-size: 22px;
  color: #666;
  font-weight: 600;
  margin-bottom: 10px;
}

.doctor-expertise p {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin-bottom: 76px;
}

.btn-detail {
  background: #fff;
  color: #666;
  width: 205px;
  height: 54px;
  border: 1px solid #747474;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-detail:hover {
  background: #0056b3;
}

/* Doctors Slider */
.doctors-slider {
  position: relative;
  width: 100%;
  height: 514px;
}

.doctor-slide {
  width: 100%;
  height: 100%;
}

.doctor-slide .doctor-profile {
  display: flex;
  align-items: center;
  gap: 60px;
  height: 100%;
}

/* Slick Carousel 커스터마이징 */
.doctors-slider .slick-slide {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.doctors-slider .slick-slide.slick-active {
  opacity: 1;
}

.doctors-slider .slick-slide.slick-current {
  opacity: 1;
}

/* === Slick 좌우 화살표 표시 전용 추가 CSS === */

/* slick 기본 가상요소(‹ ›) 숨김 – 우리는 SVG 아이콘을 사용함 */
.doctors-slider .slick-prev:before,
.doctors-slider .slick-next:before {
  display: none;
  content: none;
}

/* 화살표 버튼 배치/모양 */
.doctors-slider {
  position: relative; /* 버튼의 absolute 기준 */
}

.doctors-slider .slick-prev,
.doctors-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9999px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  z-index: 20;                   /* 슬라이드 콘텐츠 위로 */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 좌/우 위치 */
.doctors-slider .slick-prev { left: 8px; }
.doctors-slider .slick-next { right: 8px; }

/* 호버/포커스 */
.doctors-slider .slick-prev:hover,
.doctors-slider .slick-next:hover,
.doctors-slider .slick-prev:focus,
.doctors-slider .slick-next:focus {
  background: rgba(0,0,0,0.7);
  outline: none;
}

/* 절대배치된 인물 이미지가 버튼을 덮는 경우 대응 */
.doctor-photo { position: relative; }
.doctor-photo img[style*="position: absolute"] {
  pointer-events: none; /* 버튼 클릭 차단 방지 */
}

/* 모바일에서 버튼 크기/여백 조정 (선택) */
@media (max-width: 991px) {
  .doctors-slider .slick-prev,
  .doctors-slider .slick-next {
    width: 40px;
    height: 40px;
  }
  .doctors-slider .slick-prev { left: 4px; }
  .doctors-slider .slick-next { right: 4px; }
}




/* Floors Section */
.floors-section {
  position: relative;
  padding: 0;
  background: #fff;
  overflow: hidden;
  height: 1076px;
  scroll-margin-top: 166px; /* 헤더 높이만큼 오프셋 */
}

.floors-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 754px;
  z-index: 1;
  background-color: #f4f4f7;
}

.floors-background img {
  width: 1920px;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.6s ease;
}

/* 타이틀 영역 */
.floors-title-section {
  position: relative;
  z-index: 2;
  padding: 100px 0 0;
  text-align: center;
}

.floors-title-section .section-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

/* 컨텐츠 영역 */
.floors-content-section {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 70px;
  height: 754px;
}

.floor-title-area {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #007bf2;
  margin-left: -4px;
  margin-top: 0;
  position: absolute;
  left: 0;
  right: calc(50% + 370px);
}

.floor-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-align: right;
  padding-right: 30px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floors-list-container {
  position: absolute;
  left: 50%;
  transform: translatex(50%);
  width: 470px;
  height: 100%;
  background-color: rgba(238, 238, 238, 0.7); 
}

.floors-list {
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 31px;
  position: relative;
}

.floor-number2::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px; /* floor-number 아래에서 시작 */
  width: 2px;
  height: 49px; /* gap과 동일한 높이 */
  background: #8fc8ff;
  transform: translateX(-50%);
  z-index: 1;
}

/* 층별안내 리스트의 세로 라인 - 각 floor-number마다 개별 구현 */
.floor-item.active .floor-number2::before {
  top: 28px; /* floor-number 아래에서 시작 */
  height: 43px;
}

/* 마지막 floor-number는 라인 없음 */
.floor-item:last-child .floor-number2::before {
  display: none;
}

.floor-item {
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  margin-bottom: 0;
  height: auto;
  min-height: 20px;
  position: relative;
  z-index: 2;
}

.floor-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.floor-item:hover {
  background: none;
  transform: none;
}

.floor-item.active {
  background: none;
  border-left: none;
  transform: none;
}

.floor-number2 {
  width: 28px;
  height: 28px;
  background: url("/img/main/06.floors/unselected.png") no-repeat center;
  background-size: 10px 10px;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.floor-item.active .floor-number2 {
  background: url("/img/main/06.floors/selected.png") no-repeat center;
  background-size: contain;
}

.floor-info h4 {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

/* Location Section */
.location-section {
  padding: 100px 0;
  background: #00164b;
  color: white;
  scroll-margin-top: 166px; /* 헤더 높이만큼 오프셋 */
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 1534px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.location-map {
  width: 852px;
  height: 512px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 512px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.pin-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pin-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.address-info p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 40px;
}

.contact-item {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 33px;
}

.contact-label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}

.contact-value {
  font-size: 26px;
  font-weight: 600;
  color: white;
}

.hours-detail p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  background: #29292da3;
  color: white;
  padding: 60px 0 40px;
  border: none;   
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 30px;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 13px;
  color: white;
  font-weight: 500;
}

.footer-info {
  flex: 1;
  margin: 0 40px;
}

.footer-info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.footer-logo img {
  height: 35px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.section-title {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
}

.section-subtitle {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
}

.section-english {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  font-weight: 500;
}

/* Pretendard 폰트를 사용할 특정 구역들 */
.pretendard {
  font-family: "Pretendard Variable", "Pretendard", -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
}

/* 헤더에 Pretendard 적용 */
.site-header {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

/* 메인 배너에 Pretendard 적용 */
.main-banner {
  font-family: "Pretendard", "Noto Sans KR", sans-serif !important;
}

/* 센터 안내에 Pretendard 적용 */
.centers-section {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

/* 의료진 소개에 Pretendard 적용 */
.doctors-section {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

/* 층별 안내에 Pretendard 적용 */
.floors-section {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

/* 오시는 길에 Pretendard 적용 */
.location-section {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

/* 푸터에 Pretendard 적용 */
.site-footer {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

/* PC 전용 디자인 - 반응형 제거 */
