/* === 旅乘 v2 — 新增區塊樣式 === */

/* ============= 預約流程 SOP ============= */
.section-sop {
  padding: 100px 0 110px;
  background: var(--c-tertiary);
  position: relative;
}
.sop-head { text-align: center; margin-bottom: 70px; }
.sop-head .section-title { margin-top: 14px; }
.sop-head p { color: var(--c-ink-2); font-size: 15px; margin: 14px 0 0; }
.sop-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.sop-steps::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 12.5%;
  right: 12.5%;
  border-top: 2px dashed var(--c-secondary-2);
  z-index: 0;
}
.sop-step {
  background: #fff;
  border-radius: 16px;
  padding: 0 24px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(20, 48, 114, .06);
  border: 1px solid var(--c-line);
}
.sop-step .num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: -28px auto 18px;
  box-shadow: 0 8px 18px rgba(20, 48, 114, .25);
  border: 4px solid var(--c-tertiary);
}
.sop-step .ic { font-size: 34px; color: var(--c-primary); margin-bottom: 14px; }
.sop-step h4 { font-family: var(--f-serif); font-size: 20px; margin: 0 0 10px; }
.sop-step p { font-size: 14px; color: var(--c-ink-2); line-height: 1.75; margin: 0; }

/* ============= 車型介紹 ============= */
.section-fleet { padding: 100px 0; background: var(--c-bg); }
.fleet-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px; gap: 32px; flex-wrap: wrap;
}
.fleet-head .left { max-width: 560px; }
.fleet-head .right { color: var(--c-ink-2); font-size: 14px; line-height: 1.8; max-width: 360px; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(20, 48, 114, .10); }
.fleet-pic { height: 200px; background-size: cover; background-position: center; position: relative; }
.fleet-pic .badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--c-secondary); color: var(--c-primary-deep);
  font-size: 12px; padding: 5px 12px; border-radius: 999px; font-weight: 700;
}
.fleet-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.fleet-body h4 { font-family: var(--f-serif); font-size: 22px; margin: 0 0 4px; }
.fleet-body .model { color: var(--c-ink-3); font-size: 13px; margin-bottom: 16px; }
.fleet-specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 14px 0; border-top: 1px dashed var(--c-line);
  border-bottom: 1px dashed var(--c-line);
  margin-bottom: 18px;
}
.fleet-spec { text-align: center; }
.fleet-spec i { color: var(--c-primary); font-size: 16px; display: block; margin-bottom: 6px; }
.fleet-spec small { font-size: 11px; color: var(--c-ink-3); display: block; }
.fleet-spec b { font-size: 14px; color: var(--c-ink); }
.fleet-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.fleet-price small { font-size: 12px; color: var(--c-ink-3); display: block; }
.fleet-price b { font-size: 24px; color: var(--c-primary); font-family: var(--f-serif); }
.fleet-price b sub { font-size: 12px; color: var(--c-ink-2); margin-left: 4px; font-weight: 400; bottom: 0; }
.fleet-foot .pill {
  background: var(--c-primary); color: #fff; font-size: 13px;
  padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: opacity .25s;
}
.fleet-foot .pill:hover { opacity: .85; }

/* ============= 行程範例 ============= */
.section-itin { padding: 100px 0; background: var(--c-tertiary); }
.itin-head { text-align: center; }
.itin-tabs { display: flex; gap: 8px; justify-content: center; margin: 32px 0 40px; flex-wrap: wrap; }
.itin-tab {
  padding: 10px 22px; border-radius: 999px; background: #fff;
  font-size: 14px; cursor: pointer; border: 1px solid var(--c-line);
  transition: all .25s;
}
.itin-tab.on { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.itin-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.itin-main { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 12px 32px rgba(20, 48, 114, .06); }
.itin-main .route-name { font-family: var(--f-serif); font-size: 28px; margin: 0 0 8px; }
.itin-main .route-meta {
  color: var(--c-ink-2); font-size: 14px; margin-bottom: 24px;
  display: flex; gap: 20px; flex-wrap: wrap;
}
.itin-main .route-meta i { color: var(--c-primary); margin-right: 6px; }
.itin-days { border-left: 2px solid var(--c-line); padding-left: 24px; margin: 0 0 24px; }
.itin-day { position: relative; padding: 8px 0; }
.itin-day + .itin-day { margin-top: 6px; }
.itin-day::before {
  content: ""; position: absolute; left: -31px; top: 14px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--c-primary);
}
.itin-day b { font-family: var(--f-serif); font-size: 15px; color: var(--c-primary); display: block; margin-bottom: 4px; }
.itin-day p { margin: 0; font-size: 14px; color: var(--c-ink-2); line-height: 1.75; }
.itin-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; border-top: 1px dashed var(--c-line);
}
.itin-foot .price b { color: var(--c-primary); font-size: 26px; font-family: var(--f-serif); }
.itin-foot .price small { color: var(--c-ink-3); font-size: 12px; display: block; }
.itin-side { display: flex; flex-direction: column; gap: 24px; }
.itin-pic { flex: 1; min-height: 220px; background-size: cover; background-position: center; border-radius: 20px; }
.itin-cta {
  background: var(--c-primary); color: #fff;
  border-radius: 20px; padding: 28px; text-align: center;
}
.itin-cta h5 { font-family: var(--f-serif); font-size: 20px; margin: 0 0 8px; }
.itin-cta p { font-size: 13px; opacity: .85; margin: 0 0 16px; line-height: 1.7; }
.itin-cta .btn { background: var(--c-secondary); color: var(--c-primary-deep); }

