@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@200..900&display=swap');

/* === 全域基礎設定 (Base Reset) === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-font-smoothing: antialiased;
  /* 選用：讓 Mac 系統下的字體渲染更滑順 */
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img {
  border: none;
  vertical-align: middle;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

table tr td,
table tr th {
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === 表單設定 (Forms) === */
input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 100%;
  vertical-align: middle;
  outline: none;
  /* 移除點擊時的預設藍框，建議需另外設計 :focus 樣式以維持無障礙體驗 */
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  border: 1px solid #ccc;
  padding: 8px 12px;
  color: #666666;
  border-radius: 0;
  /* 確保在 iOS 上不會有預設圓角 */
}

textarea {
  resize: vertical;
  /* 建議：只允許垂直調整大小，避免破壞版面 */
}

/* 移除按鈕預設外觀 */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  cursor: pointer;
  -webkit-appearance: none;
  /* iOS Safari */
  appearance: none;
  /* 標準現代語法 */
  border: none;
  /* 建議：通常自訂按鈕會需要移除預設邊框，視需求開啟 */
  background: transparent;
  /* 建議：重置背景色 */
}

/* === 行動版設定 === */
#navmenu {
  display: none;
}

#menu-btn {
  display: none;
}

#toolbarnav {
  display: none;
}

/* === 主內容 === */
#w {
  margin: 0;
}

#w #pagebody {
  margin: 0;
}

#w #pagebody #content {
  /*padding-top: 100px;*/
}

/* === Header 基礎設定 === */
header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 250;
}

header.fix {
  height: 62px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 15px 30px -2px rgba(0, 0, 0, 0.1);
}

/* === Logo 設定 === */
#logo {
  position: absolute;
  top: 0;
  left: 15px;
  width: 150px;
  background-image: url(../images/logo.png);
  background-position: left top;
  background-repeat: no-repeat;
}

header.fix #logo {
  background-image: none;
  transition: all 0.3s ease-in-out;
  background-image: url(../images/logo-fix.png);
  background-size: 80%;
  padding-left: 0;
  top: 0;
  left: 15px;
}

header #logo h1,
header #logo h2 {
  font-size: 1.2rem;
}

#logo a {
  display: block;
  color: #FFF;
  text-align: center;
  padding-top: 65px;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-family: "Noto Serif SC", serif;
}

header.fix #logo a {
  color: #b78735;
  padding-top: 0;
  padding-left: 120px;
  width: 300px;
  height: 65px;
  line-height: 60px;
}

/* === 導覽列 (Navigation) 設定 === */
nav {
  line-height: 50px;
  margin-top: 20px;
}

header.fix nav {
  margin-top: 5px;
}

header.fix nav li,
header.fix nav li a {}


/*第一層*/
nav>ul {
  text-align: right;
}

