/* ================================================================
   愛拼哞生活管家 — 官網前台樣式
   米白・深藍・橘紅 品牌色系
   ================================================================ */

:root {
  --navy:        #0D3042;
  --navy-hover:  #081E2C;
  --orange:      #F26B3A;
  --orange-hover:#D45524;
  --orange-pale: #FFF4EE;
  --orange-subtle:#FFF8F2;
  /* 沿用 --blue 變數名稱，值改為橘紅，維持既有 CSS 引用不斷 */
  --blue:        #F26B3A;
  --blue-hover:  #D45524;
  --blue-pale:   #FFF4EE;
  --blue-subtle: #FFF8F2;
  --amber:       #F26B3A;
  --amber-pale:  #FFF4EE;
  --bg:          #F7F4EC;
  --bg-cool:     #EDF5F5;
  --dark-section:#082432;
  --white:       #ffffff;
  --text:        #0D3042;
  --text-sec:    #2B4A5C;
  --text-muted:  #6B8594;
  --border:      #DCE4E3;
  --border-focus:#F26B3A;
  --shadow-sm:   0 2px 8px rgba(13,48,66,0.07);
  --shadow-md:   0 4px 24px rgba(13,48,66,0.10);
  --shadow-lg:   0 8px 40px rgba(13,48,66,0.13);
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --t:           0.22s ease;
}

/* ── LINE ID — 防止 constra h2/h3/h4 uppercase 影響 @aipinmoo 顯示 ── */
.line-id { text-transform: none !important; }

/* ── Base ── */
html { scroll-behavior: smooth; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans TC","Microsoft JhengHei",-apple-system,sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover, a:focus { color: var(--blue-hover); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 0; }

.section-padding { padding: 64px 0; }

/* ── Section headings ── */
.section-label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.section-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.section-sub-title {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  font-weight: 500;
}
.whyus-title {
  font-size: 2.15rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none !important;
}
.btn-primary {
  background: var(--navy) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(13,48,66,0.22);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--navy-hover) !important;
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(13,48,66,0.32);
  transform: translateY(-1px);
}
.btn-dark {
  background: transparent !important;
  color: var(--text) !important;
  border: 1.5px solid var(--border) !important;
}
.btn-dark:hover, .btn-dark:focus {
  background: var(--orange-pale) !important;
  color: var(--navy) !important;
  border-color: var(--orange) !important;
}
.btn-light {
  background: #fff !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--shadow-sm);
}
.btn-light:hover, .btn-light:focus {
  background: var(--blue-pale) !important;
  border-color: var(--blue) !important;
}
/* Hero primary CTA — deep navy */
.btn-navy {
  background: var(--navy) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(13,48,66,0.22) !important;
  border: none !important;
}
.btn-navy:hover, .btn-navy:focus {
  background: var(--navy-hover) !important;
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(13,48,66,0.32) !important;
  transform: translateY(-1px);
}
/* Soft outline */
.btn-outline-blue {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--border) !important;
}
.btn-outline-blue:hover, .btn-outline-blue:focus {
  background: var(--orange-pale) !important;
  color: var(--orange) !important;
  border-color: var(--orange) !important;
}
/* White card button */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  border-radius: 999px;
  padding: 13px 32px;
  font-size: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: all var(--t);
  text-decoration: none !important;
}
.btn-white:hover {
  background: var(--orange-pale);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.16);
}
/* Amber — used sparingly for highlights only */
.btn-amber {
  background: var(--amber) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(246,166,35,0.28) !important;
  border: none !important;
}
.btn-amber:hover, .btn-amber:focus {
  background: #e0941a !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── Top bar ── */
.top-bar {
  background: var(--bg-cool);
  border-bottom: 1px solid var(--border);
}
.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  padding: 4px 0;
}
.top-bar-main {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  color: var(--text-sec);
  font-size: 13px;
  font-weight: 600;
}
.top-bar-main span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.top-bar-main i { color: var(--blue); font-size: 12px; }
.top-bar-cta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 14px;
  background: var(--blue);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: background var(--t);
}
.top-bar-cta:hover { background: var(--blue-hover); color: #fff !important; }

/* ── Header ── */
#header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
#header .bg-white {
  background: #fff !important;
  border-bottom: none;
}
.logo-area { padding: 10px 0; }