/* ============= 司機團隊 ============= */
.section-drivers { padding: 100px 0; background: var(--c-bg); }
.drivers-head { text-align: center; margin-bottom: 48px; }
.drivers-head .section-title { margin-top: 14px; }
.drivers-head p { color: var(--c-ink-2); font-size: 15px; max-width: 600px; margin: 16px auto 0; line-height: 1.8; }
.drivers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.driver-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--c-line); padding-bottom: 24px;
  transition: transform .3s, box-shadow .3s;
}
.driver-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20, 48, 114, .08); }
.driver-pic { height: 240px; background-size: cover; background-position: center top; position: relative; }
.driver-pic::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 60%;
  background: linear-gradient(180deg, transparent, rgba(20, 48, 114, .55));
}
.driver-pic .stars { position: absolute; bottom: 12px; left: 14px; color: var(--c-secondary); font-size: 14px; z-index: 1; letter-spacing: 1px; }
.driver-pic .review { position: absolute; bottom: 12px; right: 14px; color: #fff; font-size: 12px; z-index: 1; }
.driver-card h4 { font-family: var(--f-serif); font-size: 20px; margin: 18px 24px 4px; text-align: center; }
.driver-card .role { font-size: 13px; color: var(--c-ink-3); margin-bottom: 14px; text-align: center; }
.driver-card .lang { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin: 0 14px 14px; }
.driver-card .lang span {
  background: var(--c-tertiary); color: var(--c-primary);
  font-size: 11px; padding: 4px 10px; border-radius: 999px; font-weight: 600;
}
.driver-card .years {
  font-size: 13px; color: var(--c-ink-2); text-align: center;
  padding-top: 14px; margin: 0 24px;
  border-top: 1px dashed var(--c-line);
}
.driver-card .years b { color: var(--c-primary); font-family: var(--f-serif); font-size: 18px; margin-right: 4px; }

/* 北海道亮點駕駛 */
.driver-card.hl { border-color: var(--c-primary); position: relative; }
.driver-card.hl::before {
  content: ""; position: absolute; inset: 0; border-radius: 18px;
  box-shadow: 0 0 0 2px var(--c-secondary); pointer-events: none;
}
.driver-pic .pin {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--c-secondary); color: var(--c-primary-deep);
  font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px;
}
.driver-pic .pin i { font-size: 11px; }

/* ============= 車型介紹 — 橫向滑動 ============= */
.fleet-scroller {
  position: relative; margin: 0 -24px;
}
.fleet-track {
  display: flex; gap: 22px;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px max(24px, calc((100% - 1280px) / 2)) 24px;
  scroll-padding-left: max(24px, calc((100% - 1280px) / 2));
  -webkit-overflow-scrolling: touch;
}
.fleet-track::-webkit-scrollbar { display: none; }
.fleet-track .fleet-card {
  flex: 0 0 320px; scroll-snap-align: start;
}
.fleet-arr {
  position: absolute; top: 90px; z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--c-line);
  color: var(--c-primary); cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(20,48,114,.12);
  transition: all .25s;
}
.fleet-arr.prev { left: 8px; }
.fleet-arr.next { right: 8px; }
.fleet-arr:hover { background: var(--c-primary); color: #fff; }

/* ============= 熱門景點 — 移除價格樣式新增地區/季節 ============= */
.pcard-region {
  position: absolute; top: 14px; left: 14px;
  background: rgba(20,48,114,.92); color: #fff;
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  letter-spacing: .04em;
}
.pcard-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px;
  border-top: 1px dashed var(--c-line);
}
.pcard-season {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c-ink-2); font-size: 13px;
}
.pcard-season i { color: var(--c-primary); }

/* ============= FAQ ============= */
.section-faq { padding: 100px 0; background: var(--c-tertiary); }
.faq-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.faq-side .section-title { margin-top: 14px; }
.faq-side p { color: var(--c-ink-2); font-size: 14px; line-height: 1.85; margin: 18px 0 24px; }
.faq-side .contact-card {
  background: #fff; border-radius: 16px; padding: 24px;
  border: 1px solid var(--c-line); display: flex; gap: 14px; align-items: center;
}
.faq-side .contact-card .ic {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  flex-shrink: 0;
}
.faq-side .contact-card small { color: var(--c-ink-3); font-size: 12px; display: block; }
.faq-side .contact-card b { font-family: var(--f-serif); font-size: 18px; color: var(--c-primary); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border-radius: 14px; border: 1px solid var(--c-line);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: var(--f-serif); font-size: 17px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--f-serif); font-weight: 400;
  font-size: 26px; color: var(--c-primary); transition: transform .3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--c-primary); }
.faq-item .a {
  padding: 18px 24px 22px; color: var(--c-ink-2);
  font-size: 14px; line-height: 1.85;
  border-top: 1px dashed var(--c-line);
}
.faq-item .a strong { color: var(--c-ink); }