.menu>li {
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.menu>li>a {
  display: block;
  padding: 0 15px;
}

.menu>li>b {
  display: block;
  padding: 0 15px;
}


.menu li:hover .submenu {
  display: block;
}

/*第二層-通用*/
.menu .submenu {
  display: none;
  position: absolute;
  left: 0px;
  top: 50px;
  width: 100%;
  z-index: 99;
  text-align: center;
  background-color: rgba(146, 110, 94, 0.85);
}

.menu .submenu li {}

.menu .submenu a {
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #fff;
  opacity: 0.5;
}

.menu .submenu a:hover {
  opacity: 1;
}



/*第二層-服務療程*/
.menu>li:has(.megamenu) {
  position: static;
  /* 關鍵：打破 relative 限制，讓子選單去抓 nav 的寬度 */
}

.menu .submenu.megamenu {
  display: none;
  position: absolute;
  left: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: rgba(146, 110, 94, 0.85);
}

.menu .submenu.megamenu .flexBox {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.menu .submenu.megamenu .flexBox-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.menu .submenu.megamenu .flexBoxlist {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  flex: 1;
  margin: 0 auto;
  text-align: left;
  float: left;
}

.menu .submenu.megamenu .flexBoxlist {
  display: block;
}

.menu .submenu.megamenu a {
  position: relative;
  display: inline-block;
  padding: 0 35px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #fff;
  opacity: 0.5;
  white-space: nowrap;
}

.menu .submenu.megamenu a:hover {
  opacity: 1;
}

.menu .submenu a:not(:first-child):before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background-color: rgba(111, 94, 76, 0.95);
}

.menu .submenu.megamenu b,
.menu .submenu.megamenu b>a {
  position: relative;
  display: inline-block;
  padding: 0 35px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #666;
  color: #fff;
  white-space: nowrap;
}


/* 基礎按鈕結構 */
.nav-btn {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.nav-btn a {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s ease;
  line-height: 35px;
}

/* 線上諮詢 - 綠色按鈕 */
.btn-line a {
  background: linear-gradient(135deg, #d4a373 0%, #ff8c42 100%) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3) !important;
}

.btn-line a:hover {
  background: linear-gradient(135deg, #ff8c42 0%, #d4a373 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4) !important;
}

/* 本月精選 - 紅色按鈕 (對應圖中色調) */
.btn-special a {
  background-color: #f16a6a;
}

.btn-special a:hover {
  background-color: #e55b5b;
  transform: translateY(-2px);
}

.menu-item>a:hover {
  color: #926e5e;
  /* 滑過文字變咖啡色 */
}

/*統一設定*/
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: url(../images/loader.gif) center no-repeat #fbfbfb;
}

.rel {
  position: relative;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1330px;
}

.web {
  display: block;
}

.mobile {
  display: none;
}

/*內頁編輯器*/
.ckediter {
  box-sizing: border-box;
  min-height: 400px;
}

.ckediter img {
  max-width: 100%;
  height: auto !important;
}

/* 排除掉 .ckediter 裡的內容，讓編輯器恢復預設 */
.ckediter h1,
.ckediter h2,
.ckediter h3,
.ckediter h4,
.ckediter h5,
.ckediter h6,
.ckediter ul,
.ckediter ol,
.ckediter li {
  margin: revert;
  padding: revert;
}


/* ==========================================================================
   內頁編輯器自訂樣式 (.ckediter) 
   ========================================================================== */
.ckediter {
  line-height: 1.8 !important;
  color: #4a4a4a !important;
  font-size: 1.05rem;
}

.ckediter h2 {
  font-family: "Noto Serif SC", serif !important;
  font-size: 1.5rem !important;
  color: #7a6357 !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  margin-top: 40px !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #e5dcd5 !important;
  position: relative;
}

.ckediter h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 2px;
  background-color: #c5a88a;
}

.ckediter h3 {
  font-family: "Noto Serif SC", serif !important;
  font-size: 1.25rem !important;
  color: #926e5e !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  margin-top: 30px !important;
  margin-bottom: 15px !important;
  display: flex;
  align-items: center;
}

.ckediter h3::before {
  content: "✦";
  color: #d4a373;
  margin-right: 8px;
  font-size: 0.9rem;
}

.ckediter p {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  text-align: justify;
  letter-spacing: 0.05em !important;
}

.ckediter ul,
.ckediter ol {
  margin-top: 10px !important;
  margin-bottom: 25px !important;
  padding-left: 20px !important;
}

.ckediter ul li {
  list-style: none !important;
  position: relative !important;
  padding-left: 15px !important;
  margin-bottom: 10px !important;
  color: #555 !important;
}

.ckediter ul li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #d4a373 !important;
  font-weight: bold !important;
}

.ckediter ol li {
  margin-bottom: 10px !important;
  padding-left: 5px !important;
  color: #555 !important;
}

.ckediter dl {
  margin-top: 15px;
  margin-bottom: 30px;
}

.ckediter dt {
  font-family: "Noto Serif SC", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #7a6357;
  margin-top: 20px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.ckediter dd {
  margin-left: 0;
  padding-left: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  position: relative;
  text-align: justify;
}

.ckediter dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background-color: #e5dcd5;
}




/* ==========================================================================
   YouTube 影片自動 RWD（免外框、免切換原始碼，直接貼上即可）
   ========================================================================== */

/* 1. 讓 CKEditor 產生的 iframe 容器具備相對定位與比例留白 */
.ckediter iframe[src*="youtube.com"],
.ckediter iframe[src*="youtu.be"] {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  margin: 35px auto !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(146, 110, 94, 0.08) !important;
}

/* 額外優化：如果是手機版，微調影片上下間距 */
@media (max-width: 767px) {

  .ckediter iframe[src*="youtube.com"],
  .ckediter iframe[src*="youtu.be"] {
    margin: 20px auto !important;
    border-radius: 8px !important;
    /* 手機版圓角稍微縮小更精緻 */
  }
}


#main {
  max-width: 800px;
  margin: 35px auto;
}

/*回上頁*/
.back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 50px 10px;
  cursor: pointer;
}

/*麵包屑*/
#sitemap {
  margin-top: -50px;
}