/* Logo row — logo left, nav-cta right */
.logo-area .row { position: relative; }
.brand-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.brand-logo img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.brand-logo strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: none;
  -webkit-text-fill-color: var(--text);
}
.brand-logo small {
  display: block;
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Header right CTA (desktop only) */
.header-nav-cta {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-line-hint {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-line-hint i { color: #06c755; font-size: 14px; }
.header-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(13,48,66,0.2);
  transition: all var(--t);
  text-decoration: none !important;
}
.header-booking-btn:hover {
  background: var(--navy-hover);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── Single-row header bar ── */
.site-header-bar {
  background: #ffffff;
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 2px 12px rgba(13,48,66,0.06);
}

.site-header-bar .navbar {
  padding: 0;
  min-height: 76px;
}

.site-header-bar .brand-logo {
  padding: 10px 0;
  margin-right: 16px;
  flex-shrink: 0;
}

.site-header-bar .nav-link {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 13px !important;
  transition: color var(--t);
  position: relative;
}
.site-header-bar .nav-link:hover,
.site-header-bar .nav-item.active .nav-link {
  color: var(--blue) !important;
}
.site-header-bar .nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 13px; right: 13px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
}

/* Nav LINE hint */
.nav-line-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  padding: 6px 0 6px 16px;
  margin-left: 8px;
  border-left: 1px solid var(--border);
  white-space: nowrap;
}
.nav-line-hint i { color: #06C755; }

/* Mobile nav toggler */
.navbar-toggler {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  margin: 5px 0;
  background: transparent;
}
.navbar-toggler-icon,
.navbar-light .navbar-toggler-icon,
.site-header-bar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(13,48,66,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 22px;
  height: 17px;
}
.site-header-bar .navbar-toggler {
  background: transparent !important;
  border: 1.5px solid rgba(13,48,66,0.18) !important;
  border-radius: 8px !important;
  padding: 7px 10px !important;
  margin: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  .site-header-bar .navbar { min-height: 60px; }
  .site-header-bar .navbar-collapse {
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 8px 0 14px;
  }
  .site-header-bar .nav-link { padding: 9px 16px !important; }
  .nav-line-hint { border-left: none; padding: 9px 16px; margin-left: 0; }
  .header-nav-cta { display: none; }
  .brand-logo img { width: 48px; height: 48px; }
  .brand-logo strong { font-size: 20px; }
  .brand-logo small { font-size: 13px; }
}

/* ── Hero — light airy background, two-column ── */
.hero-area {
  background: linear-gradient(135deg, #F7F4EC 0%, #EDF5F5 50%, #F7F4EC 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-area::before {
  content: "";
  position: absolute;
  top: -100px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(242,107,58,0.07);
  pointer-events: none;
}
.hero-area::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(242,107,58,0.05);
  pointer-events: none;
}
.hero-orb { display: none !important; }

.hero-textbox {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 36px rgba(13,48,66,0.10);
  border: 1.5px solid rgba(13,48,66,0.10);
  max-width: 520px;
}

.hero-kicker {
  display: inline-block;
  padding: 5px 16px;
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid rgba(242,107,58,0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.hero-area-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 14px;
}
.hero-area-badge i { font-size: 11px; }

.hero-textbox h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  background: none !important;
  -webkit-text-fill-color: var(--navy) !important;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.85;
  margin-bottom: 26px;
}
.hero-desc-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 5px 13px;
}
.trust-tags i { color: var(--blue); font-size: 12px; }

/* Hero right — photo showcase */
.hero-photo-showcase {
  max-width: 475px;
  width: 100%;
}
.hero-photo-single { max-width: 475px; }
.hero-photo-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(13,48,66,0.18);
}
.hero-photo-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
.hero-photo-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(13,48,66,0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}

/* Hero right — trust panel (orphaned, kept for compatibility) */
.hero-trust-panel {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 8px 32px rgba(13,48,66,0.09);
  max-width: 400px;
  width: 100%;
}
.hero-trust-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 20px;
}
.hero-trust-head img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-trust-head strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}
.hero-trust-head span {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
}
.hero-trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-trust-item i {
  width: 32px;
  height: 32px;
  background: var(--blue-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--blue);
}
.hero-trust-item div { display: flex; flex-direction: column; gap: 1px; padding-top: 4px; }
.hero-trust-item strong { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.hero-trust-item span { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.hero-trust-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  border-top: 1.5px solid var(--border);
  font-size: 13px;
  color: var(--text-sec);
  font-weight: 600;
}
.hero-trust-foot i { color: #06C755; font-size: 16px; }

/* ── Mid CTA ── */
.call-to-action-box {
  background: var(--bg-cool);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.action-style-box { }
.action-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}
.action-text { color: var(--text-sec); font-size: 14.5px; margin: 0; line-height: 1.75; }
.cta-line-btn {
  background: var(--navy) !important;
  color: #fff !important;
  font-weight: 700;
  border: none !important;
  box-shadow: 0 4px 14px rgba(13,48,66,0.2) !important;
}
.cta-line-btn:hover {
  background: var(--navy-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── Services ── */
.services { background: var(--white); }
.service-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 32px;
}
.service-type-tags span {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-sec);
  white-space: nowrap;
}
.service-card-row { margin-top: 4px; }
.service-group-header {
  margin: 18px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.service-group-header h3 {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: 0.02em;
}
.service-group-addon { margin-top: 36px; }

/* ── Process / FAQ intro line ── */
.process-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin: -16px 0 20px;
  line-height: 1.7;
}
.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--t);
  box-shadow: none;
  backdrop-filter: none;
  scroll-margin-top: 110px;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: #fff;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.service-icon i { font-size: 20px; color: var(--blue); }
.service-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 14px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 4px 0 4px 18px;
  position: relative;
  display: block;
}
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}
.service-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap var(--t);
  background: none !important;
  border: none !important;
  padding: 0 !important;
  min-height: auto !important;
  border-radius: 0 !important;
}
.service-link::after { content: " →"; }
.service-link:hover { gap: 8px; color: var(--blue-hover); box-shadow: none; }