/* ============= Floating LINE ============= */
.float-actions {
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  display: flex; flex-direction: column; gap: 10px;
}
.float-actions a {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: transform .25s;
  position: relative;
}
.float-actions a.line { background: #06c755; }
.float-actions a.tg { background: #229ed9; font-size: 22px; }
.float-actions a.top { background: var(--c-primary); font-size: 18px; }
.float-actions a:hover { transform: scale(1.08); }
.float-actions a .tip {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%);
  background: var(--c-primary); color: #fff;
  font-size: 12px; padding: 6px 12px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.float-actions a .tip::after {
  content: ""; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--c-primary);
}
.float-actions a:hover .tip { opacity: 1; }

/* ============= HERO 補充 ============= */
.hero-tagrow {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff; font-size: 13px; padding: 8px 14px; border-radius: 999px;
}
.hero-chip i { color: var(--c-secondary); font-size: 12px; }

/* ===== 免費詢價按鈕：圓形 icon 按鈕（極簡）===== */
.search-go {
  background: var(--c-primary) !important;
  color: #fff !important;
  border: 0 !important;
  width: 64px; height: 64px;
  padding: 0 !important;
  margin: 8px 8px 8px 4px !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0 !important;
  box-shadow: 0 6px 18px rgba(20, 48, 114, .28);
  transition: background .25s, transform .25s, box-shadow .25s;
  position: relative;
}
.search-go i {
  font-size: 22px !important;
  background: transparent !important;
  color: #fff !important;
  width: auto !important; height: auto !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.search-go::after {
  content: "免費詢價";
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--c-primary);
  white-space: nowrap;
}
.search-go:hover {
  background: var(--c-primary-deep) !important;
  opacity: 1 !important;
  transform: translateY(-2px) rotate(-4deg);
  box-shadow: 0 10px 24px rgba(20, 48, 114, .4);
}

/* ===== 日式背景關閉（使用純色底）===== */
body {
  background-color: var(--c-bg);
}

/* TRUST STRIP 純深色 */
.trust-strip {
  background: var(--c-primary);
  color: #fff;
  padding: 96px 0 40px;
  border-top: 4px solid var(--c-secondary);
  position: relative;
}
.trust-strip > * { position: relative; z-index: 1; }
.trust-strip .wrap {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; align-items: center;
}
.ts-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.14);
  padding: 4px 12px;
}
.ts-item:last-child { border-right: 0; }
.ts-num {
  font-family: var(--f-serif);
  font-size: 44px; font-weight: 700; line-height: 1;
  color: var(--c-secondary);
}
.ts-num sub { font-size: 16px; margin-left: 3px; bottom: 0; color: #fff; opacity: .8; font-weight: 500; }
.ts-lbl { font-size: 12px; line-height: 1.6; opacity: .85; }

/* ============= 必訪景點 — 滿版橫向滑動 ============= */
.svc-bleed { padding: 100px 0 110px; background: var(--c-bg); overflow: hidden; }
.svc-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 36px; flex-wrap: wrap;
}
.svc-head .section-title { margin-top: 14px; }
.svc-lead {
  color: var(--c-ink-2); font-size: 14px; line-height: 1.85;
  margin: 16px 0 0; max-width: 520px;
}
.svc-arrows { display: flex; gap: 10px; }
.svc-arr {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 1px solid var(--c-line);
  color: var(--c-primary); cursor: pointer;
  display: grid; place-items: center;
  transition: all .25s; font-size: 14px;
}
.svc-arr:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); transform: translateY(-2px); }
.services-scroller { width: 100%; }
.services-grid {
  grid-template-columns: none !important;
  display: flex !important;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px max(24px, calc((100% - 1280px) / 2)) 18px;
  scroll-padding-left: max(24px, calc((100% - 1280px) / 2));
  -webkit-overflow-scrolling: touch;
}
.services-grid::-webkit-scrollbar { display: none; }
.services-grid .svc {
  flex: 0 0 calc((100vw - 80px) / 4.2);
  max-width: 320px;
  min-width: 230px;
  height: 380px;
  scroll-snap-align: start;
  border-radius: 200px 200px 16px 16px;
  position: relative;
  overflow: hidden;
  background-size: cover; background-position: center;
}
.services-grid .svc::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,48,114,0) 40%, rgba(20,48,114,.78) 100%);
}
.svc-region {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.92); color: var(--c-primary);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 999px; z-index: 2;
}
.svc-info {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  color: #fff; z-index: 2;
}
.svc-info b { display: block; font-family: var(--f-serif); font-size: 22px; margin-bottom: 4px; }
.svc-info small { font-size: 12px; opacity: .85; }
.services-grid .svc:hover .svc-mask { opacity: 1; }

/* ============= 真實旅客心得 ============= */
.section-reviews { padding: 100px 0 110px; background: var(--c-tertiary); position: relative; }
.rv-head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 40px; margin-bottom: 48px;
}
.rv-stat {
  background: #fff; border: 1px solid var(--c-line); border-radius: 18px;
  padding: 22px 28px; text-align: center; min-width: 240px;
  box-shadow: 0 12px 30px rgba(20,48,114,.06);
}
.rv-stat .big {
  font-family: var(--f-serif); font-size: 56px;
  color: var(--c-primary); line-height: 1; font-weight: 700;
}
.rv-stat .big span { font-size: 22px; color: var(--c-ink-3); margin-left: 4px; font-weight: 400; }
.rv-stat .stars-row { color: var(--c-secondary-2); font-size: 18px; letter-spacing: 3px; margin: 8px 0; }
.rv-stat-sub { font-size: 12px; color: var(--c-ink-2); }
.rv-stat-sub b { color: var(--c-primary); }
.rv-grid { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 24px; align-items: start; }
.rv-card {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: 20px; padding: 32px 28px 24px;
  position: relative;
  transition: transform .35s, box-shadow .35s;
}
.rv-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(20,48,114,.10); }
.rv-card.feat { background: var(--c-primary); color: rgba(255,255,255,0.92); border: none; }
.rv-quote { position: absolute; top: -18px; left: 28px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--c-secondary); color: var(--c-primary);
  display: grid; place-items: center; font-size: 16px; }
