* {
  box-sizing: border-box;
  font-family: "微軟正黑體", "Microsoft JhengHei", "Microsoft YaHei", "PingFang TC", "Helvetica Neue", Arial, sans-serif !important;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "微軟正黑體", "Microsoft JhengHei", "Microsoft YaHei", "PingFang TC", "Helvetica Neue", Arial, sans-serif !important;
  margin: 0;
  padding: 0;
  background: #f7f8f8;
  color: #222;
  overflow-x: hidden;
}
header {
  background: linear-gradient(135deg, #8cbbc1 0%, #5bb1b8 100%);
  padding: 15px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(140, 187, 193, 0.3);
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(140, 187, 193, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* 漢堡?�單?�設?��? */
.hamburger {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #8cbbc1;
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-8px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -6px);
}
.logo img {
  height: 56px;
}
nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}
nav a:hover {
  color: #d6be77;
  transform: translateY(-2px);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d6be77;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}




.banner {
  position: relative;
  width: 100vw;
  height: 78vh;
  min-height: 442px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) blur(1px);
  transform: scale(1.08);
  animation: bannerZoom 10s infinite alternate;
}
@keyframes bannerZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.15); }
}
.banner-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 10;
  animation: bannerTextEffect 6s infinite alternate ease-in-out;
}

@keyframes bannerTextEffect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    text-shadow: 0 8px 40px rgba(0,0,0,0.4);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
  }
}

.banner-text h1 {
  font-size: 1.68rem; /* 原2.8rem縮小40% */
  font-weight: 400; /* 取消粗體 */
  margin-bottom: 0.5em;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
  animation: titleGlow 6s infinite alternate ease-in-out;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 30px rgba(255,255,255,0.5), 0 0 40px rgba(255,255,255,0.3);
    transform: scale(1.02);
  }
}

.banner-text p {
  font-size: 1.3rem;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  animation: subtitlePulse 4s infinite alternate ease-in-out;
}

@keyframes subtitlePulse {
  0% {
    opacity: 0.8;
    transform: translateY(0);
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  }
  100% {
    opacity: 1;
    transform: translateY(-4px);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 15px rgba(255,255,255,0.4);
  }
}

.schedule-section {
  background: #f7f8f8;
  margin: 64px auto 0 auto;
  max-width: 900px;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(30,144,255,0.07);
  padding: 48px 5vw;
}

.schedule-section h2 {
  text-align: center;
  margin-bottom: 2em;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 300;
}

.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 1em;
  background: #f4f1ec;
  border-radius: 8px;
  overflow: hidden;
}

.schedule-table th,
.schedule-table td {
  padding: 20px 12px;
  text-align: center;
  border: 1px solid #ffffff;
  font-size: 1rem;
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-weight: 400;
  color: #000000;
}

.schedule-table th {
  background: #ece4da;
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
}

.schedule-table th:first-child {
  background: #ece4da;
  color: #000000;
  font-weight: 400;
}

.schedule-table td {
  background: #f4f1ec;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
}

.schedule-table .time-slot {
  background: #ece4da !important;
  color: #000000 !important;
  font-weight: 400;
  font-size: 1rem;
}

.schedule-table .service-type {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  min-width: 60px;
}

.schedule-table .service-type.insurance {
  background: #e0f0e0;
  color: #000000;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 auto;
  box-sizing: border-box;
  line-height: 1;
}

.schedule-table .service-type.cosmetic {
  background: #f0e0e8;
  color: #000000;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 auto;
  box-sizing: border-box;
  line-height: 1;
}