#sitemap ul {
  text-align: right;
  padding: 0 15px 0 0;

}

#sitemap li {
  display: inline-block;
  font-size: 0.9em;
  color: #666666;
  padding: 0 5px;
}

#sitemap li:after {
  content: " / ";
  margin-left: 5px;
  color: #dbad89;
}

#sitemap li:last-child:after {
  content: "  ";
}

#sitemap li a {
  color: #666666;
}

#sitemap li a:hover {
  color: #b7794a;
}

#sitemap li:last-child {
  border-right: none;
  color: #bd9474;
}

/*麵包屑for療程*/
#sitemap-service {
  position: absolute;
  bottom: 0;
  right: 15px;
}


/* 分頁 */
#page {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 60px;
  font-family: sans-serif;
  gap: 10px;
}

#page .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: #888;
  text-decoration: none;
  font-size: 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0;
}

#page a.page-numbers:hover {
  background-color: #eee;
  color: #333;
}

#page .page-numbers.current {
  background-color: #c5a88a;
  color: #fff;
  font-weight: bold;
  cursor: default;
  pointer-events: none;
}

#page .page-numbers i {
  font-size: 12px;
  vertical-align: middle;
}

/*表格*/
table.surgery-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans TC", sans-serif;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

table.surgery-table th,
table.surgery-table td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}

table.surgery-table th {
  background-color: #f2f2f2;
  color: #333;
  font-size: 1.1rem;
}

table.surgery-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table.surgery-table caption {
  caption-side: top;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

table.surgery-table b {
  font-family: "Noto Serif TC", serif;
  font-size: 1.2em;
}


/* Swiper 全域自定義樣式 (共用) */
.swiper-button-next,
.swiper-button-prev {
  color: #d4a373 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #d4a373 !important;
  color: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.1rem !important;
  font-weight: bold !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #ddd !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: #c5a88a !important;
  width: 25px !important;
  border-radius: 5px !important;
}

.swiper-horizontal>.swiper-pagination-bullets {
  bottom: -45px !important;
}

/*首頁banner*/
#banner {
  /*min-height: 600px;*/
}

#banner img {
  width: 100%;
  height: auto;
}

/*首頁療程服務*/
#index-service {
  padding: 50px 0 0 0;
  background-color: #fff;
  text-align: center;
  position: relative;
}

#index-service .section-title span {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ad8d6d;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

#index-service .section-title h2 {
  font-size: 1.1rem;
  color: #a6937c;
  letter-spacing: 4px;
  margin-bottom: 50px;
}

#index-service .service-img {
  width: 280px;
  height: 280px;
  margin: 0 auto 30px;
  overflow: hidden;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  box-shadow: 0 15px 35px rgba(146, 110, 94, 0.2);
  transition: border-radius 0.4s ease, transform 0.3s ease;
}

#index-service .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#index-service .service-item:hover .service-img {
  border-radius: 40% 60% 30% 70% / 60% 50% 50% 40%;
}

#index-service .service-txt h3 {
  font-size: 22px;
  color: #926e5e;
  margin-bottom: 10px;
  font-weight: 500;
}

#index-service .service-txt p {
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
}

/*首頁診所據點*/
#index-location {
  padding: 80px 0;
  text-align: center;
}

#index-location .section-title span {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ad8d6d;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

#index-location .section-title h2 {
  font-size: 1.1rem;
  color: #a6937c;
  letter-spacing: 4px;
  margin-bottom: 25px;
}

#index-location .location-box {
  display: flex;
  margin: 0 auto;
  background-color: #f8f5f1;
  background-image: url(../images/bg-location.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 0;
  overflow: hidden;
  text-align: left;
}

#index-location .location-img {
  flex: 0 0 50%;
}

#index-location .location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#index-location .location-info {
  flex: 0 0 50%;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

#index-location .location-item h3 {
  font-size: 1.1rem;
  color: #926e5e;
  margin-bottom: 8px;
  font-weight: 600;
}

#index-location .location-item p {
  font-size: 1rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

#index-location .location-item i.fa-location-dot {
  color: #799078;
  opacity: 1;
}

#index-location .location-item a {
  text-decoration: none;
  margin-left: 5px;
  font-size: 18px;
  transition: opacity 0.3s;
}

#index-location .location-item .fa-line {
  color: #666;
}

#index-location .location-item .fa-map-location-dot {
  color: #666;
}

#index-location .location-item a:hover {
  opacity: 0.7;
}

