:root{
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-muted: #F5F5F7;
  --text: #161B33;
  --text-secondary: #6B6E7B;
  --border: #E7E7EC;
  --accent: #161B33;
  --accent-strong: #05070F;
  --grad-start: #8C86D9;
  --grad-mid: #B98BB0;
  --grad-end: #E7A6A4;
}
*{box-sizing:border-box;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Helvetica Neue', Helvetica, Arial, 'PingFang HK', 'Microsoft JhengHei', 'Noto Sans HK', sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{ color:inherit; }

/* ---- top nav ---- */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 48px;
  border-bottom:1px solid var(--border);
}
.logo{
  font-size:20px;
  font-weight:700;
  letter-spacing:0.3px;
  display:flex;
  align-items:center;
}
.logo a{
  display:flex;
  align-items:center;
}
.logo img{
  height:40px;
  width:auto;
  display:block;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:32px;
  font-size:14px;
  color:var(--text);
}
.nav-links a{ text-decoration:none; }
.service-switch{
  display:flex;
  gap:8px;
  font-size:13px;
}
.service-switch .service{
  padding:6px 14px;
  border-radius:20px;
  border:1px solid var(--border);
  color:var(--text-secondary);
  cursor:default;
}
.service-switch .service.active{
  background:var(--text);
  color:#fff;
  border-color:var(--text);
}

/* ---- hero ---- */
.hero{
  position:relative;
  min-height:340px;
  background-color:#1A1A24;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero.hero-tall{ min-height:460px; }
.hero-video, .hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 35%;
  z-index:0;
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:0;
  background-image:
    linear-gradient(90deg, rgba(10,10,14,0.75) 0%, rgba(10,10,14,0.35) 55%, rgba(10,10,14,0.15) 100%);
}
.hero-inner{
  position:relative;
  z-index:1;
  padding:0 48px;
  max-width:640px;
  text-align:center;
  margin:0 auto;
}
.hero h1{
  font-size:38px;
  font-weight:700;
  line-height:1.25;
  margin:0 0 16px;
  color:#fff;
}
.hero p{
  font-size:16px;
  color:rgba(255,255,255,0.9);
  margin:0;
}

/* ---- hero 標題:逐行淡入 + 漸層強調字 ---- */
.hero-title{
  margin:0 0 20px;
  font-size:38px;
  font-weight:700;
  line-height:1.25;
}
.hero-title-line{
  display:block;
  color:#fff;
  opacity:0;
  transform:translateY(16px);
  animation:heroLineUp .7s ease forwards;
}
.hero-title-line:nth-child(1){ animation-delay:.05s; }
.hero-title-line.hero-title-accent{
  animation-delay:.2s;
  color:#fff;
  animation:heroLineUp .7s ease forwards;
}
@keyframes heroLineUp{
  to{ opacity:1; transform:translateY(0); }
}

/* ---- hero 服務標籤:淡入 + 輕微上浮的膠囊標籤 ---- */
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-bottom:18px;
  opacity:0;
  transform:translateY(16px);
  animation:heroLineUp .7s ease forwards;
  animation-delay:.35s;
}
.hero-badge{
  font-size:13px;
  font-weight:600;
  color:#fff;
  padding:7px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.35);
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(4px);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.hero-badge:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.16);
  border-color:rgba(255,255,255,0.6);
}
.hero-badge-accent{
  border:none;
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
}
.hero-badge-accent:hover{ transform:translateY(-2px); filter:brightness(1.08); }

.hero-sub{
  font-size:15px;
  color:rgba(255,255,255,0.85);
  margin:0;
  opacity:0;
  transform:translateY(16px);
  animation:heroLineUp .7s ease forwards;
  animation-delay:.5s;
}

/* ---- search card ---- */
.search-wrap{
  padding:0 48px;
  margin-top:-72px;
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
}
.search-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:14px;
  width:100%;
  max-width:960px;
  padding:26px 30px 30px;
  box-shadow:0 12px 32px rgba(22,27,51,0.08);
}
.tabs-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
  border-bottom:1px solid var(--border);
}
.tabs{
  display:flex;
  gap:0;
  flex-wrap:wrap;
}
.hire-driver-link{
  display:none;
  font-size:13px;
  color:var(--text-secondary);
  text-decoration:none;
  white-space:nowrap;
  padding-bottom:14px;
}
.hire-driver-link:hover{ color:var(--text); }
.hire-driver-link.show{ display:inline-block; }