.rv-card.feat .rv-quote { background: var(--c-secondary); }
.rv-text {
  font-size: 14px; line-height: 1.85; margin: 6px 0 22px;
  color: var(--c-ink-2);
  text-wrap: pretty;
}
.rv-card.feat .rv-text { color: rgba(255,255,255,0.92); }
.rv-pic {
  height: 160px; border-radius: 14px;
  background-size: cover; background-position: center;
  margin-bottom: 18px;
}
.rv-meta {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 12px; align-items: center;
  padding-top: 18px; border-top: 1px dashed var(--c-line);
}
.rv-card.feat .rv-meta { border-top-color: rgba(255,255,255,0.2); }
.rv-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid var(--c-secondary);
}
.rv-meta b { display: block; font-size: 14px; }
.rv-meta small { display: block; font-size: 12px; color: var(--c-ink-3); margin-top: 2px; }
.rv-card.feat .rv-meta small { color: rgba(255,255,255,0.65); }
.rv-stars { color: var(--c-secondary); letter-spacing: 1.5px; font-size: 13px; }
.rv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.rv-tags span {
  background: var(--c-tertiary); color: var(--c-primary);
  font-size: 11px; padding: 4px 10px; border-radius: 999px; font-weight: 600;
}
.rv-card.feat .rv-tags span { background: rgba(255,255,255,0.15); color: var(--c-secondary); }
.rv-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px; flex-wrap: wrap; gap: 20px;
}
.rv-more {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--c-primary); font-weight: 600;
  border-bottom: 2px solid var(--c-primary); padding-bottom: 6px;
}
.rv-more:hover { gap: 14px; }
.rv-platforms { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: var(--c-ink-2); }
.rv-platforms i { color: var(--c-primary); margin-right: 6px; font-size: 15px; }

/* ============= 合作品牌 — 重作 ============= */
.section-brands .brands-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-brands .brands-head .section-title { margin-top: 14px; }
.section-brands .brands-head p { color: var(--c-ink-2); font-size: 14px; line-height: 1.85; margin-top: 16px; }
.brands-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin-bottom: 32px;
}
.brand-chip {
  background: #fff; border: 1px solid var(--c-line); border-radius: 12px;
  padding: 18px 12px; text-align: center;
  transition: transform .25s, border-color .25s;
}
.brand-chip:hover { transform: translateY(-3px); border-color: var(--c-secondary-2); }
.brand-chip b {
  display: block; font-family: var(--f-serif); font-size: 17px;
  color: var(--c-primary); letter-spacing: 0.04em; margin-bottom: 4px;
}
.brand-chip small { font-size: 11px; color: var(--c-ink-3); letter-spacing: 0.08em; }
.brands-press {
  background: var(--c-tertiary); border-radius: 14px;
  padding: 22px 32px; display: flex; align-items: center; gap: 18px;
  border-left: 4px solid var(--c-primary);
  flex-wrap: wrap;
}
.brands-press i { color: var(--c-primary); font-size: 22px; }
.brands-press span {
  flex: 1; font-family: var(--f-serif); font-size: 18px;
  color: var(--c-primary); line-height: 1.6; min-width: 280px;
}
.brands-press small { color: var(--c-ink-3); font-size: 12px; }

/* ============= responsive ============= */
@media (max-width: 1024px) {
  .sop-steps { grid-template-columns: repeat(2, 1fr); }
  .sop-steps::before { display: none; }
  .fleet-track .fleet-card { flex: 0 0 280px; }
  .itin-grid { grid-template-columns: 1fr; }
  .drivers-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { padding-top: 120px; }
  .faq-row { grid-template-columns: 1fr; }
  .trust-strip .wrap { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .ts-item:nth-child(3) { border-right: 0; }
  .rv-head { grid-template-columns: 1fr; }
  .rv-grid { grid-template-columns: 1fr; }
  .brands-row { grid-template-columns: repeat(3, 1fr); }
  .services-grid .svc { flex-basis: 280px; }
}
@media (max-width: 640px) {
  .sop-steps { grid-template-columns: 1fr; }
  .fleet-track .fleet-card { flex: 0 0 260px; }
  .drivers-grid { grid-template-columns: 1fr; }
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .ts-item { border-right: 0 !important; }
  .brands-row { grid-template-columns: repeat(2, 1fr); }
  .svc-head { flex-direction: column; align-items: flex-start; }
  .services-grid .svc { flex-basis: 240px; height: 320px; min-width: 200px; }
  .rv-stat { width: 100%; }
}

/* ================================================ */
/* =========== v3 ENHANCEMENTS (新增) ============== */
/* ================================================ */

/* ----- Hero carousel ----- */
.hero-v3 { height: 660px; overflow: hidden; }
.hero-v3 .hero-slides { position: absolute; inset: 0; }
.hero-v3 .hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.2s ease, transform 8s ease;
  pointer-events: none;
}
.hero-v3 .hero-slide.is-active { opacity: 1; transform: scale(1.0); pointer-events: auto; }
.hero-v3 .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-v3 .hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,48,114,0.10) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.50) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.0) 50%);
}
.hero-v3 .hero-content {
  left: 8%; top: 32%;
  z-index: 4;
}
.hero-v3 .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.18em; color: #fff;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 16px; border-radius: 50px;
  margin-bottom: 18px;
}
.hero-v3 .hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-secondary);
  box-shadow: 0 0 0 4px rgba(223,185,146,0.35);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot { 50% { box-shadow: 0 0 0 8px rgba(223,185,146,0); } }