/* ── Services bottom CTA ── */
.services-cta {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--bg-cool);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
}
.services-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.services-cta-text { display: flex; flex-direction: column; gap: 3px; }
.services-cta-text strong { font-size: 1rem; font-weight: 800; color: var(--navy); }
.services-cta-text span { font-size: 14px; color: var(--text-sec); }

/* ── Pricing ── */
.quote-method { background: var(--bg); }
.quote-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  transition: all var(--t);
  text-align: center;
  box-shadow: none;
  backdrop-filter: none;
}
.quote-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.quote-card > span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
  background: none;
  -webkit-text-fill-color: var(--blue);
}
.quote-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.quote-condition {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px !important;
}
.quote-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  margin: 0;
}

/* ── Promo banner ── */
.promo-section { background: var(--white); }
.promo-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #f5874a 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-copy h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
}
.promo-copy p { color: rgba(255,255,255,0.85); margin: 0; font-size: 14.5px; line-height: 1.7; }
.promo-copy small { display: block; font-size: 12px; color: rgba(255,255,255,0.60); margin-top: 8px; }
.promo-badge {
  flex-shrink: 0;
  background: rgba(255,255,255,0.16);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  text-align: center;
  min-width: 150px;
  color: #fff;
}
.promo-badge strong { display: block; font-size: 17px; font-weight: 900; margin-bottom: 2px; }
.promo-badge span { font-size: 12.5px; font-weight: 600; opacity: 0.88; }

/* ── Why us ── */
.why-us-area { background: var(--bg); }
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--t);
}
.why-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon i { color: var(--blue); font-size: 20px; }
.why-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.why-card p {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.8;
  margin: 0;
}

/* ── Hours ── */
.hours-area { background: var(--white); }
.hours-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.hours-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.hours-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hours-info-icon i {
  font-size: 20px;
  color: var(--blue);
}
.hours-info-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 4px;
}
.hours-info-time {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.hours-info-body p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  margin: 0;
}
.hours-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* ── Reviews ── */
.reviews-area { background: var(--bg-cool); }

.review-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--t), border-color var(--t);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(242,107,58,0.25);
}

.review-stars {
  font-size: 12px;
  color: #c9a84c;
  letter-spacing: 2px;
  line-height: 1;
  opacity: 0.75;
}