/*首頁醫療團隊*/
#index-doctor {
  padding: 80px 0 120px 0;
  background-color: #f8f5f1;
  text-align: center;
  background-image: url(../images/bg-doctor.jpg);
  background-repeat: no-repeat;
  background-position: left center;
}

#index-doctor .section-title span {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ad8d6d;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

#index-doctor .section-title h2 {
  font-size: 1.1rem;
  color: #a6937c;
  letter-spacing: 4px;
  margin-bottom: 50px;
}

/* 醫師卡片主體 */
#index-doctor .doctor-card {
  background-color: #fff;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

/* 醫師照片 */
#index-doctor .dr-img {
  width: 100%;
  height: 350px;
  margin-bottom: 80px;
  overflow: hidden;
}

#index-doctor .dr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 下方資訊區 (含波浪) */
#index-doctor .dr-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #c9aa8d;
  color: #fff;
  padding: 20px;
}

#index-doctor .dr-info::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url('../images/dr-wave-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

#index-doctor .dr-info h3 {
  font-size: 24px;
  letter-spacing: 2px;
}

.dr-info p {
  font-size: 14px;
  opacity: 0.9;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
  display: inline-block;
}


/*首頁案例分享*/
#index-case {
  padding: 150px 0 200px 0;
  position: relative;
  background-image: url(../images/case-model.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
}

#index-case .case-flex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#index-case .case-content {
  flex: 0 0 65%;
  z-index: 2;
}

#index-case .case-title {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

#index-case .case-title h2 {
  font-size: 36px;
  color: #9d7753;
  font-weight: 600;
  padding-top: 15px;
  letter-spacing: 4px;
  white-space: nowrap;
  font-family: "Noto Serif SC", serif;
}

#index-case .case-title p {
  font-size: 16px;
  color: #a6937c;
  line-height: 1.8;
  letter-spacing: 1px;
}

#index-case .case-list {
  display: flex;
  gap: 20px;
}

#index-case.case-item {
  flex: 1;
  text-decoration: none;
}

#index-case .case-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 65% 35% 60% 40% / 45% 55% 45% 55%;
  box-shadow: 0 15px 30px rgba(146, 110, 94, 0.15);
  transition: all 0.5s ease;
  background-color: #fff;
}

#index-case .case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  opacity: 0.3;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#index-case .case-item:hover .case-img img {
  opacity: 1;
  transform: scale(1.1);
}

#index-case .case-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
  width: 100%;
}

#index-case .case-txt h3 {
  font-size: 24px;
  margin-bottom: 5px;
  font-family: "Noto Serif SC", serif;
}

#index-case .case-txt span {
  font-size: 14px;
  letter-spacing: 2px;
}

#index-case .case-item:hover .case-img {
  border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
  transform: translateY(-5px);
}

#index-case .case-item:hover img {
  transform: scale(1.1);
}

/*首頁醫美新知*/
#index-news {
  background-image: linear-gradient(180deg, #926e5e 0%, #b39174 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
}

#index-news .news-flex-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

#index-news .news-deco {
  flex: 0 0 35%;
  position: relative;
}

#index-news .news-deco img {
  position: absolute;
  top: -350px;
  left: 0;
  width: 100%;
}

#index-news .news-content {
  flex: 0 0 60%;
}

#index-news .news-title h2 {
  font-size: 48px;
  color: #f1c40f;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

#index-news .news-title h2 span {
  font-size: 20px;
  color: #fff;
  margin-left: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

#index-news .news-item {
  margin-bottom: 35px;
  margin-right: 25px;
  border-bottom: 1px solid #b39174
}

#index-news .news-item a {
  text-decoration: none;
  color: #fff;
  display: block;
}

#index-news .news-item h3 {
  margin-bottom: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

#index-news .news-item p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#index-news .news-item:hover h3 {
  color: #f1c40f;
}

#index-news .btn-all-news {
  display: inline-block;
  padding: 12px 45px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
  margin-top: 20px;
}

#index-news .btn-all-news:hover {
  background-color: #fff;
  color: #926e5e;
}


/*內頁banner*/
#banner-inner {
  height: 220px;
  padding: 0;
}

/*內頁banner-常用*/
#banner-inner.common-bg {
  background:
    linear-gradient(to bottom, transparent 40%, #ffffff 100%),
    linear-gradient(90deg,
      #bfa79c 0%,
      #d9c1b0 50%,
      #f2e6de 100%);
  background-blend-mode: normal;
}

/*內頁標題-常用*/
#banner-title-area {
  text-align: center;
}