/* 小螢幕下門診時間表的響應式樣式 */
@media (max-width: 570px) {
  .schedule-table .service-type {
    font-size: 0.8rem;
    font-weight: 400;
    color: #000000;
    padding: 4px 8px;
    min-width: 50px;
  }
  
  .schedule-table .service-type.insurance {
    border-radius: 50%;
    background: #e0f0e0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0;
  }
  
  .schedule-table .service-type.cosmetic {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #f0e0e8;
    font-size: 0.8rem; /* 與健保一致 */
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 12px 6px;
    font-size: 0.8rem;
    font-weight: 400;
    color: #000000;
  }
  
  .schedule-table th {
    font-size: 0.8rem;
    font-weight: 400;
  }
  
  .schedule-table .time-slot {
    font-size: 0.8rem;
    font-weight: 400;
    color: #000000 !important;
  }
  
  .schedule-section {
    max-width: 100%;
    padding: 32px 3vw;
  }
}
.reservation-icon {
  position: fixed;
  top: 90px;
  right: 48px;
  z-index: 100;
  background: #d6be77; /* 降彩品牌黃 */
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(214,190,119,0.18);
  width: 83px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation-icon:hover {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 8px 32px rgba(214,190,119,0.28);
}
.reservation-icon svg {
  display: block;
  width: 78px;
  height: 78px;
}
.reservation-icon svg circle {
  fill: #d6be77; /* 降彩品牌黃 */
  stroke: none;
  stroke-width: 0;
}
.reservation-icon svg text {
  fill: #fff;
  font-weight: 400; /* 取消粗體 */
  font-size: 22px;
  line-height: 1.8;
}

.schedule-icon {
  position: fixed;
  top: 190px;
  right: 48px;
  z-index: 100;
  background: #d6be77; /* 降彩品牌黃 */
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(214,190,119,0.18);
  width: 83px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-icon:hover {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 8px 32px rgba(214,190,119,0.28);
}

.schedule-icon svg {
  width: 78px;
  height: 78px;
}

.schedule-icon svg circle {
  fill: #d6be77; /* 降彩品牌黃 */
  stroke: none;
  stroke-width: 0;
}

.schedule-icon svg text {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 400; /* 取消粗體 */
  line-height: 1.8;
}
.doctor-exp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: #f7f8f8;
  margin: 64px auto 0 auto;
  max-width: 1100px;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(30,144,255,0.07);
  padding: 48px 5vw;
}
.exp-img img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(30,144,255,0.10);
}
.exp-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1em;
  color: #8cbbc1;
}
.exp-content ul {
  padding-left: 1.2em;
  font-size: 1.1rem;
  line-height: 2;
}
.services {
  margin: 80px auto 0 auto;
  max-width: 1200px;
  padding: 0 5vw;
}
.services h2 {
  font-size: 2rem;
  color: #8cbbc1;
  margin-bottom: 1.5em;
  text-align: center;
}
.service-list {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.service-item {
  background: #f7f8f8;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30,144,255,0.07);
  padding: 24px 18px 18px 18px;
  text-align: center;
  width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-item:hover {
  box-shadow: 0 8px 32px rgba(30,144,255,0.13);
  transform: translateY(-6px) scale(1.03);
}
.service-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1em;
}
.service-item h3 {
  font-size: 1.1rem;
  color: #222;
  margin: 0;
}
.fixed-icons {
  position: fixed;
  right: 32px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 100;
  background: rgba(114, 195, 201, 0.8);
  padding: 20px 12px;
  border-radius: 25px;
}

.fixed-icons .icon.phone {
  background: transparent;
}
.fixed-icons .icon.email {
  background: transparent;
}

.fixed-icons .icon.fb {
  background: transparent;
}

.fixed-icons .icon.ig {
  background: transparent;
}

.fixed-icons .icon.quick-reserve {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border: none;
  cursor: pointer;
}

.fixed-icons .icon.quick-reserve:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* 快速�?約�?窗樣�?*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  background: linear-gradient(135deg, #8cbbc1, #5bb1b8);
  color: #fff;
  padding: 20px 30px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.quick-reserve-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8cbbc1;
  box-shadow: 0 0 0 3px rgba(114, 195, 201, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-submit,
.btn-cancel {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit {
  background: linear-gradient(135deg, #8cbbc1, #5bb1b8);
  color: #fff;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(114, 195, 201, 0.4);
}

.btn-cancel {
  background: #f8f9fa;
  color: #666;
  border: 2px solid #e1e5e9;
}

.btn-cancel:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}
.fixed-icons .icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.fixed-icons .icon:hover {
  transform: scale(1.1);
}

/* TOP?��? */
.top-button {
  position: fixed;
  right: 27px;
  bottom: 32px;
  width: 56px;
  height: 56px;
  background: #8cbbc1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(114, 195, 201, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.top-button.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-button:hover {
  background: #5bb1b7;
  box-shadow: 0 8px 32px rgba(114, 195, 201, 0.4);
  transform: translateY(-2px);
}

.top-button svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.fixed-icons img {
  width: 24px;
  height: 24px;
}
/* LOGO群�??�診?�?�稱 */
.logo-group {
  display: flex;
  align-items: center;
  gap: 18px;
}
.clinic-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.clinic-name-chinese {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.3;
  white-space: nowrap;
  margin: 0;
}

.clinic-name-english {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.8px;
  line-height: 1.3;
  white-space: nowrap;
  margin: 0;
  margin-top: 2px;
  text-align: right;
  width: 100%;
}

/* 其他頁面的網站名稱樣式（恢復原來的樣式） */
.clinic-title:not(.clinic-title .clinic-name-chinese):not(.clinic-title .clinic-name-english) {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.3;
  white-space: nowrap;
  display: block;
}
.banner-text h1,
.banner-text p {
  color: #fff !important;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
h1, h2, h3, h4, h5, h6 {
  color: #000000 !important;
}

/* ?��??�統一?�色??#8cbbc1 */
@media (max-width: 768px) {
  .fixed-icons .icon svg path {
    fill: #fff !important;
  }
  
  /* 確�??��??��?標�??�透�? */
  .fixed-icons .icon.ig {
    background: transparent !important;
  }
  

  
  .fixed-icons .icon.phone {
    background: transparent !important;
  }
  
  .fixed-icons .icon.email {
    background: transparent !important;
  }
  
  .fixed-icons .icon.fb {
    background: transparent !important;
  }
}
.fixed-icons .icon svg path {
  fill: #fff !important;
}
.contact-footer {
  background: #f7f8f8;
  padding: 48px 5vw 0 5vw;
  margin-top: 51px;
}
.contact-info {
  max-width: 900px;
  margin: 0 auto;
}
.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1em;
  color: #000000 !important;
  font-weight: 300;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em 0;
  font-size: 1.1rem;
  line-height: 2;
}
.contact-info ul li a {
  color: #8cbbc1;
  text-decoration: underline;
}
.map-embed {
  margin: 1.5em 0 0 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30,144,255,0.07);
}
.footbar {
  background: #8cbbc1;
  color: #fff;
  text-align: center;
  padding: 18px 0 12px 0;
  margin: 32px -5vw 0 -5vw;
  font-size: 1rem;
  letter-spacing: 1px;
  width: calc(100% + 10vw);
}
.footbar a {
  color: #fff;
  text-decoration: underline;
}
.reservation-form-section {
  background: #f7f8f8;
  max-width: 520px;
  margin: 64px auto 0 auto;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,144,255,0.07);
  padding: 36px 32px 28px 32px;
}
.reservation-form-section h2 {
  text-align: center;
  margin-bottom: 1.5em;
  color: #8cbbc1 !important;
}
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reservation-form label {
  font-size: 1rem;
  color: #8cbbc1;
  margin-bottom: 2px;
}
.reservation-form input,
.reservation-form textarea {
  padding: 8px 12px;
  border: 1px solid #d0eaea;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #f7f8f8;
  transition: border 0.2s;
}
.reservation-form input:focus,
.reservation-form textarea:focus {
  border: 1.5px solid #8cbbc1;
  outline: none;
}
.reservation-form button {
  margin-top: 12px;
  background: #8cbbc1;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.reservation-form button:hover {
  background: #8dd4d9;
}
@media (max-width: 900px) {
  .doctor-exp {
    flex-direction: column;
    gap: 24px;
    padding: 32px 4vw;
  }
  .service-list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .banner {
    height: 36vh;
    min-height: 180px;
  }
  .clinic-title {
    font-size: 1rem;
    line-height: 1.2;
  }
  .reservation-icon {
    top: 120px;
    right: 18px;
    width: 73px;
    height: 73px;
  }
  .schedule-icon {
    top: 210px;
    right: 18px;
    width: 73px;
    height: 73px;
  }
  .contact-footer {
    padding: 32px 2vw 0 2vw;
  }
}
@media (max-width: 600px) {
  header {
    flex-direction: row; /* 與LOGO同一行 */
    gap: 10px;
    padding: 15px 2vw 5px 2vw;
    position: relative;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
  }
  
  .subpage-banner {
    position: relative;
    z-index: 1;
    margin-top: 0;
  }
  .logo-group {
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-right: 0;
    justify-content: flex-start;
    width: auto; /* 避免撐滿造成換行 */
  }
  
  .clinic-name-english {
    text-align: left !important;
  }
  .clinic-name-chinese { font-size: 1.05rem; }
  .clinic-name-english { font-size: 0.85rem; }
  .logo img {
    height: 40px;
  }
  nav ul {
    gap: 18px;
  }
  .doctor-exp {
    padding: 18px 2vw;
  }
  .services {
    padding: 0 2vw;
  }
  .fixed-icons {
    right: 12px;
    bottom: 80px;
    gap: 15px;
    background: rgba(114, 195, 201, 0.8);
    padding: 18px 10px;
    border-radius: 20px;
  }
  .fixed-icons .icon {
    width: 24px;
    height: 24px;
  }
  .fixed-icons img {
    width: 18px;
    height: 18px;
  }
  .reservation-icon {
    top: 110px;
    right: 12px;
    width: 65px;
    height: 65px;
  }
  .schedule-icon {
    top: 200px;
    right: 12px;
    width: 65px;
    height: 65px;
  }
  .contact-footer {
    padding: 18px 2vw 0 2vw;
  }
  .footbar {
    font-size: 0.9rem;
    padding: 12px 0 8px 0;
  }
  .reservation-form-section {
    padding: 18px 6vw 14px 6vw;
  }
  
  /* ?��??�漢?�選??*/
  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -6px);
  }
  
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(114, 195, 201, 0.95);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
  }
  
  header nav.active {
    right: 0;
  }
  
  header nav ul {
    flex-direction: column;
    padding: 0 20px;
  }
  
  header nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  header nav ul li:last-child {
    border-bottom: none;
  }
  
  header nav ul li a {
    display: block;
    padding: 20px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    transition: color 0.3s;
  }
  
  header nav ul li a:hover {
    color: #d6be77;
  }
  
  .logo-group {
    margin-right: 0;
    justify-content: flex-start;
  }
  
  .doctor-exp {
    text-align: left;
    padding: 32px 4vw;
  }
  
  .exp-content {
    text-align: left;
  }
  
  .exp-content h2 {
    text-align: left;
  }
  
  .exp-content p {
    text-align: left;
  }
  
  .exp-content ul {
    text-align: left;
  }
  
  .clinic-title {
    text-align: left;
    margin-left: 0;
    width: 100%;
  }
  
  /* 延伸?�稱下方?�色�?*/
  .exp-content h2::after {
    content: '';
    display: block;
    width: 140%;
    height: 4px;
    background: #8cbbc1;
    margin-top: 8px;
    margin-left: -20%;
  }
  
  /* ?��??�TOP?��? */
  .top-button {
    right: 11px;
    bottom: 12px;
    width: 48px;
    height: 48px;
  }
  
  .top-button svg {
    width: 20px;
    height: 20px;
  }
} 