.review-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  margin: 0;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-left: none !important;
  font-style: normal !important;
  position: relative;
  z-index: 1;
  flex: 1;
}
.review-text::before {
  display: none !important;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.review-location {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.review-location i { color: var(--blue); font-size: 11px; }

.review-service {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 3px 11px;
  border-radius: 999px;
}

.reviews-privacy-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 28px auto 0;
  max-width: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  line-height: 1.8;
  text-align: left;
}
.reviews-privacy-note i {
  color: var(--blue);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Review placeholder cards */
.review-placeholder {
  background: var(--bg) !important;
  border: 1.5px dashed var(--border) !important;
  box-shadow: none !important;
}
.review-placeholder:hover {
  box-shadow: none !important;
  border-color: var(--border) !important;
}
.review-placeholder-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0;
}
.review-placeholder-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.booking-notice {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-sec);
  background: var(--blue-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-top: 0;
  margin-bottom: 32px;
  line-height: 1.65;
  text-align: left;
  max-width: 640px;
}
.booking-notice i { color: var(--blue); font-size: 16px; flex-shrink: 0; margin-top: 3px; }

/* ── Pre-booking notice ── */
.pre-booking-area { background: var(--bg-cool); }
.pre-booking-grid { margin-top: 4px; }
.pre-booking-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pre-booking-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.pre-booking-icon i {
  font-size: 17px;
  color: var(--blue);
}
.pre-booking-card h4 {
  font-size: 14.5px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  text-transform: none !important;
  margin: 0 0 8px !important;
  line-height: 1.4;
}
.pre-booking-card p {
  font-size: 13.5px;
  color: var(--text-sec);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

/* ── Process ── */
.process-area { background: var(--dark-section); }
.column-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2.5px solid var(--orange);
  display: inline-block;
}
/* Process area — 深色背景文字覆寫 */
.process-area .section-label {
  background: rgba(242,107,58,0.18);
  color: var(--orange);
}
.process-area .section-title {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.process-area .section-sub-title {
  color: rgba(255,255,255,0.6);
}
.process-area .column-title {
  color: #fff;
  border-bottom-color: var(--orange);
}
.process-area .process-intro {
  color: rgba(255,255,255,0.6);
}
.process-area .process-step h4 {
  color: #fff;
}
.process-area .process-step p {
  color: rgba(255,255,255,0.65);
}
.process-area .process-step:not(:last-child)::after {
  background: rgba(255,255,255,0.12);
}
/* FAQ 在同一深色 section 內 */
.process-area .faq-acc-item {
  border-bottom-color: rgba(255,255,255,0.12);
}
.process-area .faq-acc-item:first-child {
  border-top-color: rgba(255,255,255,0.12);
}
.process-area .faq-acc-q {
  color: #fff;
}
.process-area .faq-acc-q:hover {
  color: var(--orange);
}
.process-area .faq-acc-icon {
  color: var(--orange);
}
.process-area .faq-acc-a p {
  color: rgba(255,255,255,0.65);
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 18px; top: 38px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.process-step > span {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.process-step h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 6px 0 4px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  margin: 0;
}

/* ── FAQ Accordion ── */
.faq-accordion { display: flex; flex-direction: column; gap: 0; }
.faq-acc-item { border-bottom: 1px solid var(--border); }
.faq-acc-item:first-child { border-top: 1px solid var(--border); }
.faq-acc-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  line-height: 1.5;
}
.faq-acc-q:hover { color: var(--blue); }
.faq-acc-icon {
  font-size: 12px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.faq-acc-q[aria-expanded="true"] .faq-acc-icon { transform: rotate(180deg); }
.faq-acc-a {
  padding: 0 0 16px;
}
.faq-acc-a p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  margin: 0;
}

/* ── Cases ── */
.cases-area { background: var(--white); }
.case-compact {
  background: var(--blue-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: none;
  backdrop-filter: none;
}
.case-compact .section-title { margin-bottom: 8px; }
.case-compact h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.case-compact p { color: var(--text-sec); font-size: 14.5px; margin: 0; }
.case-grid { margin-top: 6px; }
.case-grid[hidden] { display: none; }
.case-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  box-shadow: none;
  backdrop-filter: none;
}
.case-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.case-compare figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.case-compare img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.case-compare span {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.48);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.case-content { padding: 16px; }
.case-tag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
}
.case-content dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
}
.case-content dl div { display: flex; flex-direction: column; }
.case-content dt { font-size: 11px; color: var(--text-muted); font-weight: 700; }
.case-content dd { font-size: 13px; color: var(--text); font-weight: 600; margin: 0; }