#banner-title-area span {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ad8d6d;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

#banner-title-area h1,
#banner-title-area h2 {
  font-size: 1.1rem;
  color: #b1a199;
  letter-spacing: 4px;
  margin-bottom: 50px;
}

/*內頁banner-醫美新知*/
#banner-inner.new-tech-bg {
  background-color: #d0beaf;
  background-image: url(../images/news-deco.png);
  background-repeat: no-repeat;
  background-position: 200px center;
  margin-bottom: 55px;
  padding: 150px 0 50px 0;
  height: auto;
}



/*服務據點*/
#location-content {
  padding: 0 20px 100px;
}

/*服務據點-類頁簽*/
#location-content .location-tabs {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

#location-content .tab-item {
  display: block;
  padding: 0 40px;
  text-decoration: none;
  color: #a38d81;
  border: 1px solid #e5dcd5;
  border-bottom: none;
  margin: 0 5px;
  border-radius: 12px 12px 0 0;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

#location-content .tab-item.active {
  background: #f9f6f4;
  font-weight: 600;
  margin-bottom: -1px;
  border-top: 2px solid #d5bb9b;
}

/*服務據點主體*/
#location-content .location-info-card {
  border-top: 1px solid #e5dcd5;
  border-radius: 0 0 15px 15px;
}

/* 服務據點主體-內部區塊通用間距 */
#location-content .clinic-section {}

#location-content .clinic-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* 服務據點主體-診所簡介 */
#location-content .clinic-intro .info-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 40px;
  background-color: #f8f5f1;
  background-image: url(../images/bg-location.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  overflow: hidden;
}

#location-content .clinic-intro .info-img {
  flex: 0 0 450px;
}

#location-content .clinic-intro .info-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

#location-content .clinic-intro .info-text {
  flex: 1;
}

#location-content .clinic-intro .info-text h1 {
  color: #7a6357;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
}

#location-content .contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

#location-content .contact-list li {
  color: #666;
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

#location-content .contact-list li i {
  padding-right: 10px;
}

#location-content .social-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

#location-content .social-btns a {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 15px 5px 15px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #e3bf8c;
  color: #af9f87;
  font-size: 0.9em;
}

#location-content .btn-ig {
  color: #ac2bac;
  border-color: #f2e6de;
  background: #fff;
}

#location-content .btn-fb {
  color: #3b5998;
  border-color: #f2e6de;
  background: #fff;
}

#location-content .btn-line {
  color: #00c300;
  border-color: #f2e6de;
  background: #fff;
}

#location-content .social-btns a:hover {
  color: #eee;
  background-color: #e3bf8c;
  transition: all .5s ease-in-out;
}

/* 服務據點主體-共用標題 */
#location-content .section-title {
  margin: 30px 15px;
  color: #907a6f;
  display: flex;
  font-weight: 600;
}

#location-content .section-title::before {
  content: '\f0a9';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #bfa79c;
  font-size: 1.25rem;
}

/* 服務據點主體-門診表 */
#location-content .table-responsive {
  width: 100%;
  overflow-x: auto;
}

#location-content .schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;

}

#location-content .schedule-table th {
  background-color: #c5a088;
  color: #fff;
  padding: 15px 10px;
  font-weight: 500;
  border: 1px solid #eee;
}

#location-content .schedule-table td {
  text-align: center;
  border: 1px solid #f2e6de;
  color: #7a6357;
  vertical-align: middle;
}

#location-content .schedule-table td.time-slot {
  background-color: #c5a088;
  font-weight: 600;
  color: #eee;
  width: 100px;
}

#location-content .clinic-slot {
  padding: 8px 0;
}

#location-content .clinic-slot.border-top {
  border-top: 1px solid #f2e6de;
  margin-top: 5px;
}

#location-content .schedule-table .doctor {
  display: block;
  font-weight: 600;
  color: #7a6357;
}

#location-content .schedule-table .time {
  display: block;
  font-size: 0.85rem;
  color: #a38d81;
}

#location-content .schedule-table .note {
  display: inline-block;
  font-size: 0.8rem;
  color: #d16b6b;
  background-color: #fff1f1;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 5px;
}

#location-content .schedule-table td.time-slot {
  background-color: #fdfaf8 !important;
  font-weight: 600;
  color: #a38d81;
  width: 100px;
}





/* 服務據點主體-環境照片 */
#location-content .clinic-photos {
  position: relative;
  padding-bottom: 60px;
}

#location-content .environment-slider {
  padding: 10px 5px 40px;
}