/* 「司機招聘」分類:取代欄位那排的三個大按鈕 */
.driver-options{
  display:none;
  gap:16px;
}
.driver-options.show{ display:flex; }
.driver-option-btn{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:26px 16px;
  border-radius:10px;
  text-decoration:none;
  cursor:pointer;
  font-family:inherit;
  text-align:center;
  box-sizing:border-box;
}
.driver-option-btn svg{ width:26px; height:26px; margin-bottom:4px; }
.driver-option-btn.primary{
  border:none;
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  color:#fff;
}
.driver-option-btn.primary:hover{ filter:brightness(1.08); }
.driver-option-btn.outline{
  border:1.5px solid transparent;
  background-image: linear-gradient(var(--surface), var(--surface)), linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color:var(--text);
}
.driver-option-btn.outline:hover{ filter:brightness(0.98); }
.driver-option-btn .driver-option-title{
  font-size:15px;
  font-weight:700;
}
.driver-option-btn.outline .driver-option-title{
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.driver-option-btn .driver-option-sub{
  font-size:12px;
}
.driver-option-btn.primary .driver-option-sub{ color:rgba(255,255,255,0.85); }
.driver-option-btn.outline .driver-option-sub{ color:var(--text-secondary); }
.tab{
  padding:10px 4px 14px;
  font-size:14px;
  color:var(--text-secondary);
  cursor:pointer;
  border-bottom:2px solid transparent;
  margin-right:28px;
  user-select:none;
  background:none;
  border-top:none;
  border-left:none;
  border-right:none;
  font-family:inherit;
}
.tab.active{
  color:var(--text);
  border-bottom-color:var(--text);
  font-weight:700;
}

.fields{
  display:grid;
  grid-template-columns: 1fr 1fr 140px 120px auto;
  border:1px solid var(--border);
  border-radius:10px;
  overflow:hidden;
}
.field{
  padding:12px 18px;
  border-right:1px solid var(--border);
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.field:last-of-type{ border-right:none; }

.field-swap-group{
  display:flex;
  flex-direction:row;
  align-items:stretch;
  padding:0;
}
.field-half{
  flex:1;
  min-width:0;
  padding:12px 18px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.swap-btn{
  flex:0 0 auto;
  align-self:center;
  width:32px;
  height:32px;
  margin:0 -1px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text-secondary);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
  z-index:1;
  transition:transform .4s ease, border-color .2s ease, color .2s ease;
}
.swap-btn:hover{
  border-color:var(--text);
  color:var(--text);
}
.swap-btn svg{ width:16px; height:16px; display:block; }
.field label{
  font-size:11px;
  color:var(--text-secondary);
  letter-spacing:0.2px;
}
.field select, .field input{
  border:none;
  background:transparent;
  font-size:14px;
  color:var(--text);
  font-family:inherit;
  padding:0;
  outline:none;
  width:100%;
}

/* ---- 自訂時間選擇器(取代原生 input[type=time],確保跨瀏覽器一致的時鐘圖示 + 下拉選單) ---- */
.time-picker{
  position:relative;
  width:100%;
}
.time-picker-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  width:100%;
  border:none;
  background:transparent;
  font-size:14px;
  font-family:inherit;
  color:var(--text);
  padding:0;
  cursor:pointer;
  text-align:left;
}
.time-picker-value{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.time-picker-value.is-placeholder{
  color:var(--text-secondary);
}
.time-picker-btn svg{
  width:16px;
  height:16px;
  flex:0 0 auto;
}
.time-picker-dropdown{
  display:none;
  position:fixed;
  min-width:120px;
  max-height:220px;
  overflow-y:auto;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:0 12px 28px rgba(22,27,51,0.12);
  z-index:1000;
  padding:6px;
}
.time-picker-dropdown.open{
  display:block;
}
.time-picker-option{
  padding:8px 12px;
  font-size:14px;
  color:var(--text);
  border-radius:6px;
  cursor:pointer;
  white-space:nowrap;
}
.time-picker-option:hover{
  background:var(--surface-muted);
}
.time-picker-option.selected{
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  color:#fff;
}

/* ---- 自訂日期選擇器(取代原生 input[type=date],確保跨瀏覽器/裝置一致的 dd/mm/yyyy 顯示) ---- */
.date-picker{
  position:relative;
  width:100%;
}
.date-picker-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  width:100%;
  border:none;
  background:transparent;
  font-size:14px;
  font-family:inherit;
  color:var(--text);
  padding:0;
  cursor:pointer;
  text-align:left;
}
.date-picker-value{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.date-picker-value.is-placeholder{
  color:var(--text-secondary);
}
.date-picker-btn svg{
  width:16px;
  height:16px;
  flex:0 0 auto;
}
.date-picker-dropdown{
  display:none;
  position:fixed;
  width:260px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:0 12px 28px rgba(22,27,51,0.12);
  z-index:1000;
  padding:12px;
}
.date-picker-dropdown.open{
  display:block;
}
.date-picker-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
}
.date-picker-month-label{
  font-size:14px;
  font-weight:600;
  color:var(--text);
}
.date-picker-nav{
  border:none;
  background:var(--surface-muted);
  color:var(--text);
  width:26px;
  height:26px;
  border-radius:50%;
  font-size:16px;
  line-height:1;
  cursor:pointer;
}
.date-picker-weekdays,
.date-picker-grid{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:2px;
}
.date-picker-weekday{
  text-align:center;
  font-size:12px;
  color:var(--text-secondary);
  padding:4px 0;
}
.date-picker-day{
  text-align:center;
  font-size:13px;
  color:var(--text);
  padding:7px 0;
  border-radius:6px;
  cursor:pointer;
}
.date-picker-day.empty{
  cursor:default;
}
.date-picker-day:not(.empty):hover{
  background:var(--surface-muted);
}
.date-picker-day.today{
  font-weight:600;
  color:var(--grad-mid);
}
.date-picker-day.selected{
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  color:#fff;
}

.search-btn{
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  color:#fff;
  border:none;
  font-size:14px;
  font-weight:700;
  padding:0 30px;
  cursor:pointer;
  white-space:nowrap;
  letter-spacing:0.3px;
  font-family:inherit;
}
.search-btn:hover{ filter:brightness(1.08); }
.search-btn:disabled{ opacity:0.5; cursor:not-allowed; filter:none; }

.surcharge-note{
  margin-top:14px;
  font-size:12px;
  color:var(--text-secondary);
  line-height:1.7;
}
.form-error{
  margin-top:14px;
  font-size:12px;
  color:#B3261E;
  display:none;
}
.form-error.show{ display:block; }

/* ---- about strip ---- */
.about{
  max-width:760px;
  margin:96px auto 100px;
  padding:0 48px;
  text-align:center;
}
.about h2{
  font-size:28px;
  font-weight:700;
  margin:0 0 16px;
}
.about p{
  font-size:15px;
  line-height:1.8;
  color:var(--text-secondary);
  margin:0 0 32px;
}
.about-points{
  display:flex;
  justify-content:center;
  gap:48px;
  flex-wrap:wrap;
}
.point{ text-align:center; width:130px; }
.point-icon{
  width:130px;
  height:91px;
  border-radius:10px;
  background:var(--surface-muted);
  color:var(--text-secondary);
  font-size:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  overflow:hidden;
}
.point-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.point b{
  display:block;
  font-size:15px;
  font-weight:700;
  margin-bottom:4px;
}
.point span{
  font-size:13px;
  color:var(--text-secondary);
}

/* ---- 實景相片 carousel:16:9 橫向相片,自動每 3 秒切換,左右箭頭可手動控制 ---- */
.gallery-section{
  max-width:1040px;
  margin:0 auto 100px;
  padding:0 48px;
}
.gallery-section h2{
  font-size:24px;
  font-weight:700;
  text-align:center;
  margin:0 0 32px;
}
.gallery-carousel{
  display:flex;
  align-items:center;
  gap:16px;
}
.gallery-viewport{
  flex:1;
  min-width:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--border);
}
.gallery-track{
  display:flex;
  transition:transform .5s ease;
}
.gallery-slide{
  flex:0 0 100%;
  min-width:0;
}
.gallery-image{
  width:100%;
  aspect-ratio:16/9;
  background:var(--surface-muted);
  color:var(--text-secondary);
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.gallery-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
  display:block;
}
.gallery-arrow{
  flex:0 0 auto;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1.5px solid transparent;
  background-image: linear-gradient(var(--surface), var(--surface)), linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
}
.gallery-arrow:hover{ filter:brightness(0.98); }
.gallery-arrow svg{ width:18px; height:18px; display:block; }
.gallery-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:20px;
}
.gallery-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  border:none;
  padding:0;
  background:var(--border);
  cursor:pointer;
}
.gallery-dot.active{
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
}