.hero-v3 .hero-sub {
  font-size: 28px; opacity: 0.92; margin-bottom: 6px;
  animation: fadeUp .8s ease both;
}
.hero-v3 .hero-title {
  font-size: 76px; line-height: 1.05;
  animation: fadeUp .9s .1s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero-v3 .hero-tagrow { animation: fadeUp 1s .2s ease both; }

/* hero side dots */
.hero-dots {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  z-index: 4;
  display: flex; flex-direction: column; gap: 18px;
}
.hero-dots .hd {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.55); font-size: 13px;
  letter-spacing: 0.12em;
  cursor: pointer;
  padding-left: 0;
  transition: color .3s, padding .3s;
}
.hero-dots .hd b { font-family: var(--f-serif); font-size: 18px; font-weight: 400; }
.hero-dots .hd i { font-style: normal; opacity: 0; transition: opacity .3s; }
.hero-dots .hd::before {
  content: "";
  width: 18px; height: 1px;
  background: rgba(255,255,255,0.4);
  transition: width .3s, background .3s;
}
.hero-dots .hd.is-active { color: #fff; padding-left: 4px; }
.hero-dots .hd.is-active b { color: var(--c-secondary); }
.hero-dots .hd.is-active i { opacity: 1; }
.hero-dots .hd.is-active::before { width: 44px; background: var(--c-secondary); }

/* hero arrows redesign */
.hero-v3 .hero-arrows {
  position: absolute; bottom: 100px; right: 5%;
  z-index: 4;
  display: flex; gap: 10px;
}
.hero-v3 .hero-arrows .a {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s;
}
.hero-v3 .hero-arrows .a:hover {
  background: var(--c-secondary); border-color: var(--c-secondary); color: var(--c-primary);
  transform: translateY(-2px);
}

/* hero live booking ticker */
.hero-ticker {
  position: absolute; left: 0; right: 0; bottom: 26px;
  z-index: 4;
  display: flex; align-items: center; gap: 14px;
  padding: 0 8%;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.hero-ticker .tk-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.25);
  animation: pulseDot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-ticker .tk-track {
  overflow: hidden; flex: 1;
  display: flex;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.hero-ticker .tk-track span {
  flex-shrink: 0; padding: 0 36px; white-space: nowrap;
  animation: tkScroll 32s linear infinite;
}
@keyframes tkScroll { from { transform: translateX(100%); } to { transform: translateX(-400%); } }

/* ----- Scroll reveal ----- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.rv.rv-in { opacity: 1; transform: none; }
.hero.rv { opacity: 1; transform: none; }   /* hero shouldn't fade */

/* ----- Sticky quick-quote (the .quote in .float-actions) ----- */
.float-actions .quote {
  background: var(--c-secondary); color: var(--c-primary);
  opacity: 0; transform: translateY(20px) scale(.9);
  transition: all .4s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
}
.float-actions .quote.on {
  opacity: 1; transform: none; pointer-events: auto;
}
.float-actions .quote:hover {
  background: var(--c-primary); color: var(--c-secondary);
  transform: translateY(-3px);
}

/* ----- v3: alternating section bg rhythm ----- */
.section-popular,
.section-itin,
.section-blog,
.section-drivers { background: #fff; }
.section-fleet,
.section-faq,
.section-reviews { background: var(--c-tertiary); }

/* divider waves between adjacent same-color sections (optional - mild) */

/* ===== v3: \u76ee\u7684\u5730\u5361\u7247 3 \u5f35\u7248 ===== */
.dest-cards { grid-template-columns: repeat(3, 1fr) !important; gap: 24px !important; }
.dest-card-pic { height: 420px !important; }

/* ===== v3: \u8eca\u578b\u6eff\u7248 + \u5361\u7247\u52a0\u5bec ===== */
.section-fleet-bleed .fleet-track .fleet-card { flex: 0 0 380px; }
.fleet-arr { top: 110px; }
@media (max-width: 980px) {
  .dest-cards { grid-template-columns: 1fr !important; }
  .section-fleet-bleed .fleet-track .fleet-card { flex: 0 0 300px; }
}
@media (max-width: 640px) {
  .section-fleet-bleed .fleet-track .fleet-card { flex: 0 0 260px; }
}

/* ===== v3: Facebook \u6d6e\u52d5\u6309\u9215 ===== */
.float-actions a.fb { background: #1877f2; }
.trust-strip { padding-top: 120px !important; }

/* ===== v3: SOP step — 數字與 icon 拆開不打架 ===== */
.sop-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: stretch;
}
.sop-steps::before { display: none; }
.sop-step {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  text-align: left !important;
}
.sop-head-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.sop-num {
  font-family: var(--f-serif);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.sop-line {
  flex: 1;
  height: 1px;
  background: var(--c-secondary);
  opacity: .6;
}
.sop-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-tertiary);
  color: var(--c-primary);
  margin-bottom: 14px !important;
  font-size: 18px !important;
}
.sop-step h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px !important;
  color: var(--c-ink);
}
.sop-step p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--c-ink-2);
  margin: 0 !important;
}