#location-content .photo-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(122, 99, 87, 0.08);
  transition: transform 0.3s ease;
}

#location-content .photo-item:hover {
  transform: translateY(-5px);
}

#location-content .photo-item img {
  width: 100%;
  height: 280px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 5px;
}

#location-content .photo-item p {
  padding: 15px;
  text-align: center;
  color: #7a6357;
  font-size: 0.95rem;
  margin: 0;
}


/* 服務據點主體-交通方式 */
#location-content .transport-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  align-items: flex-start;
}

#location-content .transport-info {
  flex: 1;
  padding: 20px;
}

#location-content .transport-editor h3 {
  font-size: 1rem;
  color: #926e5e;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#location-content .transport-map {
  flex: 1.5;
  height: 450px;
  /* PC 版固定高度 */
  border-radius: 10px;
}

#location-content .transport-map iframe {
  width: 100%;
  height: 100;
}



/* 醫療團隊 */
#doctors-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  margin: 50px 0;
}

#doctors-content .doctor-card {
  background-color: #fff;
  border-radius: 20px;
  /* 縮小圓角，500*500方圖切太大圓角比例會怪，20px較俐落 */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

#doctors-content .doctor-card:hover {
  transform: translateY(-5px);
  /* 加個精緻的滑過微升效果 */
}

#doctors-content .doctor-card a {
  text-decoration: none;
  display: block;
}

/* 讓 500*500 照片完美發揮的區塊 */
#doctors-content .dr-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* 強制保持 1:1 正方形比例 */
  overflow: hidden;
}

#doctors-content .dr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 確保照片完美填滿不變形 */
}

/* 下方資訊改為質感白底，文字用原本的奶茶色調 */
#doctors-content .dr-info {
  background-color: #fff;
  /* 改為白底 */
  padding: 25px 20px;
  text-align: center;
}

#doctors-content .dr-info h3 {
  color: #494949;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

#doctors-content .dr-info p {
  color: #c9aa8d;
  font-size: 14px;
  border-top: 1px solid #f0eae4;
  padding-top: 10px;
  display: inline-block;
  margin: 0;
}


/*醫療團隊-內頁*/
#doctors-content-inner {
  padding: 60px 0;
  width: 980px;
  margin: 0 auto;
}

#doctors-content-inner .doctor-card {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

#doctors-content-inner .dr-img {
  flex: 0 0 45%;
  max-width: 500px;
}

#doctors-content-inner .dr-img img {
  width: 100%;
  border-radius: 60px;
}

#doctors-content-inner.dr-info {
  flex: 1;
}

#doctors-content-inner .dr-info h1 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #666666;
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-family: "Noto Serif SC", serif;
  position: relative;
}

#doctors-content-inner .dr-info h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 150px;
  height: 1px;
  background-color: #ddd;
}

#doctors-content-inner .dr-info h1 span {
  font-size: 1.1rem;
  color: #888;
  font-weight: 300;
}

#doctors-content-inner .dr-info p {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0;
  margin: 5px 0;
}

#doctors-content-inner .social-links {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

#doctors-content-inner .social-links a {
  color: #cba978;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

#doctors-content-inner .dr-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

#doctors-content-inner .exp-item h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

#doctors-content-inner .exp-item h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #c5a88a;
}

#doctors-content-inner.exp-item ul {
  list-style: none;
  padding: 0;
}

#doctors-content-inner .exp-item ul li {
  margin-bottom: 12px;
  color: #666;
  font-size: 0.95rem;
}


/*醫美新知*/
#new-tech-list .tech-item {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s;
}

#new-tech-list .tech-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 10px;
}

#new-tech-list .tech-item:hover {
  background-color: #fafafa;
}

#new-tech-list .tech-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
}

#new-tech-list .tech-date {
  text-align: right;
  color: #888;
}

#new-tech-list .tech-date .day {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

#new-tech-list .tech-date .year {
  display: block;
  font-size: 0.85rem;
  margin-top: 5px;
}

/*醫美新知內頁*/
#monthly-specials-content {
  margin-bottom: 60px;
}

#monthly-specials-content .news-entry-header {
  padding-bottom: 25px;
  margin-bottom: 40px;
}

#monthly-specials-content .news-entry-header time {
  font-size: 0.85rem !important;
  color: #c5a88a !important;
  letter-spacing: 3px !important;
  padding-bottom: 12px !important;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
}

#monthly-specials-content .news-entry-header h1 {
  font-size: 2rem !important;
  color: #4a4a4a !important;
  font-family: "Noto Serif SC", serif !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}