/* ── Cases Showcase (static before/after) ── */
.cases-showcase-area { background: var(--bg-cool); }
.case-card-simple {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 12px rgba(13,48,66,0.06);
}
.case-card-title {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  text-transform: none !important;
  padding: 18px 18px 12px;
  margin: 0 !important;
  border-bottom: 1px solid var(--border);
}
.case-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.case-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}
.case-photo-wrap + .case-photo-wrap {
  border-left: 2px solid var(--border);
}
.case-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.case-photo-label {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.02em;
}
.case-label-before {
  background: rgba(80,80,80,0.78);
  color: #fff;
}
.case-label-after {
  background: rgba(13,48,66,0.82);
  color: #fff;
}
.case-photo-desc {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 8px 0;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
.case-card-simple > .case-service-tag {
  display: inline-block;
  margin: 10px 18px 16px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.cases-privacy-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cases-privacy-note i { color: var(--blue); font-size: 12px; }

/* ── Final CTA ── */
.final-cta-area {
  background: var(--bg-cool);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 40px 0;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.final-cta-text h3 {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  margin: 0 0 6px !important;
  text-transform: none !important;
}
.final-cta-text p {
  font-size: 14px;
  color: var(--text-sec);
  margin: 0;
  line-height: 1.6;
}
.final-cta-btn { flex-shrink: 0; }

/* ── Contact ── */
.contact-area { background: var(--white); }
.contact-area .section-sub-title { margin-bottom: 16px; }
.contact-area .row.align-items-start { margin-top: 8px; }
.contact-info-box {
  background: var(--blue-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: none;
  backdrop-filter: none;
}
.contact-line-label {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  color: var(--navy);
  background: var(--blue-pale);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
}
.contact-info-box h3,
.contact-line-handle {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  background: none;
  -webkit-text-fill-color: var(--text);
  text-transform: none !important;
  letter-spacing: normal;
}
.contact-info-box p {
  font-size: clamp(17px, 1.25vw, 20px);
  color: var(--text-sec);
  margin-bottom: 22px;
  line-height: 1.7;
}
.contact-info-box ul { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-info-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--text-sec);
  padding: 7px 0;
  font-weight: 600;
}
.contact-info-box i { color: var(--blue); width: 18px; text-align: center; }
.contact-info-box a { color: var(--text-sec); }
.contact-info-box a:hover { color: var(--blue); }
.contact-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(16px, 1.1vw, 18px) !important;
  min-height: 48px !important;
  padding: 12px 28px !important;
}

/* Booking steps list */
.booking-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  counter-reset: booking-step;
}
.booking-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-sec);
  font-weight: 600;
  padding: 7px 0;
  counter-increment: booking-step;
}
.booking-steps li::before {
  content: counter(booking-step);
  width: 24px;
  height: 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.booking-info-list { list-style: none; padding: 0; margin: 0; }
.booking-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-sec);
  padding: 6px 0;
  font-weight: 600;
}
.booking-info-list i { color: var(--blue); width: 18px; text-align: center; }

/* Booking CTA card */
.booking-cta-card {
  background: var(--bg-cool);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.booking-cta-desc {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 28px;
}
.booking-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.btn-booking-main {
  font-size: 17px !important;
  padding: 15px 32px !important;
  min-height: 56px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(13,48,66,0.18) !important;
}
.btn-booking-main:hover {
  box-shadow: 0 6px 20px rgba(13,48,66,0.26) !important;
  transform: translateY(-1px);
}
.btn-booking-line {
  font-size: 14px !important;
  padding: 10px 20px !important;
  min-height: 42px !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  opacity: 0.88;
}
.booking-cta-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  display: block;
  max-width: 100%;
  text-align: left;
}
/* @aipinmoo 不斷行 */
.booking-cta-line-id { white-space: nowrap; }