/* ---- service showcase(大圖 + 文字交錯,每個服務內含主介紹 + 3 個支撐點,跟著搜尋 tab 動態切換) ---- */
.service-showcase{
  max-width:1040px;
  margin:0 auto 100px;
  padding:0 48px;
}
.showcase-panel{
  display:none;
  flex-direction:column;
  gap:64px;
}
.showcase-panel.active{
  display:flex;
}
.showcase-item{
  display:flex;
  align-items:center;
  gap:48px;
}
.showcase-item.reverse{
  flex-direction:row-reverse;
}
.showcase-image{
  flex:1;
  min-width:0;
  height:320px;
  border-radius:16px;
  border:1px solid var(--border);
  background:var(--surface-muted);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text-secondary);
  font-size:14px;
  overflow:hidden;
}
.showcase-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.showcase-text{
  flex:1;
  min-width:0;
}
.showcase-text h3{
  font-size:22px;
  font-weight:700;
  color:var(--text);
  margin:0 0 14px;
}
.showcase-text h4{
  font-size:18px;
  font-weight:700;
  color:var(--text);
  margin:0 0 12px;
}
.showcase-text p{
  font-size:15px;
  line-height:1.8;
  color:var(--text-secondary);
  margin:0;
}

/* ---- generic page shell (select-car / confirm) ---- */
.page{
  max-width:1040px;
  margin:0 auto;
  padding:40px 48px 100px;
}
.page-header{
  margin-bottom:28px;
}
.page-header h1{
  font-size:26px;
  margin:0 0 8px;
}
.breadcrumb{
  font-size:13px;
  color:var(--text-secondary);
  margin-bottom:18px;
}
.breadcrumb a{ text-decoration:none; }
.breadcrumb .sep{ margin:0 6px; }
.breadcrumb .current{ color:var(--text); font-weight:700; }