/* 關於我們頁面樣式（移植自 about.html） */
.about-section {
  padding: 45px 5vw 0 5vw;
  background: #ffffff;
  min-height: 42vh;
}
.about-section:last-of-type { padding-bottom: 80px; }
.about-container { max-width: 1000px; margin: 0 auto; }
.about-container h1 {
  text-align: center;
  margin-bottom: 2em;
  color: #72c3c9;
  font-size: 2.5rem;
}
.about-content { display: flex; flex-direction: column; gap: 48px; }
.about-intro h2 { color: #72c3c9; font-size: 1.8rem; font-weight: 400; margin-bottom: 1em; }
.about-intro p { font-size: 1.1rem; line-height: 1.8; color: #333; margin-bottom: 1em; }
.doctor-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(30,144,255,0.07);
  padding: 48px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.doctor-photo { flex-shrink: 0; }
.doctor-photo img {
  width: 338px;
  height: 473px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30,144,255,0.15);
}
.doctor-info { flex: 1; }
.doctor-info h2 {
  color: #368183;
  font-size: 1.61rem;
  margin-bottom: 1em;
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
}
.doctor-title,
.doctor-info h2,
.doctor-experience h3 { font-size: 1.61rem; }
.doctor-title {
  color: #000000;
  font-weight: 400;
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  margin-bottom: 0.5em;
}
.doctor-experience h3 {
  color: #368183;
  font-weight: 400;
  margin-bottom: 1em;
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
}
.doctor-description { margin-bottom: 2em; }
.doctor-description p { font-size: 1.1rem; line-height: 1.8; color: #333; margin-bottom: 1em; }
.doctor-experience ul { list-style: none; padding: 0; }
.doctor-experience li {
  background: #f8f8fa;
  padding: 12px 20px;
  margin-bottom: 8px;
  border-radius: 8px;
  color: #333;
  font-size: 1.1rem;
  position: relative;
  padding-left: 40px;
}
.doctor-experience li:before {
  content: "•";
  position: absolute;
  left: 16px;
  color: #368183;
  font-weight: bold;
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  .about-container h1 { font-size: 2rem; }
  .doctor-card { flex-direction: column; text-align: left; padding: 32px; }
  .doctor-photo img { width: 270px; height: 378px; }
  .doctor-info h2 { text-align: left; font-size: 2.1rem; }
  .doctor-title { font-size: 1.5rem; }
  .doctor-description p { text-align: left; }
  .doctor-experience h3 { text-align: left; }
  .doctor-experience ul { text-align: left; }
}
@media (max-width: 600px) {
  .doctor-card { padding: 24px; text-align: left; }
  .doctor-photo img { width: 237px; height: 304px; }
  .doctor-info h2 { text-align: left; font-size: 2rem; }
  .doctor-title { font-size: 1.4rem; }
  .doctor-description p { text-align: left; }
  .doctor-experience h3 { text-align: left; }
  .doctor-experience ul { text-align: left; }
}

/* ?�?��??��?�?*/
.news-section {
  padding: 64px 5vw 51px 5vw;
  background: #f7f8f8;
}

.news-section h2 {
  text-align: center;
  margin-bottom: 2em;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 300;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  background: #f7f8f8;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(114, 195, 201, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid #8cbbc1;
}

.news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114, 195, 201, 0.12);
}