/* ===== v3: 車型介紹滿版 ===== */
.section-fleet-bleed { padding: 100px 0; }
.section-fleet-bleed .fleet-scroller {
  margin: 0;
  overflow: visible;
}
.section-fleet-bleed .fleet-track {
  padding-left: max(24px, calc((100vw - 1280px) / 2));
  padding-right: max(24px, calc((100vw - 1280px) / 2));
  scroll-padding-left: max(24px, calc((100vw - 1280px) / 2));
}
.section-fleet-bleed .fleet-arr.prev {
  left: max(24px, calc((100vw - 1280px) / 2));
}
.section-fleet-bleed .fleet-arr.next {
  right: max(24px, calc((100vw - 1280px) / 2));
}
.section-fleet-bleed .fleet-arr { top: 110px; }
@media (max-width: 980px) {
  .sop-steps { grid-template-columns: repeat(2, 1fr); }
  .sop-num { font-size: 44px; }
}
@media (max-width: 640px) {
  .sop-steps { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 980px) {
  .hero-v3 { height: 560px; }
  .hero-v3 .hero-title { font-size: 48px; }
  .hero-v3 .hero-sub { font-size: 20px; }
  .hero-dots { display: none; }
  .hero-ticker { font-size: 11px; padding: 0 5%; bottom: 12px; }
  .hero-v3 .hero-arrows { bottom: 80px; }
}
@media (max-width: 640px) {
  .hero-v3 { height: 520px; }
  .hero-v3 .hero-content { top: 22%; left: 5%; right: 5%; }
  .hero-v3 .hero-title { font-size: 36px; }
  .hero-v3 .hero-sub { font-size: 16px; }
  .hero-v3 .hero-eyebrow { font-size: 11px; padding: 6px 12px; }
  .hero-v3 .hero-tagrow { gap: 6px; }
  .hero-v3 .hero-chip { font-size: 11px; padding: 6px 10px; }
  .hero-v3 .hero-arrows { display: none; }
  .hero-ticker { display: none; }
}


/* ===== v3-final: 目的地橫向滑動 ===== */
.dest-cards-scroll {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 24px !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 12px 4px 18px !important;
}
.dest-cards-scroll::-webkit-scrollbar { display: none; }
.dest-cards-scroll .dest-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 280px;
  scroll-snap-align: start;
}
.dest-cards-scroll .dest-card-pic { height: 420px !important; }
@media (max-width: 980px) {
  .dest-cards-scroll .dest-card { flex: 0 0 80%; }
}

/* ===== v3-r3: eyebrow 純文字 ===== */
.eyebrow {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 0 !important;
  font-size: 12px !important;
  color: var(--c-primary) !important;
  letter-spacing: .22em !important;
  font-weight: 500 !important;
  cursor: default;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--c-secondary) !important; }
.eyebrow .ic-plane { display: none !important; }

/* ===== v3-final: 公告跑馬燈 ===== */
.header-info-v3 .header-info-left {
  flex: 1; overflow: hidden;
  display: flex; align-items: center; gap: 12px;
}


  3%, 30%            { opacity: 1; transform: translateY(0); }
  36%, 63%           { opacity: 1; transform: translateY(0); }
  69%, 96%           { opacity: 1; transform: translateY(0); }
}
/* 修正：讓 pill 跟著三則消息同步顯示 */

  30%  { opacity: 1; }
  33%  { opacity: 0; }
  36%  { opacity: 1; }
  63%  { opacity: 1; }
  66%  { opacity: 0; }
  69%  { opacity: 1; }
  96%  { opacity: 1; }
  100% { opacity: 0; }
}




/* ===== v3 FINAL CONSOLIDATED ===== */

/* 搜尋列：浮在 hero 與 trust-strip 之間 */
.hero, .hero.hero-v3 { overflow: hidden !important; padding-bottom: 0; }
.search-bar-wrap {
  position: relative;
  z-index: 30;        /* 低於 header(50) 高於內容 */
  max-width: 1280px;
  margin: -44px auto -44px;
  padding: 0 24px;
  pointer-events: none;
}
.search-bar-wrap .search-bar {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0 auto;
  z-index: 30 !important;
  pointer-events: auto;
  box-shadow: 0 18px 40px rgba(20,48,114,.22);
}
.search-cell.open .search-cell-popup { z-index: 35 !important; }
.trust-strip { padding-top: 110px !important; z-index: 1; }

/* 公告跑馬燈穩定 */
.announce-vertical {
  position: relative; height: 22px;
  overflow: hidden; flex: 1;
  -webkit-mask-image: none !important; mask-image: none !important;
}
.announce-vertical span {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  height: 22px; font-size: 12px;
  color: #fff !important; white-space: nowrap;
  opacity: 0;
  animation: anchUp 12s linear infinite;
}
.announce-vertical span:nth-child(1) { animation-delay: 0s; }
.announce-vertical span:nth-child(2) { animation-delay: 4s; }
.announce-vertical span:nth-child(3) { animation-delay: 8s; }
@keyframes anchUp {
  0%   { opacity: 0; transform: translateY(22px); }
  4%   { opacity: 1; transform: translateY(0); }
  29%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-22px); }
  100% { opacity: 0; transform: translateY(-22px); }
}
.announce-pill {
  flex-shrink: 0; width: 4px; height: 18px;
  background: var(--c-secondary); border-radius: 2px;
}

/* 車型滿版 */
.section-fleet-bleed { overflow: hidden !important; }
.section-fleet-bleed > .wrap { max-width: 1280px; padding: 0 24px; position: relative; }
.section-fleet-bleed .fleet-scroller {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: visible;
}
.section-fleet-bleed .fleet-track {
  display: flex !important; gap: 22px !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 12px max(24px, calc((100vw - 1280px) / 2)) 24px !important;
}
.section-fleet-bleed .fleet-track::-webkit-scrollbar { display: none; }
.section-fleet-bleed .fleet-track .fleet-card {
  flex: 0 0 320px !important;
  scroll-snap-align: start;
  min-height: 480px;
}
.section-fleet-bleed .fleet-arr.prev { left: max(28px, calc((100vw - 1280px) / 2 + 8px)) !important; }
.section-fleet-bleed .fleet-arr.next { right: max(28px, calc((100vw - 1280px) / 2 + 8px)) !important; }