.route-summary{
  background:var(--surface-muted);
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px 22px;
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  margin-bottom:32px;
  font-size:14px;
}
.route-summary .item b{
  display:block;
  font-size:11px;
  color:var(--text-secondary);
  font-weight:400;
  margin-bottom:2px;
}

/* vehicle cards */
.vehicle-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap:20px;
}
.vehicle-card{
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--surface);
  transition:box-shadow .15s ease, border-color .15s ease;
}
.vehicle-card.selectable:hover{
  border-color:var(--text);
  box-shadow:0 8px 24px rgba(22,27,51,0.08);
}
.vehicle-card.selected{
  border-color:var(--text);
  box-shadow:0 0 0 2px var(--text) inset;
}
.vehicle-card.disabled{
  opacity:0.5;
}
.vehicle-photo{
  height:160px;
  background:var(--surface-muted);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text-secondary);
  font-size:13px;
}
.vehicle-body{
  padding:18px 20px 20px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
.vehicle-name{ font-size:16px; font-weight:700; }
.vehicle-tagline{ font-size:12px; color:var(--text-secondary); }
.vehicle-desc{ font-size:13px; color:var(--text-secondary); line-height:1.6; flex:1; }
.vehicle-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:8px;
}
.vehicle-seats{
  font-size:14px;
  font-weight:700;
  color:var(--text);
  display:flex;
  align-items:center;
  gap:5px;
}
.vehicle-seats svg{ width:16px; height:16px; flex:0 0 auto; }
.vehicle-price{ font-size:18px; font-weight:700; }
.vehicle-select-btn{
  margin-top:12px;
  width:100%;
  border:none;
  border-radius:8px;
  padding:10px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  font-family:inherit;
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  color:#fff;
}
.vehicle-select-btn:hover{ filter:brightness(1.08); }
.vehicle-select-btn:disabled{
  background:var(--surface-muted);
  color:var(--text-secondary);
  cursor:not-allowed;
}

/* confirm page */
.summary-card{
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px 28px;
  margin-bottom:24px;
}
.summary-card h3{
  font-size:15px;
  margin:0 0 16px;
}
.summary-row{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:14px;
}
.summary-row:last-child{ border-bottom:none; }
.summary-row .label{ color:var(--text-secondary); }
.summary-row.total{
  font-weight:700;
  font-size:16px;
  border-top:1px solid var(--border);
  margin-top:6px;
  padding-top:14px;
}