.news-date {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.news-content h3 {
  color: #8cbbc1;
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}



/* ?�容?�面�?? */
.content-section {
  padding: 60px 5vw;
  width: 100%;
  background-color: #f4f1ec;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* ?�容居中�?? */
.content-wrapper.centered {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-wrapper.centered .content-text {
  text-align: left;
}

.content-image {
  position: sticky;
  top: 100px;
}

.content-text h2 {
  color: #8cbbc1;
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 30px;
}

.content-text h2:first-child {
  margin-top: 0;
}

.content-text h3 {
  color: #8cbbc1;
  font-size: 1.4rem;
  margin-bottom: 15px;
  margin-top: 25px;
}

.content-text h4 {
  color: #8cbbc1;
  font-size: 1.2rem;
  margin-bottom: 12px;
  margin-top: 20px;
}

.content-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1rem;
}

.content-text ul {
  margin: 15px 0;
  padding-left: 20px;
}

.content-text ol {
  margin: 15px 0;
  padding-left: 20px;
}

.content-text li {
  color: #666;
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 1rem;
}

.content-text strong {
  color: #333;
  font-weight: 600;
}

/* ?��??�表�?? */
.disease-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.disease-category-card {
  background: #f7f8f8;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  /* 預設分類顏色（各 slug 未定義時使用） */
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.disease-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--category-color), var(--category-color-light));
}

