@charset "utf-8";

/* common*/
@import url("common.css");
body { overflow-x: hidden; margin-top:100px; }
.nav a { color: #000; }
.footer { margin-top: 200px; }
.desktop-lang-dropdown .lang-btn { color: #000; }
.desktop-lang-dropdown .lang-btn .arrow { color: #000; }
.hamburger span { background: #000; }
.mobile-nav { background: #000; }
.logo img.logo-white { opacity: 0; }
.logo img.logo-original { opacity: 1; }

/* sub-banner */
.subbanner {
  position: relative;
  width: 100vw;
  height: 635px;
  min-height: 385x;
  overflow: hidden;
  background: #fff;
}
.subbanner-content {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
  color: #111;
  width: 1200px;
  max-width: 100vw;
  height: 385px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  will-change: transform;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.subbanner-img {
  top: 385px;
  left: 0;
  width: 100vw;
  height: 385px;
  transition: height 0.4s cubic-bezier(.4,0,.2,1), top 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.subbanner-img.sticky {
  position: sticky;
  top: 0;
}
.subbanner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.subbanner .subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a5da8;
  margin-bottom: 5px;
}
.subbanner .title {
  font-size: 3.25rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}
.subbanner.shrink {
  height: 0;
  min-height: 0;
  transition: height 0.5s cubic-bezier(.4,0,.2,1);
}
.subbanner.shrink .subbanner-bg,
.subbanner.shrink .subbanner-content {
  opacity: 0;
  transform: translateY(-100px) scale(0.95);
  pointer-events: none;
}

/* service */
.why-gkmc { background: #fff; padding: 200px 0;}
.section-title .main { font-size: 3.75rem; font-weight: 700; text-align: center; }
.section-title .desc { font-size: 2.125rem; text-align: center; margin-bottom: 120px;}
.review-main {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 675px;
  margin: 0 auto;
  overflow: hidden;
}
.review-main iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.play-btn { 
  position: absolute; 
  left: 50%; 
  top: 50%; 
  width: 64px; 
  height: 64px; 
  background: #fff url('../play.svg') center/50% no-repeat; 
  border-radius: 50%; 
  transform: translate(-50%, -50%); 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
}
.why-points {
  display: flex; 
  flex-direction: column; 
  gap: 200px; 
  width: 100vw; 
  max-width: 100vw; 
  margin: 0 auto;
  margin-top: 200px;  
}
.point {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  min-height: 400px;
}
.point > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 80px;
  align-self: flex-start;
}
.point-title { color: #1a5da8; font-size: 1.875rem; min-width: 120px; }
.point-main { font-size: 50px; font-weight: 700;}
.point-desc { color: #666; font-size: 1.25rem; width:614px;}
.point-img { width: 586px; height: 546px; border-radius: 12px; object-fit: cover; }

/* 배경 스타일 */
.point::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 273px; /* 이미지 높이(546px)의 50% */
  background: #f5f5f7;
  z-index: 0;
}
.why-points .point:nth-child(1)::before {
  left: 18%;
  right: 0;
}
.why-points .point:nth-child(2)::before {
  left: 0;
  right: 0;
}
.why-points .point:nth-child(3)::before {
  left: 0;
  right: 26%;
}
.why-points .point:nth-child(2) > div {
  align-items: flex-end;
  text-align: right;
}

.point > * { position: relative; z-index: 1; }

.our-service {
  margin-top: 150px;
  text-align: center;
}

.our-service .section-title .main {
  font-size: 3.75rem;
  font-weight: 700;
}
.our-service .section-title .desc {
  font-size: 22px;
  color: #222;
  margin-bottom: 120px;
}

.service-cards.slider {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}

.slider-track {
  display: flex;
  width: 100%;
  margin: 0;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.service-card {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: transparent;
  border-radius: 0;
  margin: 0;
  padding: 24px;
  box-sizing: border-box;
  height: 100%;
}

.service-card-inner {
  width: 1200px;
  height: 617px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.09), 0 0.75px 3px rgba(0,0,0,0.05), 0 0 0 1px rgba(30, 136, 229, 0.02);
  margin: 0 auto;
}

.service-card .service-detail-text {
  flex: 1 1 0;
  width: 510px;
  padding: 62px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height:150%;
}

.service-card .service-step {
  font-weight: 600;
  color: #1976d2;
  background: #e3f0ff;
  display: inline-block;
  padding: 7px 20px;
  border-radius: 8px;
  font-size: 1.25rem;
  margin-bottom: 24px;
  text-align: left;
}

.service-card .service-title {
  font-size: 2rem;
  line-height: 130%;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111;
  text-align: left;
}

.service-card .service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.service-card .service-list li {
  font-size: 1.375rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  line-height:120%;
}

.service-card .service-list li:before {
  content: '\2713';
  color: #4da6ff;
  position: absolute;
  left: 0;
  font-size: 18px;
  top: 1px;
}

.service-card .service-detail-img {
  width: 650x;
  height: 617px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
  background: #eee;
}

.service-card .service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 18px 18px 0;
}

.service-step-pagination-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  width: 100%;
  justify-content: flex-start;
}
.slider-pagination {
  position: absolute;
  bottom: 80px;
  width: 120px;
  letter-spacing: 3px;  
}

.slider-pagination .slider-arrow {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #000;
  cursor: pointer;
  transition: color 0.2s;
}
.slider-pagination .slider-arrow:hover {
  color: #1976d2;
}
.slider-pagination .slider-page {
  display: inline;
  color: #222;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 0 10px;
  text-align: center;
}


/* hospital */
.hospital-info {
	  width: 1192px;
    margin: 0 auto;
    padding: 200px 0 60px 0;
    text-align: center;
}
.hospital-info h2 {
    font-size: 3.75rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.hospital-info p {
    color: #444;
    font-size: 2.125rem;
    margin-bottom: 120px;
}
.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 120px;
}
.category-buttons button {
    background: none;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.25rem;
	  font-weight:600;
    color: #666;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.category-buttons button.active,
.category-buttons button:hover {
    background: #1a5da8;
    color: #fff;
    border: 1px solid #1a5da8;
}

.hospital-grid-section {
    width: 1192px;
    margin: 0 auto 60px auto;
    position: relative;
    min-height: 200px;
}
.hospital-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 1192px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    align-content: start;
    justify-content: start;
}

.all-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 32px 0;
    text-align: left;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.all-title.updating {
    opacity: 0;
    transform: translateY(-10px);
}

.hospital-logo {
    background: #fff;
    border: 1px solid #eee;
    width: 282px;
    height: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.08s linear, transform 0.08s linear;
    opacity: 1;
    transform: scale(1);
    margin: 0;
}

.hospital-logo.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}


/* review */
.review-info {
	width: 1192px;
    margin: 0 auto;
    padding: 200px 0 0 0;
    text-align: center;
}
.review-info h2 {
    font-size: 3.75rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.review-info p {
    color: #444;
    font-size: 2.125rem;
    margin-bottom: 120px;
}
.stories {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem ;
  text-align: center;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  overflow:hidden;
}

.review {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  margin-bottom: 0.5rem;
}
.review img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  transition:
    transform 0.3s cubic-bezier(0.4,0,0.2,1),
    filter 0.3s cubic-bezier(0.4,0,0.2,1);
}
.review img:hover {
  transform: scale(1.01);
  filter: brightness(1.05);
  z-index: 2;
}
.review-name {
  font-weight: bold;
  font-size: 1.35rem;
  margin: 1.2rem 0 0.2rem 1.2rem;
  text-align: left;
}

.review-desc {
  font-size: 1.08rem;
  color: #222;
  margin: 0 0 1.5rem 1.2rem;
  text-align: left;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  overflow:hidden;
}

.pagination button {
  min-width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #222;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, color 0.15s, border 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination button.active, .pagination button:hover {
  background: #1761a0;
  color: #fff;
  border: 1px solid #1761a0;
}

.pagination button.arrow img {
  width: 24px;
  height: 24px;
  display: block;
}

.pagination button.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
	border:none;
    background: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    box-shadow: none;
    margin: 0 2px;
    padding: 0;
  }

  .pagination button.arrow:hover,
  .pagination button.arrow:focus {
    background: #fff;
  }

  .pagination button.arrow:disabled {
    opacity: 0.3;
    cursor: default;
  }
  
/* contact */
.contact-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

  .row input,
  .row select,
   textarea,
  .file-label {
  flex: 1;
  padding: 28px;
  border: none;
  border-radius: 12px;
  font-family: 'Pretendard', 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #666;
  background: #f5f5f7;
  margin-bottom: 16px;
  box-sizing: border-box;
  text-align: left;
}

.row .full-width {
  flex: 2;
}
.row input:focus,
.row select:focus,
.row input:not(:placeholder-shown),
.row select:not(:placeholder-shown) {
  color: #000;
}

textarea {
  width: 100%;
  min-height: 350px;
  resize: vertical;
}
textarea:focus,
textarea:not(:placeholder-shown) {
  color: #000;
}

.other-input {
  color: #666;
}

.other-input:focus,
.other-input:not(:placeholder-shown) {
  color: #000;
}

input[type="file"] {
  display: none;
}

.file-label {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.file-label .file-icon {
  margin-left: auto;
  height: 22px;
  width: 22px;
  display: block;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  margin-bottom: 48px;
}

.checkbox-row label {
  color: #666;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.checkbox-row label:hover {
  color: #1658a5;
}

.checkbox-row button[type="button"] {
  border-radius: 999px;
  border: 1.5px solid #bbb;
  background: #fff;
  color: #1658a5;
  font-weight: 500;
  padding: 6px 22px;
  font-size: 15px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  outline: none;
  box-shadow: none;
}
.checkbox-row button[type="button"]:hover {
  background: #1658a5;
  color: #fff;
  border-color: #1658a5;
}

.submit-btn {
  width: 100%;
  height: 56px;
  background: #1658a5;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 32px;
  transition: background 0.2s;
  box-shadow: none;
}
.submit-btn:hover {
  background: #11447d;
}

.visit-section {
  max-width: 1200px;
  margin: 200px auto;
  padding: 0 16px;
  text-align: center;
}

.visit-section h2 {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.visit-section p {
  font-size: 2.125rem;
  margin-bottom: 120px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 24px auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.map-container img {
  width: 100%;
  display: block;
}

.map-container iframe {
  width: 100%;
  height: 540px;
  display: block;
}

.info-row {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 1.375rem;
    font-weight: 400;
}
.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.info-row .icon {
    width: 36px;
    height: 36px;
    margin-right: 144px;
  }
.custom-select-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.custom-select {
  position: relative;
  width: 100%;
  font-size: 16px;
}

.custom-select__selected {
  background: #f5f5f7;
  border: none;
  border-radius: 12px;
  padding: 28px;
  cursor: pointer;
  font-size: 1.75rem;
  font-weight: 400;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.custom-select__selected-text {
  text-align: left;
  flex: 1;
}
.custom-select__selected.has-value {
  color: #000;
  text-align: left;
}

.custom-select__selected::after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  border: solid #666;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
}

.custom-select.open .custom-select__selected::after {
  transform: rotate(-135deg);
}

.custom-select__dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #f5f5f7;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  z-index: 10;
  padding: 12px 0 8px 0;
}

.custom-select.open .custom-select__dropdown {
  display: block;
}

.custom-select__search {
  width: 96%;
  margin-left: 2%;
  padding: 10px 0 10px 50px !important;
  border-radius: 8px;
  border: none;
  background: #fff url('/eng/images/contact/search.svg') 12px center no-repeat !important;
  background-size: 18px 18px;
  outline: none;
  box-sizing: border-box;
}

.custom-select__options {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 260px;
  overflow-y: auto;
}

.custom-select__options li {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  gap: 10px;
  padding: 10px 18px;
  cursor: pointer;
  color: #666;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.custom-select__options li.selected,
.custom-select__options li:hover {
  background: #e6f0fa;
  color: #1658a5;
  font-weight: 500;
}

.flag {
  margin-right: 8px;
}

.flag img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  margin-right: 8px;
}
.etc-inner { 
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: #ddd solid 1px;
  min-width: 100%;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  padding: 5%; 
  text-align: left;
  margin-top: 5%;
}
.etc-inner > p { font-size: 1.5rem; }
.p-inner { 
  	width: 1192px;
    margin: 0 auto;
    padding: 100px 0 0 0;
    text-align: left; 
    line-height: 140%;
  }
.p-inner h2 {
    font-size: 3.75rem;
    font-weight: bold;
    margin: 20px 0;
}
.p-text p { font-size: 1rem; padding-top: 1%;}
.p-text .l-mg { margin-left: 20px;}

@media (max-width: 1300px) {

  .subbanner-inner {
    width: 100%;
	overflow: hidden;
  }
  .subbanner-content { width: 100%; max-width: 100vw; left: 50%; transform: translateX(-50%); padding-left: 30px;}
  .subbanner-img { width: 100%; left: 0; transform: none; }
  .review-main {
    max-width: 100%;
  }
  .why-points .point:nth-child(1)::before {
    left: 5%;
  }
  .service-cards.slider {
    max-width: 100%;
  }
  .service-card-inner {
    width: 100%;
  }
}

@media (max-width: 1192px) {
    .hospital-grid-section,
    .hospital-grid {
        width: 910px;
    }
    .hospital-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hospital-logo {
        width: 282px;
    }
}

@media (max-width: 1024px) {
  .why-gkmc{ padding: 60px 20px; }
  .review-info { width: 100%; padding: 60px 20px 0 20px;}
  .review-main { height: 504px;}
  .why-points { width: 94%; max-width: 100%;  margin: 5% 3%; padding-top: 10%;}
  .why-points .point:nth-child(1)::before { left: 0%; }
  .point > div { padding: 0 50px 0 0;}
  .point-title { font-size: 25px; min-width: 100px; }
  .point-main { font-size: 40px;}
  .point-desc { font-size: 20px; width:100%;}
  .point-img { width: 500px; height: 500px;}
  .section-title .desc { margin-bottom: 60px;}
  .our-service .section-title .desc { margin-bottom: 60px;}
  .service-card-inner { height: 487px; }
  .service-card .service-step {font-size: 0.875rem;}
  .service-card .service-title { font-size: 1.5rem; line-height: 110%;}
  .service-card .service-list li {font-size: 1rem; line-height: 100%;}
  .slider-pagination { bottom: 60px;}
  .slider-pagination .slider-arrow {font-size: 0.875rem;}
  .slider-pagination .slider-page {font-size: 0.875rem;}
  .service-card .service-detail-img { width: 512x; height: 487px;}
  .hospital-info { width: 100%; padding: 60px 0 48px 0; }
  .hospital-info p {margin-bottom: 60px;}
  .review-info p { margin-bottom: 60px;}
  .visit-section h2 { font-size: 3rem; }
  .visit-section p { font-size: 1.375rem; margin-bottom: 60px;}
  .category-buttons { margin: 50px 5px 40px 35px; }
  .reviews {
    grid-template-columns: repeat(2, 1fr);
	  gap: 1rem;
  }
  .etc-inner { 
    min-width: 94%;
    box-sizing: border-box;
    margin: 5% 3%;
  }
  .custom-select__selected { font-size: 1.5rem; }
  .custom-select__options li { font-size: 1.5rem;}
  .row input,
  .row select,
   textarea,
  .file-label {
    font-size: 1.5rem;
  }
  .info-row { padding: 18px; font-size: 1.125rem; }
  .info-row .icon { width: 21px; height: 25px; margin-right: 107px;}
}

@media (max-width: 910px) {
   .category-buttons {
      margin: 50px 20px 40px 20px;
      padding: 0 20px;
  }
    .hospital-grid-section,
    .hospital-grid {
        width: 300px;
    }
    .hospital-logo {
        width: 100%;
        height: 68px;
    }
    .category-buttons {
        gap: 10px;
        margin: 30px 0;
    }
    .category-buttons button {
        padding: 8px 20px;
        font-size: 16px;
    }
}

@media (min-width: 901px) {
  .slider-pagination.desktop-only {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0 0 0;
    gap: 8px;
  }
  .service-step-pagination-row {
    display: block;
    margin-bottom: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .service-step {
    text-align: left;
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  header {
    flex-direction: row;
    height: 60px;
    padding: 0 10px;
    align-items: center;
  }
  .logo { width: 100px; height: 40px; }
  nav ul { display: none; }
  .lang { font-size: 14px; }
  .subbanner {
    height: 320px;
    min-height: 320px;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;    
  }
  .subbanner-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .subbanner-content {
    position: relative;
	  overflow-x: hidden;
    height: 160px;
    transform: none;
    left: 0;
	  top: 0;
    background: #fff;
    margin: 0;
  }
  .subbanner-img {
    position: relative;
    width: 100%;
	  height: 160px;
    margin: 0;
    padding: 0;
	  overflow-x: hidden;
  }
  .subbanner-img img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
	  height: 160px;
  }
  .subbanner .subtitle {
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
  }
  .subbanner .title {
    display: block;
    font-size: 24px;
    margin-bottom: 0;
  }
  .section-title .main { font-size: 32px; text-align: center; }
  .section-title .desc { font-size: 16px; text-align: center; margin-bottom: 60px;}
  .review-main { height: 240px;}
  .why-points {
    width: 100%;
    max-width: 100%;
    background: #fff;
    gap: 20px;
    margin: 50px 0 0 0;
    padding: 0;
	  overflow-x: hidden;
  }
  .point {
    width: 100%;
	  background: #fff;
    box-shadow: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 0;
    padding-bottom: 15px;
    margin-bottom: 0;
    position: static;
  }
  .point::before {
    display: none;
    background: none;
    content: none;
  }
  .point > div {
    padding: 0 0 16px 0;
    min-height: 0;
  }
  .point-img {
    width: 100%;
    height: 300px;
    margin-bottom: 16px;
  }
  .point-title {
    font-size: 12px;
    min-width: 0;
    margin-bottom: 4px;
  }
  .point-main {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .point-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 0;
	width:100%;
  }
  .our-service {
    padding: 0 20px;
  }
  .our-service .section-title .main { font-size: 32px; }
  .our-service .section-title .desc { font-size: 16px; width:70%; margin:0 auto 60px;}
  .service-cards.slider { max-width: 100%; padding: 0; }
  .service-card { padding: 12px 4px; height: 100%; }
  .service-card-inner { 
    width: 100%;
	  max-width: 100%;
    height: auto;
    flex-direction: column;
    border-radius: 12px;
	  overflow-x: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09), 0 0.75px 3px rgba(0,0,0,0.05), 0 0 0 1px rgba(30, 136, 229, 0.02);
  }
  .service-card .service-detail-text { 
    width: 100%;
    padding: 20px;
    flex: 0 0 auto;
  }
  .service-card .service-detail-img,
  .service-card .service-detail-img img {
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: none;
    border-radius: 0;
  }
  .service-card .service-detail-img img { 
    width: 100%; 
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0
  }
  .why-points .point:nth-child(2) {
    flex-direction: column-reverse;
  }
  .our-service .why-points,
  .our-service .point {
    padding-left: 20px;
    padding-right: 20px;
  }
  .why-points .point:last-child {
    padding-bottom: 16px;
  }
  .our-service {
    margin-top: 0;
  }
  .service-step-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    width: 100%;
  }
  .service-step {
    margin-bottom: 0;
    font-size: 14px;
  }
  .slider-pagination.mobile-only {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 8px 0 0 0;
    gap: 8px;
  }
  .slider-pagination.desktop-only {
    display: none;
  }
  .slider-pagination .slider-page {
    font-size: 14px;
    min-width: 24px;
  }
  .service-step-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    width: 100%;
  }
  .service-step {
    margin-bottom: 0;
  }
  .slider-pagination {
    top: 35px; 
    right: 20px;
    bottom: auto;
  }
  .hospital-info h2 {
    font-size: 30px;
    width: 80%;
    margin: 30px auto 0 auto;
  }
  .hospital-info p {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .category-buttons {
    margin: 50px 20px 40px 20px;
  }
  .hospital-grid-section {
    width: 90%;
  }
  .hospital-grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px 20px 0;
  }
  .hospital-logo {
    height: auto;
    padding: 10px;
  }
  .review-info h2 {
    font-size: 30px;
    width: 100%;
    margin: 30px auto 0 auto;
  }
  .review-info p {
    font-size: 18px;
  }
  .visit-section {
    margin-top: 100px;
  }
  .visit-section h2 {
    font-size: 30px;
    width: 100%;
    margin: 30px auto 0 auto;
  }
 .visit-section p {
    font-size: 18px;
  }
  .stories {
	  width: 96%;
	  max-width: 100%;
	  margin: 0 auto;
	 padding: 1rem 0 5rem 0;
	}
  .review img {
      height: 175px;
  }
  .custom-select__options li {
  font-size: 0.875rem;
  }
  .flag img {
  width: 20px;
  height: 20px;
  }
  .row input,
  .row select,
   textarea,
  .file-label, 
  .custom-select__selected {
    font-size: 0.875rem;
    font-weight: 400;
    padding: 16px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 800px) {
  .contact-form {
    max-width: 98vw;
    padding: 0 4vw;
  }
  .row {
    flex-direction: column;
    gap: 8px;
  }
  .map-container {
    max-width: 98vw;
  }
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 600px) {
  body {
    margin-top: 60px !important;
  }
  .header {
    height: 60px;
    padding: 0 16px;
    display: flex;
    align-items: center;
  }

  .logo {
    width: 140px;
    height: 56px;
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 100%;
    width: auto;
  }
  .subbanner-content {
    padding: 15px 0;
    animation: none;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
  }
  .subbanner-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
    animation: none;
  }
  .subbanner-content p {
    font-size: 14px;
    margin-bottom: 8px;
    animation: none;
  }
  .point-desc {
    font-size: 15px;
  }
  .service-card { padding: 6px 2px; height: 100%; }
  .service-card-inner { 
    border-radius: 8px;
    height: 100%;
    display: flex;
  }
  .service-card .service-title { 
    font-size: 1.375rem;    
  }
  .service-card .service-list li { 
    font-size: 0.875rem;
    margin-bottom: 8px;
  }
  .why-points .point:nth-child(2) > div {
    width: 100% !important;
    text-align: right !important;
    align-items: flex-end !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
  .point-img {
    width: 100%;
    max-width: 100%;
  }
  .hospital-grid-section,
  .hospital-grid {
    width: 100%;
    padding: 0 10px;
  }
  .hospital-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .hospital-logo {
    height: 60px;
    padding: 8px;
  }
  .hospital-info h2 {
	font-size: 25px;
  }
  .hospital-info p {
    font-size: 15px;
  }

  .category-buttons {
    position: relative;
    padding: 0 8px;
	  gap: 8px;
    margin: 20px 0 0 0;
  }
  .category-buttons button {
    margin-bottom: 0;
	padding: 6px 16px;
    font-size: 14px;
  }
  .category-buttons button:not(:nth-child(-n+4)) {
    display: none;
  }
  .category-buttons .category-ellipsis {
    background: #fff;
    color: #666;
    border: 1px solid #eee;
    cursor: default;
    font-weight: 700;
    margin-left: 4px;
    margin-right: 4px;
    min-width: 40px;
  }
  .category-buttons .category-more {
    color: #1a5da8;
    background: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    margin-left: 4px;
    min-width: 48px;
    padding: 0 8px;
  }
  .category-buttons .category-more-list {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    background: #fff;
    padding: 0 10px;
    position: absolute;
    left: 0; right: 0;
    z-index: 10;
    top: 38px;
  }
  .category-buttons.show-more .category-more-list {
    display: flex;
  }
  .category-buttons.show-more button:not(:nth-child(-n+4)) {
    display: inline-block;
  }
  .category-buttons.show-more .category-ellipsis,
  .category-buttons.show-more .category-more {
    display: none !important;
  }
  .all-title {
    font-size: 25px;
    margin: 0 0 20px 10px;
    text-align: left;
  }
  .container {
    width: 98%;
  }
  .review-info h2 {
    font-size: 25px;
	}
  .review-info p {
		font-size: 15px;
	}
	.contact-form {
    max-width: 100vw;
    padding: 0 5vw;
  }
  .file-label {
    min-height: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .file-label .file-icon {
    width: 18px;
    height: 18px;
    margin-left: 0;
  }
  .row input:focus,
  .row select:focus,
  textarea:focus,
  .row input:not(:placeholder-shown),
  .row select:not(:placeholder-shown),
  textarea:not(:placeholder-shown) {
    color: #000;
  }
  .submit-btn {
    font-size: 17px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 36px;
  }
  .checkbox-row {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .checkbox-row button[type="button"] {
    font-size: 12px;
    padding: 4px 10px;
    margin-left: 8px;
    border-radius: 999px;
    height: 32px;
  }
  .map-container {
    max-width: 100vw;
    margin: 0 auto 24px auto;
    border-radius: 12px;
  }
  .map-container iframe {
    height: 220px;
    border-radius: 12px;
  }
  .visit-section {
    padding: 0 5vw;
    margin-bottom: 32px;
  }
  .visit-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.2em;
    font-weight: bold;
  }
  .visit-section p {
    font-size: 1rem;
  }
  .info-row {
    font-size: 1rem;
    padding: 16px;
  }
  .info-row .icon {
    width: 24px;
    height: 26px;
    margin-right: 20px;
  }
}

@media (min-width: 601px) {
  .category-buttons .category-ellipsis,
  .category-buttons .category-more,
  .category-buttons .category-more-list {
    display: none !important;
  }
  .category-buttons button {
    display: inline-block !important;
  }
}

@media (max-width: 400px) {
  .service-card .service-step {
   font-size: 15px;
  }
  .hospital-info h2 {
    font-size: 28px;
    width: 90%;
  }
  .hospital-info p {
    font-size: 15px;
  }
  .hospital-grid-section,
  .hospital-grid {
    padding: 0 5px;
  }
  .category-buttons .category-ellipsis {
    margin-left: 0;
    margin-right: 0;
    min-width: 35px;
  }
  .category-buttons .category-more {
    margin-left: 0;
    min-width: 40px;
    padding: 0 4px;
  }
  .all-title {
    font-size: 23px !important;
    margin: 0 0 10px 5px;
  }
 .review-info h2 {
    font-size: 28px;
    width: 90%;
  }
  .review-info p {
    font-size: 15px;
  }
}

/* .modal */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1001;
}
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 32px 24px 24px 24px;
  z-index: 1002;
  min-width: 340px;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.modal-content .review-desc {
	text-align: left;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #222;
  cursor: pointer;
  z-index: 1003;
}
.modal-video-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.modal-video-wrapper iframe {
  width: 900px;
  height: 525px;
  border-radius: 6px;
  background: #000;
}

/* contact */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,40,40,0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-cnt {
  background: #fff;
  border-radius: 12px;
  max-width: 480px;
  width: 90vw;
  max-height: 80vh;
  box-shadow: 0 4px 32px rgba(0,0,0,0.13);
  padding: 36px 32px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-cnt h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 18px 0;
  text-align: center;
}
.modal-cnt hr {
  width: 100%;
  border: none;
  border-top: 1.5px solid #eee;
  margin-bottom: 18px;
}
.modal-scroll {
  width: 100%;
  max-height: 260px;
  overflow-y: auto;
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 28px;
  padding-right: 4px;
}
.modal-scroll p {
  margin: 0 0 18px 0;
  line-height: 1.7;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  z-index: 10;
}
.modal-agree {
  width: 120px;
  height: 40px;
  background: #1658a5;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  margin: 0 auto;
  display: block;
  transition: background 0.2s;
}
.modal-agree:hover {
  background: #11447d;
}

@media (max-width: 1200px) {
  .modal-video-wrapper iframe {
    width: 80vw;
    height: 45vw;
    min-height: 240px;
    max-width: 100vw;
    max-height: 60vh;
  }
}
@media (max-width: 800px) {
  .modal-content {
    padding: 12px 2vw 8px 2vw;
    min-width: 0;
  }
  .modal-video-wrapper iframe {
    width: 98vw;
    height: 56vw;
    min-height: 180px;
    max-width: 100vw;
    max-height: 60vh;
  }
}
@media (max-width: 600px) {
  .modal-content {
    padding: 8px 5px;
    min-width: 0;
  }
  .modal-video-wrapper iframe {
    width: 98vw;
    height: 56vw;
    min-height: 120px;
    max-width: 98vw;
    max-height: 50vh;
  }
  .modal-content .review-desc {
	width: 95%;
    font-size: 1.1rem;
    margin-bottom: 10px;
	padding:10px;
  }
  
  /* contact */
  .modal-cnt {
   padding: 18px 8px 18px 8px;
   max-width: 98vw;
  }
  .modal-cnt h2 {
   font-size: 1.2rem;
  }
  .modal-scroll {
   font-size: 0.98rem;
   max-height: 180px;
  }
}