/* Contact form */
.contact-form {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  height: auto;
  backdrop-filter: none;
}
.contact-form label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}
.form-control {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  font-size: 15px !important;
  color: var(--text) !important;
  background: var(--bg) !important;
  min-height: 46px;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-control:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(242,107,58,0.12) !important;
  outline: none !important;
  background: #fff !important;
}
.form-control option { background: #fff; color: var(--text); }
.form-note {
  font-size: 13.5px;
  color: var(--blue);
  margin-top: 12px;
  line-height: 1.6;
  min-height: 24px;
}

/* ── Footer ── */
#footer.footer { background: #082432 !important; }
#footer.footer::before { display: none; }
#footer .bg-overlay { background: #082432 !important; }
.footer-main { padding: 32px 0 20px; }

/* Footer 品牌欄 */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand img {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
}
.footer-brand h3 {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 2px;
  text-transform: none !important;
}
.footer-brand p { color: #D7E5EA; font-size: 12px; margin: 0; }
.footer-about > p { font-size: 14px; color: #D7E5EA; line-height: 1.75; }

/* Footer 欄位標題 */
.footer-widget .widget-title {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(255,255,255,0.16);
  text-transform: none !important;
  display: block;
  width: 180px;
  max-width: 100%;
}

/* Footer 服務項目列表 */
.footer-widget .list-arrow { list-style: none; padding: 0; margin: 0; }
.footer-widget .list-arrow li {
  font-size: 13px;
  color: #EAF3F5;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.footer-widget .list-arrow li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  min-height: 36px;
  color: #EAF3F5;
  text-decoration: none !important;
  transition: color 0.18s ease, padding-left 0.18s ease;
}
.footer-widget .list-arrow li a::before {
  content: "›";
  color: #F26B3A;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.footer-widget .list-arrow li a:hover {
  color: #F26B3A;
  padding-left: 4px;
  text-decoration: none !important;
}
.footer-widget .list-arrow-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}
.footer-widget .list-arrow-2col li {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

/* Footer 聯絡資訊欄 */
.footer-widget .working-hours {
  font-size: 14px;
  color: #D7E5EA;
  line-height: 1.9;
}
.footer-widget .working-hours a {
  color: #EAF3F5;
  text-decoration: none;
}
.footer-widget .working-hours a:hover { color: #F26B3A; }

/* LINE ID 在 footer 內保持白色系 */
#footer .line-id { color: #D7E5EA !important; }

/* Footer 文字型 CTA */
.footer-cta {
  margin-top: 14px;
  font-size: 13.5px;
  color: #AFC5CE;
  font-weight: 600;
  line-height: 1.6;
}
.footer-cta a {
  color: #BFDDEA;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(191,221,234,0.35);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.footer-cta a:hover {
  color: #EAF3F5;
  border-bottom-color: rgba(234,243,245,0.7);
  text-decoration: none;
}

/* 版權列 */
.copyright { background: rgba(0,0,0,0.28); padding: 14px 0; }
.copyright-info { font-size: 13px; color: #AFC5CE; text-align: center; }

/* ── Back to top ── */
.back-to-top { bottom: 24px; right: 24px; z-index: 200; }
.back-to-top .btn {
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 50%;
  background: var(--orange) !important;
  box-shadow: var(--shadow-md);
}
.back-to-top .btn:hover { background: var(--orange-hover) !important; }

/* ── Overrides for constra defaults ── */
.content-area, .bg-white { background: transparent !important; }
.section-bg { background: rgba(242,107,58,0.02) !important; }
.no-padding { padding: 0 !important; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-area { padding: 52px 0 44px; }
  .hero-textbox { padding: 32px 36px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 44px 0; }
  .section-title { font-size: 1.55rem; }
  .whyus-title { font-size: 1.75rem; }
  .section-sub-title { margin-bottom: 28px; }
  .contact-area .section-sub-title { margin-bottom: 12px; }

  .hero-area { padding: 28px 0 24px; min-height: auto; }
  .hero-textbox { padding: 22px 20px; border-radius: 16px; max-width: 100%; }
  .hero-kicker { margin-bottom: 6px; font-size: 12px; }
  .hero-area-badge { margin-bottom: 10px; font-size: 12px; }
  .hero-textbox h1 { font-size: 1.65rem; line-height: 1.25; margin-bottom: 10px; }
  .hero-desc { font-size: 0.9rem; margin-bottom: 18px; line-height: 1.75; }
  .hero-actions { display: grid; gap: 10px; margin-bottom: 16px; }
  .hero-actions .btn { width: 100%; min-height: 48px; }
  .trust-tags { gap: 6px; }

  .hero-photo-col { display: block !important; margin-top: 22px; }
  .hero-photo-col .hero-photo-single { max-width: 100%; }
  .hero-photo-col .hero-photo-showcase { max-width: 100%; }
  .hero-photo-col .hero-photo-frame { border-radius: 14px; }
  .hero-photo-col .hero-photo-frame img {
    height: clamp(260px, 72vw, 320px);
    object-fit: cover;
    object-position: center;
  }

  .top-bar-content { flex-direction: column; align-items: stretch; gap: 8px; padding: 8px 0; }
  .top-bar-cta { width: 100%; text-align: center; justify-content: center; }

  .promo-banner { padding: 28px 22px; }
  .promo-banner h3 { font-size: 1.1rem; }

  .final-cta-area { padding: 32px 0; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .final-cta-btn { width: 100%; text-align: center; justify-content: center; }
  .booking-notice { font-size: 15px; max-width: 100%; margin-bottom: 24px; }

  .case-compact { padding: 24px; }

  .contact-info-box {
    margin-bottom: 32px;
    padding: 26px 22px;
  }
  .contact-info-box p { font-size: 16px; }
  .contact-info-box li { font-size: 16px; }
  .contact-line-label { font-size: 16px; }
  .booking-cta-card { padding: 28px 22px; }
  .btn-booking-main, .btn-booking-line { width: 100%; }

  .hours-two-col { grid-template-columns: 1fr; }

  .footer-main { padding: 28px 0 20px; }
  .list-arrow-2col { grid-template-columns: 1fr 1fr; }
  .list-arrow li a { min-height: 44px; padding: 6px 0; }
}

@media (max-width: 575px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .btn { font-size: 14.5px; }

  .hero-area { padding: 22px 0 18px; }
  .hero-textbox { padding: 18px 16px; }
  .hero-textbox h1 { font-size: 1.5rem; line-height: 1.25; }
  .trust-tags span { font-size: 12px; padding: 4px 10px; }
  .section-padding { padding: 36px 0; }
  .hero-photo-col .hero-photo-frame img {
    height: clamp(240px, 68vw, 280px);
  }

  .service-card { padding: 20px 18px; }
  .quote-card { padding: 22px 18px; }
  .promo-banner { flex-direction: column; }
  .promo-badge { width: 100%; }
  .services-cta-inner { flex-direction: column; align-items: flex-start; }
  .services-cta-inner .btn { width: 100%; text-align: center; justify-content: center; }

  .case-compare { grid-template-columns: 1fr; }
  .case-compact { flex-direction: column; }
  .case-compact .btn { width: 100%; }

  .hours-info-card { flex-direction: column; gap: 12px; }

  .faq-acc-q { padding: 14px 0; font-size: 14px; }
  .faq-acc-a { padding-bottom: 12px; }

  /* 手機版：評價隱私提醒 */
  .reviews-privacy-note {
    max-width: 100%;
    margin-top: 20px;
    justify-content: flex-start;
    padding: 0 4px;
  }

  /* 手機版：預約 CTA 提醒文字 */
  .booking-cta-note {
    font-size: 12.5px;
    line-height: 1.8;
  }

  /* 手機版：回到頂部按鈕位置調整 */
  .back-to-top { bottom: 88px; right: 16px; }
  .back-to-top .btn { width: 48px; height: 48px; }

  /* 手機版安全網 — 防止任何元素造成橫向滑動 */
  .why-card, .pre-booking-card, .review-card,
  .quote-card, .service-card, .case-card-simple { max-width: 100%; }
  .promo-banner { overflow: hidden; }
  img { max-width: 100%; }

  /* Footer 手機版縮緊 */
  .footer-main { padding: 24px 0 16px; }
  .footer-brand { gap: 10px; }
  .footer-brand img { width: 36px; height: 36px; }
  .footer-brand h3 { font-size: 15px; }
  .footer-widget .working-hours { font-size: 13.5px; line-height: 1.8; }
}