.disease-category-card.inflammatory {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card.infectious {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card.other {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card.laser {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card.lifting {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card.injection {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card.acne {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card.basic {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card.advanced {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.disease-category-card.special {
  --category-color: #8cbbc1;
  --category-color-light: #5bb1b8;
}

.category-header {
  padding: 24px 24px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--category-color), var(--category-color-light));
  border-radius: 12px;
  margin-bottom: 16px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-header h3 {
  color: #5eb2b9 !important; /* 分類標題改藍色並覆蓋全站黑色標題 */
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.category-header p {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.disease-items {
  padding: 16px 24px 24px;
}

.disease-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.disease-item:hover {
  background: linear-gradient(135deg, var(--category-color) 0%, var(--category-color-light) 100%);
  color: white;
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: var(--category-color);
}

/* 確保子元素在 hover 時一併反白 */
.disease-item:hover .disease-name,
.disease-item:hover .disease-arrow {
  color: #fff;
}

.disease-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.disease-arrow {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.disease-item:hover .disease-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* 使每個分類清單的第一個項目為藍底白字（依照設計稿） */
/* 移除預設第一筆藍底，統一為預設黑字、hover 變藍底白字 */

.treatment-info {
  margin-top: 50px;
  padding: 32px;
  background: linear-gradient(135deg, #8cbbc1 0%, #5bb1b8 100%);
  border-radius: 16px;
  color: white;
  box-shadow: 0 12px 32px rgba(114, 195, 201, 0.3);
  position: relative;
  overflow: hidden;
}

.treatment-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.treatment-info h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.treatment-info ul {
  margin: 0;
  padding-left: 24px;
  position: relative;
  z-index: 1;
}

.treatment-info li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-size: 1rem;
}

.treatment-info strong {
  color: white;
  font-weight: 600;
}

@media (max-width: 768px) {
  .disease-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 30px 0;
  }
  
  .category-header {
    padding: 20px 20px 12px;
  }
  
  .category-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .disease-items {
    padding: 12px 20px 20px;
  }
  
  .disease-item {
    padding: 10px 14px;
    margin-bottom: 6px;
  }
  
  .disease-name {
    font-size: 0.9rem;
  }
  
  .treatment-info {
    padding: 24px;
    margin-top: 40px;
  }
  
  .treatment-info h3 {
    font-size: 1.3rem;
  }
  
  .treatment-info li {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .content-image {
    position: static;
  }
  
  .content-text h2 {
    font-size: 1.6rem;
  }
  
  .content-text h3 {
    font-size: 1.3rem;
  }
  
  .content-text h4 {
    font-size: 1.1rem;
  }
}

/* 確�???080px以�??��??�選?��??�橫�?*/
@media (min-width: 1080px) {
  .hamburger {
    display: none;
  }
  
  header nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    padding-top: 0;
    right: auto;
  }
  
  header nav ul {
    flex-direction: row;
    padding: 0;
  }
  
  header nav ul li {
    border-bottom: none;
    margin: 0;
  }
  
  header nav ul li a {
    padding: 8px 0;
    font-size: 1.1rem;
    color: #fff;
  }
  
  header nav ul li a:hover {
    color: #d6be77;
  }
}

/* ?��?式設�?*/
@media (max-width: 768px) {
  .news-section {
    padding: 48px 4vw;
  }
  
  .news-section h2 {
    font-size: 1.8rem;
  }
  
  .news-item {
    padding: 20px;
  }
  
  .news-content h3 {
    font-size: 1.2rem;
  }
  

} 

.article-title-bar {
  width: 100%;
  background: #8cbbc1;
  padding: 24px 0 16px 0;
  text-align: center;
  border-radius: 16px 16px 0 0;
  margin-bottom: 0;
}
.article-title-bar h3 {
  color: #fff !important;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .article-title-bar {
    padding: 14px 0 8px 0;
    border-radius: 10px 10px 0 0;
  }
  .article-title-bar h3 {
    font-size: 1rem;
    color: #fff !important;
  }
} 

.article-title {
  color: #333 !important;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
.article-date {
  color: #666 !important;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
@media (max-width: 768px) {
  .article-title {
    font-size: 1.8rem;
    margin: 0 0 6px 0;
  }
  .article-date {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }
} 

.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-slide.active {
  opacity: 1;
  z-index: 2;
}
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) blur(1px);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: bannerImageEffect 12s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}



/* Banner?????? */
@keyframes bannerImageEffect {
  0% {
    transform: scale(1.05);
    filter: brightness(0.7) blur(1px) saturate(1);
  }
  25% {
    transform: scale(1.08);
    filter: brightness(0.75) blur(0.5px) saturate(1.1);
  }
  50% {
    transform: scale(1.12);
    filter: brightness(0.8) blur(0px) saturate(1.2);
  }
  75% {
    transform: scale(1.08);
    filter: brightness(0.75) blur(0.5px) saturate(1.1);
  }
  100% {
    transform: scale(1.05);
    filter: brightness(0.7) blur(1px) saturate(1);
  }
}


.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(114,195,201,0.7);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 0 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: arrowPulse 3s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes arrowPulse {
  0% {
    box-shadow: 0 2px 8px rgba(114,195,201,0.3);
    transform: translateY(-50%) scale(1);
  }
  100% {
    box-shadow: 0 6px 20px rgba(114,195,201,0.5);
    transform: translateY(-50%) scale(1.03);
  }
}

.banner-arrow.left { left: 24px; }
.banner-arrow.right { right: 24px; }
.banner-arrow:hover { 
  background: #8cbbc1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(114,195,201,0.7);
  animation: none;
}
.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.banner-dots span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: dotPulse 2s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,255,255,0.3);
  }
  100% {
    transform: scale(1.15);
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
  }
}

.banner-dots span.active {
  opacity: 1;
  background: #d6be77;
  animation: activeDotPulse 2s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes activeDotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(214,190,119,0.3);
  }
  100% {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(214,190,119,0.6);
  }
}
@media (max-width: 900px) {
  .banner-arrow.left { left: 8px; }
  .banner-arrow.right { right: 8px; }
  .banner-dots { bottom: 12px; }
  .banner-arrow {
    font-size: 1.1rem;
    padding: 0 8px;
  }
} 

/* 手機版 Banner 文字縮小且單行顯示 */
@media (max-width: 900px) {
  .banner-text h1 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    white-space: nowrap;
    max-width: 92vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 600px) {
  .banner-text h1 {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
  }
}

.subpage-banner {
  position: relative;
  width: 100%;
  height: 39vh;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  z-index: 1;
  background-color: #f4f1ec;
}
.subpage-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) blur(1px);
}
.subpage-banner-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
  text-align: center;
  z-index: 2;
  width: 100%;
}

.subpage-banner-title p {
  font-size: 1.3rem;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  color: #fff !important;
  margin-top: 0.5em;
}
@media (max-width: 900px) {
  .subpage-banner {
    height: 22vh;
    min-height: 100px;
    margin-top: 0;
  }
  .subpage-banner-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .subpage-banner {
    margin-top: 0;
  }
  
  .subpage-banner-title {
    font-size: 1.1rem;
  }
  
  .clinic-title {
    font-size: 0.8rem !important;
  }
} 

.article-title-bar {
  width: 100%;
  background: #8cbbc1;
  padding: 24px 0 16px 0;
  text-align: center;
  border-radius: 16px 16px 0 0;
  margin-bottom: 0;
}
.article-title-bar h3 {
  color: #fff !important;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .article-title-bar {
    padding: 14px 0 8px 0;
    border-radius: 10px 10px 0 0;
  }
  .article-title-bar h3 {
    font-size: 1rem;
    color: #fff !important;
  }
} 

.article-title {
  color: #333 !important;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
.article-date {
  color: #666 !important;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
@media (max-width: 768px) {
  .article-title {
    font-size: 1.8rem;
    margin: 0 0 6px 0;
  }
  .article-date {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }
} 

/* 強制移除?�?��?題色塊樣式�?但�??��?�?*/
.article-title-bar {
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}
.article-title-bar h3 {
  color: #333 !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
} 

/* ?��??�表?��?標�??��?�?? */
.article-title-bar {
  background: #8cbbc1 !important;
  background-color: #8cbbc1 !important;
  padding: 16px 20px 12px 20px !important;
  border-radius: 8px 8px 0 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  text-align: center;
}
.article-title-bar h3 {
  color: #fff !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 768px) {
  .article-title-bar {
    padding: 12px 15px 8px 15px !important;
    border-radius: 6px 6px 0 0 !important;
  }
  .article-title-bar h3 {
    font-size: 1.1rem !important;
  }
}



/* ?��??��?�?*/
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .quick-reserve-form {
    padding: 20px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .modal-header {
    padding: 15px 20px;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
}

/* ?��??�面�?? */
.service-categories {
  background: #f8f9fa;
  padding: 40px 0;
  border-bottom: 1px solid #e9ecef;
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 24px;
  border: 2px solid #8cbbc1;
  background: transparent;
  color: #8cbbc1;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: #8cbbc1;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(114, 195, 201, 0.3);
}

.services-grid {
  padding: 60px 0;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #f7f8f8;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.service-tag {
  background: rgba(114, 195, 201, 0.9);
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-features li {
  color: #8cbbc1;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8cbbc1;
  font-weight: bold;
}

.service-link {
  display: inline-block;
  background: linear-gradient(135deg, #8cbbc1, #5bb1b8);
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(114, 195, 201, 0.4);
}

/* ?��??��??��???*/
@media (max-width: 768px) {
  .category-nav {
    gap: 10px;
  }
  
  .category-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .service-content h3 {
    font-size: 1.2rem;
  }
} 