/*美型見證-分類*/
.case-filter {
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  margin-top: -50px;
  padding: 20px 0 0 0;
}

.filter-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.filter-container a {
  color: #888;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.filter-container a:hover,
.filter-container a.active {
  color: #333;
  font-weight: 500;
}

.filter-container a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #d4a373;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.filter-container a:hover::after,
.filter-container a.active::after {
  width: 100%;
}

/*美型見證*/
#case {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

#case .case-item .thumb {
  aspect-ratio: 900 / 600;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
}

#case .case-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#case .case-item:hover .thumb img {
  transform: scale(1.05);
}

#case .case-item h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

#case .case-item p {
  font-size: 0.85rem;
  color: #888;
  margin: 5px 0;
}

/*美型見證內頁*/
#case-content {
  margin-bottom: 50px;
}

.case-header {
  margin-bottom: 80px;
}

.case-header time {
  font-size: 0.9rem;
  color: #c5a88a;
  letter-spacing: 2px;
  padding-bottom: 15px;
  display: inline-block;
}

.case-header h1 {
  font-size: 2rem;
  color: #666;
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.4;
  letter-spacing: 3px;
}

.photo-frame {
  position: relative;
  width: 95%;
  margin: 40px 0;
  z-index: 1;
}

/* 圖片本體 */
#case-content .photo-frame img {
  width: 90%;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

/* 後方的位移灰色區塊 */
#case-content .photo-frame::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 30px;
  width: 100%;
  height: 100%;
  background-color: #eee;
  border-radius: 10px;
  z-index: 1;
  transition: all 0.3s ease;
}


/*服務療程*/
#service-content {
  margin-bottom: 50px;
}

/*服務療程-桌機標題*/
.entry-header-web {
  position: absolute;
  top: 40%;
  right: 150px;
}

/*服務療程-行動版標題*/
.entry-header-web {
  position: absolute;
  top: 40%;
  right: 15%;
  text-align: center;
}

.entry-header {
  margin-bottom: 50px;
  display: none;
}

.entry-header h1,
.entry-header-web h1 {
  font-size: 2.5rem;
  color: #666;
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.4;
  letter-spacing: 3px;
}

.entry-header h3,
.entry-header-web h3 {
  font-size: 1.25rem;
  color: #a38a69;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.4;
  letter-spacing: 3px;
}


/*服務療程-療程說明*/
#treatments {
  margin-top: 50px;
  padding-bottom: 50px;
}

#treatments h2 {
  color: #666666;
  font-size: 1.5em;
  padding-top: 25px;
}

#treatments h3 {
  padding-top: 25px;
}

#treatments ul {
  margin-top: 15px;
  margin-left: 15px;
}

#treatments li {
  list-style-type: none;
  position: relative;
}

#treatments li::before {
  content: ' · ';
  position: absolute;
  top: 0;
  left: -15px;
}

#treatments a {
  color: #d39f75;
  font-weight: 600;
}

#treatments img {
  border-radius: 10px;
}

#treatments ul,
dl {
  margin-left: 20px;
}

#treatments dt {
  font-weight: bold;
  margin-top: 1em;
}


/*服務療程+醫師內頁-案例輪播*/
.case-carousel-section {
  padding: 80px 0 120px 0;
  background-color: #f8f5f1;
  text-align: center;
  background-image: url(../images/bg-doctor.jpg);
  background-repeat: no-repeat;
  background-position: left center;
}

h2.carousel-title {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: #666;
  font-family: "Noto Serif SC", serif;
}

.case-card .thumb {
  aspect-ratio: 800 / 600;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 15px;
}

.case-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.case-card:hover .thumb img {
  transform: scale(1.08);
}

.case-card .info h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.case-card .info p {
  font-size: 0.85rem;
  color: #999;
}

/* 服務療程-問與答*/
.faq-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 40px;
}

.faq-item .question {
  font-size: 1.2rem;
  color: #926e5e;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}

.faq-item .question::before {
  content: "Q.";
  font-family: "Noto Serif SC", serif;
}

.faq-item .answer {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  text-align: justify;
}


/* 療程注意事項 */
.treatment-notes {
  border-top: 1px solid #eee;
  padding: 60px 0;
}

.notes-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.treatment-notes h2 {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: #666;
  font-family: "Noto Serif SC", serif;
}

.treatment-notes h3 {
  color: #926e5e;
  padding-bottom: 10px;
  margin-top: 25px;
  font-weight: 600;
}

.treatment-notes ul {
  list-style: none;
  padding-left: 0;
}

.treatment-notes li {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.treatment-notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4a373;
}


/*聯絡我們*/
#contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

#contact-list .contact-card {
  padding: 30px;
  background-color: #f8f5f1;
  overflow: hidden;
  border-radius: 25px;
}