.info-card{
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px 28px;
  margin-bottom:24px;
}
.info-card h3{
  font-size:15px;
  margin:0 0 16px;
}
.info-section-title{
  font-size:13px;
  font-weight:700;
  color:var(--text);
  margin:24px 0 14px;
  padding-top:16px;
  border-top:1px solid var(--border);
}
.info-section-title:first-of-type{
  margin-top:0;
  padding-top:0;
  border-top:none;
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px 20px;
}
.info-field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:16px;
}
.info-grid .info-field{ margin-top:0; }
.info-field label{
  font-size:12px;
  color:var(--text-secondary);
  letter-spacing:0.2px;
}
.required-mark{ color:#B3261E; }
.info-field input, .info-field textarea{
  border:1px solid var(--border);
  border-radius:8px;
  padding:10px 12px;
  font-size:14px;
  font-family:inherit;
  color:var(--text);
  background:var(--surface);
  outline:none;
  width:100%;
  resize:vertical;
}
.info-field input:focus, .info-field textarea:focus{
  border-color:var(--text);
}
.info-field input[readonly]{
  background:var(--surface-muted);
  color:var(--text-secondary);
}

.terms-card{
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px 28px;
  margin-bottom:32px;
  background:var(--surface-muted);
}
.terms-card h3{ font-size:15px; margin:0 0 12px; }
.terms-card ul{
  margin:0;
  padding-left:18px;
  font-size:13px;
  color:var(--text-secondary);
  line-height:1.9;
}

.confirm-actions{
  display:flex;
  gap:14px;
  align-items:center;
}
.btn-primary{
  border:none;
  border-radius:8px;
  padding:14px 36px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  font-family:inherit;
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  color:#fff;
}
.btn-primary:hover{ filter:brightness(1.08); }
.btn-secondary{
  border:1px solid var(--border);
  border-radius:8px;
  padding:14px 24px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  font-family:inherit;
  background:transparent;
  color:var(--text);
}

.checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  color:var(--text-secondary);
  margin-bottom:20px;
}
.checkbox-row input{ margin-top:2px; }

.success-panel{
  text-align:center;
  padding:60px 20px;
}
.success-panel .icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:linear-gradient(120deg, var(--grad-start) 0%, var(--grad-mid) 55%, var(--grad-end) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:30px;
  margin:0 auto 20px;
}
.success-panel h2{ font-size:22px; margin:0 0 10px; }
.success-panel p{ color:var(--text-secondary); font-size:14px; margin:0 0 28px; }

/* ---- 網站頁尾 ---- */
.site-footer{
  background:#080B2A;
  color:rgba(255,255,255,0.85);
  padding:56px 24px 40px;
  margin-top:100px;
}
.footer-inner{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}
.site-footer h2{
  color:#fff;
  font-size:24px;
  font-weight:700;
  margin:0 0 20px;
}
.site-footer p{
  margin:0 0 8px;
  font-size:15px;
}
.site-footer a{
  color:rgba(255,255,255,0.85);
  text-decoration:underline;
}
.site-footer a:hover{ color:#fff; }
.footer-hours{ color:rgba(255,255,255,0.85); margin-top:16px !important; }
.footer-address{ color:rgba(255,255,255,0.85); margin-bottom:24px !important; }
.footer-socials{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-bottom:28px;
}
.social-icon{
  width:32px;
  height:32px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.social-icon svg{ width:18px; height:18px; }
.social-linkedin{ background:#0A66C2; border-radius:8px; }
.social-instagram{ background:linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); border-radius:8px; }
.footer-bottom{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  color:rgba(255,255,255,0.7);
}
.footer-privacy{
  position:absolute;
  left:0;
  font-size:13px;
  color:rgba(255,255,255,0.7);
}
.footer-copyright{ color:rgba(255,255,255,0.7); }

/* ---- 右下角浮動聊天按鈕 ---- */
.chat-fab{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:50;
  display:flex;
  align-items:center;
  gap:8px;
  border:none;
  border-radius:999px;
  padding:14px 20px;
  background:#25D366;
  color:#fff;
  font-size:14px;
  font-weight:700;
  font-family:inherit;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.chat-fab:hover{ filter:brightness(1.05); }
.chat-fab svg{ width:18px; height:18px; flex:0 0 auto; }

@media (max-width: 720px){
  .nav{ padding:16px 20px; }
  .nav-links{ display:none; }
  .hero-inner, .search-wrap, .page{ padding-left:20px; padding-right:20px; }
  .fields{ grid-template-columns: 1fr 1fr; }
  .field{ border-right:none; border-bottom:1px solid var(--border); }
  .search-btn{ grid-column: 1 / -1; padding:14px; }
  /* narrow screens: cap hero height so the video isn't cropped narrower than its own aspect ratio */
  .hero.hero-tall{ min-height:0; height:56vw; max-height:460px; }
  .info-grid{ grid-template-columns:1fr; }
  .service-showcase{ padding-left:20px; padding-right:20px; }
  .showcase-panel{ gap:40px; }
  .showcase-item, .showcase-item.reverse{ flex-direction:column; gap:20px; }
  .showcase-image{ height:220px; width:100%; }
  .driver-options{ flex-direction:column; }
  .gallery-section{ padding-left:20px; padding-right:20px; }
  .gallery-arrow{ width:36px; height:36px; }
  .gallery-arrow svg{ width:14px; height:14px; }
  .footer-bottom{ flex-direction:column; gap:10px; }
  .footer-privacy{ position:static; }
  .chat-fab span{ display:none; }
  .chat-fab{ padding:14px; }
}