/* 目的地箭頭 inline */
.dest-actions { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.dest-arrows-inline { display: flex; gap: 6px; }
.dest-arrows-inline .a {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--c-line);
  color: var(--c-primary);
  display: grid; place-items: center; cursor: pointer;
}
.dest-arrows-inline .a:hover { background: var(--c-primary); color: #fff; }
.section-dest .dest-arrows { display: none !important; }

/* 防止整頁出現水平捲軸 */
body { overflow-x: hidden; }


/* ===== v3 SECTIONS RESTORE ===== */

/* SOP 四步驟 水平時間軸 */
.section-sop { background: var(--c-tertiary); padding: 100px 0 110px; }
.section-sop .sop-head { text-align: center; margin-bottom: 60px; }
.section-sop .sop-head p { color: var(--c-ink-2); font-size: 15px; margin: 14px auto 0; max-width: 560px; line-height: 1.85; }
.section-sop .sop-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 60px 0 0;
}
.section-sop .sop-flow::before {
  content: ""; position: absolute;
  top: 100px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-secondary) 0 8px, transparent 8px 16px);
}
.section-sop .sop-conn { display: none; }
.section-sop .sop-card { background: transparent; border: 0; padding: 0 16px; text-align: center; position: relative; transition: transform .3s; }
.section-sop .sop-card:hover { transform: translateY(-6px); }
.section-sop .sop-no { font-family: var(--f-serif); font-size: 14px; letter-spacing: .2em; color: var(--c-secondary-2); margin-bottom: 18px; display: block; }
.section-sop .sop-pic {
  width: 80px; height: 80px; border-radius: 50%;
  background: #fff; border: 2px solid var(--c-secondary);
  color: var(--c-primary); font-size: 28px;
  display: grid; place-items: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--c-tertiary);
  transition: all .3s;
}
.section-sop .sop-card:hover .sop-pic { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.section-sop .sop-card h4 { font-family: var(--f-serif); font-size: 20px; margin: 0 0 10px; color: var(--c-ink); }
.section-sop .sop-card p { font-size: 13px; line-height: 1.8; color: var(--c-ink-2); margin: 0 auto; max-width: 220px; }
@media (max-width:980px){ .section-sop .sop-flow{ grid-template-columns: repeat(2,1fr); row-gap:40px; } .section-sop .sop-flow::before{ display:none; } }
@media (max-width:640px){ .section-sop .sop-flow{ grid-template-columns: 1fr; } }

/* CTA 票根 */
.cta-v3 { background: var(--c-tertiary); padding: 100px 0; }
.cta-v3::before { display: none; }
.cta-ticket {
  background: #fff; border-radius: 24px;
  display: grid; grid-template-columns: 280px 1fr 240px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(20,48,114,.12);
}
.ct-left { background-size: cover; background-position: center; position: relative; min-height: 320px; }
.ct-left::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,48,114,.2), rgba(20,48,114,.6)); }
.ct-badge { position: absolute; top: 18px; left: 18px; background: var(--c-secondary); color: var(--c-primary-deep); font-size: 11px; font-weight: 700; letter-spacing: .15em; padding: 5px 12px; border-radius: 999px; z-index: 2; }
.ct-mid { padding: 40px 48px; border-right: 2px dashed var(--c-line); position: relative; }
.ct-mid::before, .ct-mid::after { content:""; position:absolute; right:-12px; width:24px; height:24px; background: var(--c-tertiary); border-radius:50%; }
.ct-mid::before { top: -12px; } .ct-mid::after { bottom: -12px; }
.ct-mid .eyebrow { margin-bottom: 14px; }
.ct-mid h2 { font-family: var(--f-serif); font-size: 36px; margin: 0 0 14px; color: var(--c-primary); }
.ct-mid > p { font-size: 14px; line-height: 1.85; color: var(--c-ink-2); margin: 0 0 26px; }
.ct-mid > p b { color: var(--c-primary); }
.ct-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ct-meta > div { display: flex; gap: 10px; align-items: flex-start; }
.ct-meta i { width: 32px; height: 32px; border-radius: 50%; background: var(--c-tertiary); color: var(--c-primary); display: grid; place-items: center; font-size: 13px; flex-shrink: 0; }
.ct-meta small { display: block; font-size: 11px; color: var(--c-ink-3); letter-spacing: .08em; }
.ct-meta b { display: block; font-size: 14px; color: var(--c-ink); font-weight: 600; margin-top: 2px; }
.ct-right { background: var(--c-primary); color: #fff; display: flex; align-items: center; justify-content: center; padding: 32px 28px; }
.ct-stub { text-align: center; width: 100%; }
.ct-stub small { display: block; font-size: 11px; letter-spacing: .25em; opacity: .65; margin-bottom: 14px; }
.ct-pct { font-family: var(--f-serif); font-size: 96px; font-weight: 900; line-height: .9; color: var(--c-secondary); }
.ct-pct sup { font-size: 24px; font-weight: 500; margin-left: 4px; vertical-align: top; }
.ct-divider { border-top: 1px dashed rgba(255,255,255,.3); margin: 18px 8px; }
.ct-cta { background: var(--c-secondary); color: var(--c-primary-deep); border: 0; padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; width: 100%; justify-content: center; }
.ct-cta:hover { background: #fff; }
@media (max-width:980px) { .cta-ticket { grid-template-columns: 1fr; } .ct-mid { border-right: 0; border-bottom: 2px dashed var(--c-line); padding: 32px; } .ct-mid::before, .ct-mid::after { display: none; } .ct-meta { grid-template-columns: 1fr; } .ct-left { min-height: 200px; } }

/* Reviews 雜誌風 */
.section-reviews-v3 { padding: 110px 0; background: var(--c-tertiary); }
.rv3-head { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; margin-bottom: 48px; }
.rv3-head .section-title { margin-top: 14px; }
.rv3-stat-row { display: flex; flex-direction: column; gap: 18px; align-items: flex-end; }
.rv3-stat { background: #fff; border-radius: 16px; padding: 18px 28px; text-align: center; border: 1px solid var(--c-line); box-shadow: 0 8px 24px rgba(20,48,114,.06); min-width: 260px; }
.rv3-big { font-family: var(--f-serif); font-size: 48px; line-height: 1; color: var(--c-primary); font-weight: 700; }
.rv3-big span { font-size: 18px; color: var(--c-ink-3); font-weight: 400; }
.rv3-stars { color: var(--c-secondary-2); font-size: 16px; letter-spacing: 3px; margin: 6px 0; }
.rv3-sub { font-size: 12px; color: var(--c-ink-2); }
.rv3-sub b { color: var(--c-primary); }
.rv3-platforms { display: flex; gap: 18px; font-size: 12px; color: var(--c-ink-2); }
.rv3-platforms i { color: var(--c-primary); margin-right: 6px; }
.rv3-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.rv3-feature { border-radius: 24px; overflow: hidden; position: relative; min-height: 540px; background-size: cover; background-position: center; }
.rv3-feature-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,48,114,.25), rgba(20,48,114,.85)); }
.rv3-feature-inner { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 40px 44px; color: #fff; }
.rv3-feature-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-serif); font-size: 13px; color: var(--c-secondary); letter-spacing: .25em; }
.rv3-feature-tag i { font-size: 18px; }
.rv3-feature-text { font-family: var(--f-serif); font-size: 26px; line-height: 1.7; margin: 24px 0; font-weight: 500; color: #fff; }
.rv3-feature-text b { color: var(--c-secondary); font-weight: 600; }
.rv3-feature-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.25); }
.rv3-feature-meta { display: flex; align-items: center; gap: 14px; }
.rv3-feature-meta b { display: block; font-size: 15px; color: #fff; }
.rv3-feature-meta small { display: block; font-size: 12px; opacity: .75; margin-top: 2px; }
.rv3-feature-stars { color: var(--c-secondary); letter-spacing: 3px; }
.rv3-avatar { width: 52px; height: 52px; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid var(--c-secondary); }
.rv3-avatar.sm { width: 40px; height: 40px; border-width: 1.5px; }
.rv3-list { display: flex; flex-direction: column; gap: 18px; }
.rv3-mini { background: #fff; border-radius: 18px; padding: 22px 24px; border: 1px solid var(--c-line); flex: 1; display: flex; flex-direction: column; transition: all .25s; }
.rv3-mini:hover { transform: translateX(-4px); border-color: var(--c-secondary); }
.rv3-mini-stars { color: var(--c-secondary-2); font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.rv3-mini p { font-size: 13px; line-height: 1.75; color: var(--c-ink-2); margin: 0 0 14px; flex: 1; }
.rv3-mini-foot { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px dashed var(--c-line); }
.rv3-mini-foot b { display: block; font-size: 13px; color: var(--c-ink); }
.rv3-mini-foot small { display: block; font-size: 11px; color: var(--c-ink-3); }
.rv3-foot { text-align: center; margin-top: 40px; }
.rv3-more { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--c-primary); font-weight: 600; padding-bottom: 6px; border-bottom: 2px solid var(--c-primary); }
@media (max-width:980px) { .rv3-head { grid-template-columns: 1fr; } .rv3-stat-row { align-items: flex-start; } .rv3-layout { grid-template-columns: 1fr; } .rv3-feature { min-height: 440px; } }

/* Brands 跑馬燈 */
.section-brands-v3 { padding: 100px 0 110px; background: #fff; }
.section-brands-v3 .brands-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-brands-v3 .brands-head .section-title { margin-top: 12px; }
.section-brands-v3 .brands-head p { color: var(--c-ink-2); font-size: 14px; line-height: 1.85; margin-top: 14px; }
.brands-marquee { overflow: hidden; position: relative; margin-bottom: 56px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.brands-track { display: flex; gap: 0; white-space: nowrap; animation: brandsScroll 40s linear infinite; width: max-content; }
.bm-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 40px; height: 84px; border-right: 1px solid var(--c-line); font-family: var(--f-serif); color: var(--c-primary); flex-shrink: 0; }
.bm-item i { font-size: 22px; opacity: .85; }
.bm-item b { font-size: 18px; font-weight: 700; letter-spacing: 0.04em; }
@keyframes brandsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brands-press-v3 { max-width: 720px; margin: 0 auto; text-align: center; background: var(--c-tertiary); border-radius: 20px; padding: 40px 56px 48px; position: relative; }
.bp-quote-mark { font-family: var(--f-serif); font-size: 80px; line-height: 0.6; color: var(--c-secondary); position: absolute; top: 28px; left: 32px; }
.section-brands-v3 blockquote { font-family: var(--f-serif); font-size: 22px; font-weight: 500; line-height: 1.7; color: var(--c-primary); margin: 0 0 18px; }
.bp-author { font-size: 13px; color: var(--c-ink-3); letter-spacing: 0.1em; }