#contact-list .contact-card .thumb {
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#contact-list .contact-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#contact-list .contact-card:hover .thumb img {
  transform: scale(1.05);
}

#contact-list .contact-card h3 {
  font-size: 1.3rem;
  color: #7a6357;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

#contact-list .contact-info p {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#contact-list .contact-info p i {
  color: #bfa79c;
  width: 18px;
  text-align: center;
}

#contact-list .contact-social-btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

#contact-list .contact-social-btns a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#contact-list .btn-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

#contact-list .btn-fb {
  background-color: #4267B2;
}

#contact-list .btn-line {
  background-color: #06C755;
}

#contact-list .contact-social-btns a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

/*聯絡我們-YouTube 導購區塊*/
#yt-cta-section {
  background-image: url(../images/bg-contact.jpg);
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  margin-top: 60px;
}

#yt-cta-section .yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  /* 毛玻璃效果 */
  color: #fff;
  transition: all 0.3s ease;
}

#yt-cta-section .yt-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}


/* 底部立即諮詢區塊 */
.cta-section {
  text-align: center;
  padding: 100px 0;
  width: 100%;
  background-color: #f8f3ed;
}

.cta-section p {
  font-size: 1.1rem;
  color: #a6937c;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-family: "Noto Serif SC", serif;

}

.btn-cta-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 25px;
  background: linear-gradient(135deg, #c5a88a 0%, #f39c12 50%, #e67e22 100%) !important;
  color: #fff !important;
  padding: 15px 55px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
  border: none;
}

.btn-cta-line:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(230, 126, 34, 0.4);
}

.btn-cta-line i {
  font-size: 1.5rem;

}

/* 側邊立即諮詢區塊 */
.side-contact-fixed {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.side-cta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  background: linear-gradient(135deg, #d4a373 0%, #ff8c42 100%);
  /* 亮橘香檳金 */
  color: #fff !important;
  text-decoration: none;
  border-radius: 15px 0 0 15px;
  /* 左側圓角 */
  box-shadow: -4px 0 15px rgba(255, 140, 66, 0.3);
  transition: all 0.3s ease;
}

.side-cta-link span {
  writing-mode: vertical-rl;
  /* 文字直排 */
  letter-spacing: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.side-cta-link i {
  font-size: 1.2rem;
}

.side-cta-link:hover {
  padding-right: 20px;
  /* 滑過時向左延伸一點 */
  filter: brightness(1.1);
  box-shadow: -6px 0 20px rgba(255, 140, 66, 0.4);
}

/*尾部注意事項*/
.disclaimer-wrap {
  padding: 40px 0;
  color: #777;
  font-size: 0.8rem
}

.disclaimer-content b {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.disclaimer-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.disclaimer-content ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
}

.disclaimer-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #926e5e;
}

.disclaimer-content p {
  font-weight: 800;
}

/*尾部*/
.footer-wrap {
  background-color: #f8f3ed;
  padding: 60px 0 20px;
  color: #926e5e;
  font-size: 15px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(146, 110, 94, 0.2);
  padding-bottom: 40px;
}

/* 左側區塊 */
.footer-info {
  flex: 0 0 40%;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-logo h3 {
  display: inline;
  font-family: "Noto Serif SC", serif;
  color: #b78735;
  padding-left: 10px;
}

.footer-desc {
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #926e5e;
  border-radius: 50%;
  color: #926e5e;
  margin-right: 10px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background-color: #926e5e;
  color: #fff;
}

/* 右側連結區塊 */
.footer-links {
  flex: 0 0 50%;
  display: flex;
  justify-content: space-between;
}

.link-group h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.link-group ul {
  list-style: none;
  padding: 0;
}

.link-group ul li {
  margin-bottom: 10px;
}

.link-group ul li a {
  text-decoration: none;
  color: #926e5e;
  transition: opacity 0.3s;
}

.link-group ul li a:hover {
  opacity: 0.7;
}

.service-columns {
  display: flex;
  gap: 40px;
}

/* 底部版權宣告 */
.footer-bottom {
  padding-top: 20px;
  text-align: left;
  font-size: 13px;
  opacity: 0.8;
}