/* ========================================
   www.watch-repair.hk - Main Stylesheet
   奢華大牌風格 - 2026 優化版
   ======================================== */

/* ========================================
   CSS Variables - 大牌色調
   ======================================== */
:root {
  /* 主色調 - 極簡黑金 */
  --primary-color: #0D0D0D; /*黑*/
  --primary-light: #1A1A1A; /*灰*/
  --accent-color: #C9A962;  /*金*/
  --accent-minimal: rgba(201, 169, 98, 0.3);
  --accent-hover: #D4B570;
  --accent-light: rgba(201, 169, 98, 0.1);
  --gold-light: #D4B570;
  
  /* 文字色 */
  --text-dark: #1a1a1a;
  --text-body: #B0B0B0;/*灰白*/
  --text-light: #808080;
  --text-muted: #606060;
  --white: #FFFFFF;
  --gray-light: #B0B0B0;
  --gray: #808080;
  
  /* 背景色 */
  --bg-cream: #0D0D0D;
  --bg-light: #1A1A1A;
  --bg-dark: #050505;

  
  /* 邊框 - 去除陰影，用細線 */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  
  /* 過渡 */
  --transition-fast: all 0.2s ease;
  --transition: all 0.3s ease;
  
  /* 字體 - BOMI 風格 */
  --font-display: 'Cormorant Garamond', Georgia, 'Noto Serif TC', serif;
  --font-body: 'Playfair Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}




/* ========================================
   全局樣式 - 大牌基調
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 標題字體 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
}

/* 鏈接樣式 */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ========================================
   Header 導航條 - 奢華黑金風格
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  
  transition: var(--transition);
}

.site-header.scrolled {
  
}

/* Header Top 頂部信息條 */
.header-top {
  background: var(--primary-light);
  color: var(--gray-light);
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-left .header-notice {
  opacity: 1;
}

.header-top-right .header-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-links li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-links i {
  font-style: normal;
}

.header-links a {
  color: var(--gray-light);
  text-decoration: none;
  opacity: 1;
  transition: var(--transition);
}

.header-links a:hover {
  opacity: 1;
  color: var(--gray-light);
}

.header-social {
  display: flex;
  gap: 10px;
}

.header-social a {
  font-size: 14px;
}

/* Main Menu Area 主導航條 */
.header-main {
  padding: 15px 0;
  background: var(--white);
}

.header-main .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 80px;
  width: auto;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.nav-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  
  transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background: var(--primary-color);
  color: var(--gray-light);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-light);
  padding: 12px 25px;
  border: 1px solid var(--accent-color);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.header-cta-btn:hover {
  background: var(--accent-color);
  color: var(--black);
  transform: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  
  transition: var(--transition);
}

/* Mobile Menu 手機菜單 */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-header img {
  height: 40px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li a {
  display: block;
  padding: 15px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  transition: var(--transition);
}

.mobile-nav-menu li a:hover {
  background: var(--bg-light);
  color: var(--gray-light);
}

.mobile-menu-contact {
  margin-top: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-contact-btn,
.mobile-whatsapp-btn {
  display: block;
  text-align: center;
  padding: 12px;
  
  text-decoration: none;
  font-weight: 500;
}

.mobile-contact-btn {
  background: var(--primary-color);
  color: var(--gray-light);
}

.mobile-whatsapp-btn {
  background: #25D366;
  color: var(--gray-light);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}



/* ========================================
   全屏 Hero 區 Hero Section
   ======================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner1.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* 漸變遮罩（讓文字清晰可見） */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(10, 10, 10, 0.75) 0%, 
    rgba(10, 10, 10, 0.5) 40%,
    rgba(10, 10, 10, 0.6) 70%,
    rgba(250, 248, 245, 1) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 900px;
}
/*
.hero-title {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  letter-spacing: 2px;
}
*/
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
}
/*
.hero-title span {
  display: block;
  font-size: 28px;
  font-weight: normal;
  color: var(--gray-light);
  margin-top: 10px;
}
*/
.hero-title span {
  display: block;
  font-size: 0.5em;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--accent-color);
  margin-top: 16px;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* CTA 按鈕 */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hero-btn:hover::before {
  transform: translateX(100%);
}

.hero-btn-primary {
  background: linear-gradient(135deg, #C9A962 0%, #B8943F 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.hero-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
  border-color: #C9A962;
  color: #C9A962;
  transform: translateY(-2px);
}


.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 42px;
  font-weight: 500;
  color: var(--gray-light);
}

.hero-stat-label {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 5px;
}

/* ========================================
   服務卡片區 Service Cards Section
   ======================================== */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.service-card {
  background: var(--bg-light);
  
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-10px);
  
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
}

.service-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  color: var(--gray-light);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--accent-hover);
}



/* ========================================
   Why Us 區 Why Choose Us Section
   ======================================== */

.why-us-section {
  background: var(--bg-cream);
  padding: 80px 30px;
}

.why-us-section .section-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
}


.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 25px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.why-us-item {
  background:var(--white);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  
}

.why-us-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.why-us-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #C9A962;
}

.why-us-icon svg {
  width: 48px;
  height: 48px;
  stroke: #C9A962;
}

.why-us-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color:var(--primary-color);
  margin-bottom: 10px;
  letter-spacing: 0.1em;	
	
	
}


.why-us-item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ========================================
   CTA 區 Call to Action Section
   ======================================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 16px;
  opacity: 1;
  margin-bottom: 30px;
}

.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 18px 40px;
  
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
  
}


/* 響應式 */
@media (max-width: 992px) {
  .service-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .service-warranty {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
}

/* ========================================
   維修案例區 Case Showcase
   ======================================== */
.showcase-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.showcase-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.showcase-card {
  background: var(--white);
  
  overflow: hidden;
  
  transition: all 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-5px);
  
}

.showcase-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.showcase-info {
  padding: 20px;
}

.showcase-info h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.showcase-info p {
  font-size: 13px;
  color: var(--text-light);
}

/* ========================================
   數據展示區 Stats Section (Inline version)
   ======================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
  padding: 60px 0;
  margin-top: -5px;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px 40px;
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--gray-light);
  opacity: 1;
}

.stat-sublabel {
  font-size: 12px;
  color: var(--gray-light);
  opacity: 0.6;
  margin-top: 5px;
}

/* ========================================
   價格區 Price Section
   ======================================== */
.price-section {
  padding: 120px 40px;
  background: var(--bg-light);
}

.price-section .section-header {
 font-family: 'Playfair Display', serif; 	
  text-align: center;
  margin-bottom: 60px;
}

.price-section .section-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
}

.old-price-section {
  padding: 30px 0;
  background: var(--white);
}

.price-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
}

.price-card {
  width: 250px;
  background: var(--white);
  
  
  overflow: hidden;
  transition: var(--transition);
}

.price-card:hover {
  
  transform: translateY(-5px);
}

.price-header {
  background: var(--primary-color);
  color: var(--gray-light);
  padding: 25px 20px;
  text-align: center;
}



.price-from {
  font-size: 14px;
  opacity: 0.8;
}

.price-amount {
  font-size: 36px;
  font-weight: bold;
  margin: 5px 0;
 
}

.price-unit {
  font-size: 14px;
  opacity: 0.8;
}

.price-body {
  padding: 25px 20px;
}

.price-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.price-item::before {
  content: '✓';
  color: var(--gray-light);
  font-weight: bold;
  margin-right: 10px;
}

.price-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

/* ========================================
   客戶評價區 Testimonials Section - 滾動展示
   ======================================== */
.testimonials-section {
  padding: 30px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.testimonials-container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonials-scroll-wrapper {
  display: flex;
  animation: scrollLeft 40s linear infinite;
  width: max-content;
}

.testimonials-scroll-wrapper:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: 320px;
  min-width: 320px;
  background: var(--white);
  
  
  padding: 25px;
  margin: 0 15px;
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonial-card:hover {
  
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 20px;
  font-weight: bold;
  margin-right: 12px;
}

.testimonial-info h4 {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.testimonial-service {
  font-size: 11px;
  color: var(--gray-light);
  background: rgba(212, 168, 83, 0.1);
  padding: 2px 8px;
  
}

.testimonial-stars {
  color: var(--gray-light);
  font-size: 13px;
  margin-bottom: 12px;
}

.testimonial-content {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  max-height: 80px;
  overflow: hidden;
}

/* ========================================
   品牌展示區 Brands Section
   ======================================== */
.brands-section {
  padding: 80px 0;
  background: var(--white);
}

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

.brands-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.brand-logo {
  width: 120px;
  height: 60px;
  background: var(--bg-light);
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: var(--transition);
  border: 1px solid #eee;
}

.brand-logo:hover {
  
  transform: scale(1.05);
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.7;
  transition: var(--transition);
}

.brand-logo:hover img {
  opacity: 1;
}

.brands-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 30px;
}

/* ========================================
   CTA 按鈕
   ======================================== */
.cta-button {
  display: inline-block;
  background: var(--white);
  color: var(--gray-light);
  padding: 15px 40px;
  
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  
}

.cta-whatsapp {
  background: #25D366;
}

.cta-whatsapp:hover {
  background: #128C7E;
}

/* ========================================
   響應式設計
   ======================================== */
@media (max-width: 768px) {
  .stats-container {
    flex-wrap: wrap;
  }
  
  .stat-item {
    width: 50%;
    padding: 15px 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .process-container {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step:not(:last-child)::after {
    content: '↓';
    right: auto;
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .process-step {
    margin-bottom: 60px;
  }
  
  .price-card {
    width: 100%;
    max-width: 300px;
  }
  
  .testimonial-card {
    width: 100%;
  }
}

/* ========================================
   名錶保養知識專欄 Knowledge Section
   ======================================== */
.knowledge-section {
  padding: 80px 0;
  background: var(--white);
}

.knowledge-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 0 20px;
}

.knowledge-card {
  display: flex;
  background: var(--bg-light);
  
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #eee;
}

.knowledge-card:hover {
  
  transform: translateY(-3px);
}

.knowledge-icon {
  width: 80px;
  min-width: 80px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.knowledge-content {
  padding: 20px;
  flex: 1;
}

.knowledge-content h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.knowledge-content h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.knowledge-content h3 a:hover {
  color: var(--gray-light);
}

.knowledge-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.knowledge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.knowledge-tags span {
  font-size: 11px;
  color: var(--gray-light);
  background: rgba(212, 168, 83, 0.1);
  padding: 3px 10px;
  
}

@media (max-width: 768px) {
  .knowledge-container {
    grid-template-columns: 1fr;
  }
  
  .knowledge-card {
    flex-direction: column;
  }
  
  .knowledge-icon {
    width: 100%;
    min-width: 100%;
    height: 60px;
  }
  
  /* Header 響應式 */
  .header-top {
    display: none;
  }
  
  .header-main {
    padding: 10px 0;
  }
  
  .main-nav,
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-logo img {
    height: 40px;
  }
  
  .logo-text {
    font-size: 13px;
    color: var(--white);
  }
  
  .header-main {
    padding: 15px 0;
  }
  
  /* Hero 響應式 */
  .hero-section {
    height: auto;
    min-height: 500px;
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-title span {
    font-size: 16px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-stat-number {
    font-size: 32px;
  }
  
  /* 服務卡片響應式 */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  /* 服務詳情響應式 */
  .service-detail-row {
    flex-direction: column;
    gap: 30px;
  }
  
  .service-detail-row.reverse {
    flex-direction: column;
  }
  
  .service-detail-content h2 {
    font-size: 24px;
  }
  
  /* Why Us 響應式 - 保持 4 列 */
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px;
  }
  
  .why-us-item {
    padding: 20px 10px;
  }
  
  .why-us-item h4 {
    font-size: 14px;
  }
  
  .why-us-item p {
    font-size: 12px;
  }
  
  /* CTA 響應式 */
  .cta-title {
    font-size: 26px;
  }
  
  /* Showcase 響應式 */
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px;
  }
  
  .why-us-item {
    padding: 15px 8px;
  }
  
  .why-us-item h4 {
    font-size: 12px;
  }
  
  .why-us-item p {
    font-size: 10px;
    line-height: 1.5;
  }
  
  .why-us-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   頁面標題區 Page Header (子頁面用)
   ======================================== */
.page-header-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
  text-align: center;
}

.page-header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  font-size: 36px;
  font-weight:500;
  color: var(--white);
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--accent-color);
}

.page-subtitle span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: var(--text-light);
}

/* 名錶保養知識頁面樣式 */
.knowledge-page {
  padding: 60px 0;
  background: var(--bg-light);
}

/* ========================================
   輪播圖樣式 (Slide)
   ======================================== */
.ck-slide { 
  width: 1090px; 
  height: 908px; 
  margin: 0 auto;
}
.ck-slide ul.ck-slide-wrapper { 
  height: 320px;
}

/* ========================================
   公司介紹區 Company Introduction
   ======================================== */
.company-intro {
  padding: 60px 0;
  background: var(--white);
}

.company-intro-header {
  text-align: center;
  margin-bottom: 30px;
}

.company-intro-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.company-badge {
  display: inline-block;
  font-size: 18px;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  
  padding: 10px 30px;
}

.company-intro-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.company-intro-video {
  flex: 0 0 420px;
  text-align: right;
}

.company-intro-video video {
  width: 100%;
  
}

.company-intro-text {
  flex: 1;
  line-height: 28px;
  color: var(--text-dark);
  font-size: 16px;
  text-indent: 35px;
}

.company-intro-text h3 {
  font-size: 21px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 20px;
}

.company-intro-text h3 a {
  color: var(--text-dark);
}

.company-intro-text p {
  margin: 5px auto;
}

.company-intro-text .more-link {
  font-size: 14px;
  color: #FF4919;
}

/* ========================================
   導航到店區 Navigate to Store
   ======================================== */
.navigate-section {
  padding: 30px 0;
  background: var(--white);
}

.navigate-title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.navigate-map {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.navigate-map img {
  width: 100%;
  
}

.navigate-btn {
  display: block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary-color);
  color: var(--gray-light);
  
  margin: 20px auto 0;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.navigate-btn:hover {
  background: var(--white);
}

/* ========================================
   底部懸浮聯繫條 Bottom Contact Bar
   ======================================== */
.bottom-contact-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 95px;
  background: url(../images/bothg01.gif) center top no-repeat;
  z-index: 103;
}

.bottom-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}

.bottom-contact-info {
  width: 260px;
  padding-left: 48px;
}

.bottom-contact-info span {
  display: block;
  color: var(--gray-light);
}

.bottom-contact-info span:first-child {
  padding-top: 20px;
  font-size: 20px;
  line-height: 24px;
}

.bottom-contact-info span:last-child {
  font-size: 16px;
  line-height: 18px;
  padding-top: 5px;
}

.bottom-contact-links {
  display: flex;
}

.bottom-contact-link {
  width: 185px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-contact-cta {
  width: 275px;
  padding-top: 30px;
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
  color: var(--gray-light);
}

.bottom-contact-cta a {
  color: var(--gray-light);
  text-decoration: none;
}

/* ========================================
   側邊懸浮按鈕 Side Floating Button
   ======================================== */
.side-consult-btn {
  position: fixed;
  top: 40%;
  left: 0;
  width: 50px;
  z-index: 9999;
}

.side-consult-btn a {
  display: block;
  background: rgba(255,255,255,1);
  border: 1px solid #CCC;
  
  padding: 8px 0;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 18px;
}

.side-consult-btn img {
  width: 37px;
}

.side-consult-btn p {
  font-size: 18px;
  margin: 0;
}

/* ========================================
   Footer 頁尾
   ======================================== */
.site-footer {
  background: var(--primary-color);
  color: var(--gray-light);
  padding: 40px 0 20px;
  margin-top: 80px;
}

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

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1;
  min-width: 150px;
}

.footer-title {
  display: inline-block;
  border: 1px solid var(--white);
  
  padding: 3px 6px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

.footer-col a {
  color: var(--gray-light);
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-copyright p {
  font-size: 12px;
  opacity: 0.8;
  margin: 5px 0;
}


.tcly_110 {
    position: fixed;
    top: 40%;
    width: 50px;
    left: 0px;
    z-index:9999;
}

.tcly_110_a {
    display: block;
    -webkit-
    -moz-
    -ms-
    -o-
    background: rgba(255,255,255,1);
    border: #CCC 1px solid;
    padding: 8px 0px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    width: 44px;
}

.tcly_110 img {
    width: 37px;
}

.tcly_110_a p {
    font-size: 18px;
}



/* 左側 CTA */
.booking-left {
  flex: 0 0 400px;
  color: var(--gray-light);
}

.booking-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--gray-light);
  margin-bottom: 15px;
  line-height: 1.3;
}

.booking-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.booking-phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: var(--gray-light);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.booking-contact {
  margin-top: 25px;
}

.booking-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--gray-light);
  font-size: 18px;
  font-weight: bold;
  padding: 14px 35px;
  
  text-decoration: none;
  transition: var(--transition);
}

.booking-whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  
}

/* 右側表單 */
.booking-right {
  flex: 1;
  max-width: 450px;
}

.form-label {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
}

.booking-form-compact {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  
  padding: 25px;
}

.form-input-compact {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  
  background: rgba(255,255,255,0.95);
  font-size: 14px;
  box-sizing: border-box;
  transition: var(--transition);
}

.form-input-compact:focus {
  outline: none;
  border-color: var(--gray-light);
  
}

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

.form-submit-compact {
  width: 100%;
  padding: 12px;
  background: var(--white);
  color: var(--gray-light);
  border: none;
  
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit-compact:hover {
  background: var(--accent-hover);
}

/* ========== 地圖區 ========== */
.map-section {
  text-align: center;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.map-image {
  width: 100%;
  
  
  transition: var(--transition);
}

.map-image:hover {
  transform: translateY(-5px);
  
}


/* 響應式 - 預約區 */
@media (max-width: 900px) {
  .booking-container {
    flex-direction: column;
    text-align: center;
  }
  
  .booking-left {
    flex: none;
    margin-bottom: 30px;
  }
  
  .booking-right {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 40px 0;
  }
  
  .booking-title {
    font-size: 24px;
  }
  
  .booking-phone {
    font-size: 22px;
  }
  
  .booking-form-compact {
    padding: 20px;
  }
}

/* ========================================
   語言切換 Language Switcher
   ======================================== */
.lang-switch {
  margin-right: 10px;
}

.lang-switch select {
  padding: 8px 30px 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white) url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 8px center;
  border: 1px solid #ddd;
  
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: var(--transition);
}

.lang-switch select:hover {
  border-color: var(--gray-light);
}

.lang-switch select:focus {
  outline: none;
  border-color: var(--gray-light);
  
}

/* 手機版語言切換 */
.mobile-lang-switch {
  text-align: center;
  margin-bottom: 15px;
}

.mobile-lang-switch select {
  padding: 12px 35px 12px 15px;
  font-size: 15px;
  background: var(--white) url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
  border: 1px solid #ddd;
  
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* 隱藏 Google Translate 默認樣式 */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-gadget {
  display: none !important;
}

body {
  top: 0 !important;
}

/* 翻譯後的字體調整 */
.goog-text-highlight {
  background: none !important;
  
}

/* ========================================
   圖片輪播區 Gallery Slider
   ======================================== */
.gallery-section {
  padding: 40px 0;
  background: var(--bg-light);
}

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

.gallery-swiper {
  width: 100%;
  overflow: hidden;
  
}

.gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

/* 分頁器樣式 */
.gallery-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white);
  opacity: 0.5;
  transition: var(--transition);
}

.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--white);
  width: 30px;
  
}

/* 導航按鈕樣式 */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: var(--gray-light);
  background: rgba(0,0,0,0.5);
  width: 50px;
  height: 50px;
  
  transition: var(--transition);
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
  background: var(--white);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 20px;
}

/* 響應式 */
@media (max-width: 768px) {
  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next {
    display: none;
  }
  
  .gallery-swiper .swiper-slide img {
    max-height: 400px;
  }
}

/* ========================================
   關於我們區 - 樣式
   ======================================== */
.about-section {
  padding: 80px 0;
  max-width:100%;
  background: var(--bg-light);
  color: var(--text-body);
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-section .section-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 15px;
}

.about-section .section-badge {
  display: inline-block;
  font-size: 16px;
  color: var(--gray-light);
  border: 1px solid var(--accent-color);
  padding: 8px 20px;
}

.about-container {
  display: flex;
  max-width:1100px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 30px;
}

.about-video {
  flex: 0 0 420px;
}

.about-video video {
  
  
}

.about-content {
  line-height: 28px;
  color: var(--text-body);
  text-align:left;
}

.about-title {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--white);
}

.about-title a {
  color: var(--accent-color);
}

.about-content p {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 15px;
}

.about-content .highlight {
  font-weight: bold;
  color: var(--gray-light);
}

.about-content a {
  color: var(--gray-light);
}

/* ========================================
   客戶評價區 - 手機響應式
   ======================================== */
/* 手機端 "更多" 按鈕 */
.testimonial-more-btn {
  display: none;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0;
  }
  
  .testimonials-scroll-wrapper {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 15px;
  }
  
  .testimonial-card {
    width: 100%;
    min-width: unset;
    max-width: 400px;
    margin: 0 0 20px 0;
  }
  
  /* 手機端隱藏第 4 個之後的評價 */
  .testimonial-card:not(.testimonial-visible) {
    display: none;
  }
  
  .testimonial-card.show-mobile {
    display: flex !important;
  }
  
  /* 顯示 "更多" 按鈕 */
  .testimonial-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0;
    padding: 12px 30px;
    font-family: 'Noto Serif TC', serif;
    font-size: 14px;
    font-weight: 500;
    color: #C9A962;
    background: transparent;
    border: 1px solid #C9A962;
    
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .testimonial-more-btn:hover {
    background: #C9A962;
    color: #fff;
  }
  
  .testimonial-more-btn.hidden {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px;
    margin: 0 0 15px 0;
  }
  
  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .testimonial-info h4 {
    font-size: 14px;
  }
  
  .testimonial-service {
    font-size: 10px;
  }
  
  .testimonial-content {
    font-size: 12px;
  }
}

/* ========================================
   關於我們區 - 手機響應式
   ======================================== */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 24px;
    background: var(--bg-light) !important;
  }
  
  .about-section .section-header {
    margin-bottom: 30px;
  }
  
  /* 標題使用與其他模組一致的 clamp 自適應 */
  .about-section .section-title {
    font-size: clamp(1.5rem, 4vw, 2rem) !important;
    margin-bottom: 10px;
  }
  
  /* 副標題徽章 */
  .about-section .section-badge {
    font-size: 14px;
    padding: 6px 15px;
  }
  
  .about-container {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .about-video {
    flex: none;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .about-content {
    width: 100%;
    display: block ;
  }
  
  .about-title {
    display: block !important;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white) !important;
  }
  
  .about-title a {
    color: var(--accent-color) !important;
    display: inline !important;
  }
  

}

@media (max-width: 480px) {
  .about-section {
    padding: 25px 12px;
  }
  
  .about-section .section-header {
    margin-bottom: 12px;
  }
  
  .about-section .section-badge {
    font-size: 13px;
    padding: 5px 12px;
  }
  
  .about-video {
    margin-bottom: 12px;
  }
  
  .about-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  
}


/* Mobile */
@media (max-width: 768px) {
  .header-container {
    padding: 0 24px;
  }
  
  .hero-section {
    margin-top: 80px;
    padding: 60px 24px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .hero-stat-number {
    font-size: 36px;
  }
  
  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .service-detail-row.reverse {
    direction: ltr;
  }
  
  .section {
    padding: 80px 24px;
  }
  
  .why-us-grid,
  .process-container,
  .price-container,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
}

/* 顧客評價 - BOMI 風格 */
.testimonials-section {
  padding: 120px 40px;
  background: #0D0D0D;
}

.testimonials-section .section-title {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-list {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.testimonial-item:last-child {
  border-bottom: none;
}

.testimonial-item p {
  font-size: 16px;
  line-height: 2;
  color: #B0B0B0;
  margin-bottom: 16px;
}

.testimonial-item .author {
  font-size: 12px;
  color: #606060;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* 通用 Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 30px;
  margin: 0 auto 1px;
 
}

/* ===== 顧客評價輪播 - BOMI 風格 ===== */
.quote-section {
  padding: 140px 40px;
  background: var(--bg-dark);
  position: relative;
}

.quote-section::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: clamp(180px, 20vw, 300px);
  color: var(--accent-color);
  opacity: 0.12;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0.8;
  pointer-events: none;
}

.quote-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  transition: opacity 0.8s ease-in-out;
}

.quote-content.fade-out {
  opacity: 0;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--white);
}

.quote-author {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.quote-author strong {
  color: var(--accent-color);
  font-weight: 500;
}

.quote-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.quote-dot {
  width: 8px;
  height: 8px;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s;
}

.quote-dot:hover {
  background: var(--text-muted);
}

.quote-dot.active {
  background: var(--accent-color);
  width: 24px;
}

/* 手機適配 */
@media (max-width: 768px) {
  .quote-section {
    padding: 80px 24px;
  }
  
  .quote-text {
    font-size: 20px;
  }
}



/* 手機適配 */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
  
  .testimonial-text, .quote-text {
    font-size: 20px;
  }
  
  .price-amount, .process-number {
    font-size: 36px;
  }
}

/* ===== 手機端完整響應式優化 ===== */
@media (max-width: 768px) {
  /* 導航 */
  .header-top {
    font-size: 11px;
    padding: 8px 0;
  }
  
  .header-links {
    gap: 12px;
  }
  
  .header-links a {
    font-size: 11px;
  }
  
  .header-cta-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
  
  /* Hero */
  .hero-section {
    margin-top: 70px;
    padding: 60px 24px;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .hero-btn {
    padding: 14px 24px;
    font-size: 11px;
    width: 100%;
    margin-bottom: 12px;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .hero-stat-number {
    font-size: 32px;
  }
  
  .hero-stat-label {
    font-size: 11px;
  }
  
  /* Section 通用 */
  .section {
    padding: 80px 30px;
  }
  
  .section-title {

  font-size: 36px;
  font-weight: 500;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 14px;
    padding: 10px 20px;
  }
  
  /* 服務詳情 */
  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  
  .service-detail-content h2 {
    font-size: 24px;
  }
  
  .service-detail-content p {
    font-size: 14px;
  }
  
  /* 為什麼選擇我們 */
  .why-us-section {
    padding: 80px 24px;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  
  .why-us-item {
    padding: 32px 24px;
  }
  
  /* 顧客評價輪播 */
  .quote-section {
    padding: 80px 24px;
  }
  
  .quote-section::before {
    font-size: 120px;
  }
  
  .quote-text {
    font-size: 20px;
    line-height: 1.6;
  }
  
  .quote-author {
    font-size: 11px;
  }
  
  .quote-dots {
    gap: 6px;
  }
  
  .quote-dot {
    width: 6px;
    height: 6px;
  }
  
  .quote-dot.active {
    width: 20px;
  }
  
  /* 維修流程  */
  .process-section {
    padding: 80px 24px;
  }
  
  .process-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .process-step {
    padding: 24px;
  }
  
  .process-icon {
    height: 140px;
  }
  
  .process-number {
    font-size: 36px;
  }
  
  .process-title {
    font-size: 18px;
  }
  
  .process-desc {
    font-size: 13px;
  }
  
  /* 價格表 */
  .price-section {
    padding: 80px 24px;
  }
  
  .price-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .price-card {
    padding: 32px 24px;
  }
  
  .price-amount {
    font-size: 36px;
  }
  
  /* 預約表單 */
  .booking-section {
    padding: 80px 0;
  }
  
  .booking-form {
    padding: 32px 24px;
  }
  
  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 14px;
  }
  
  .weui-btn_primary {
    padding: 16px;
    font-size: 12px;
  }
  
  /* Footer */
  .site-footer {
    padding: 48px 24px 32px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-logo img {
    height: 35px;
  }
  
  .footer-info {
    font-size: 13px;
  }
  
  .footer-social {
    justify-content: flex-start;
    gap: 16px;
  }
  
  .footer-social a {
    font-size: 12px;
  }
}

/* 超小屏幕優化 */
@media (max-width: 480px) {
  .header-top {
    font-size: 10px;
  }
  
  .hero-title {
    font-size: 26px;
  }
  
  .hero-subtitle {
    font-size: 13px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .quote-text {
    font-size: 18px;
  }
  
  .why-us-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}


/* ========================================
   【棄用】2026-04-13 - 手機菜單樣式衝突
   原因：display:none 覆蓋了第 279 行的定義，且方向不一致
   替代：使用第 279-293 行的定義（已包含響應式）
   ======================================== */
/*
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
  }
  
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1000;
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    color: var(--white);
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
  }
  
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
  
  .mobile-menu-contact,
  .mobile-whatsapp-btn,
  .mobile-lang-switch {
    margin-top: 24px;
  }
  
  .mobile-contact-btn,
  .mobile-whatsapp-btn {
    display: block;
    padding: 14px 24px;
    margin-bottom: 12px;
    text-align: center;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
  }
  
  .mobile-whatsapp-btn {
    background: var(--accent-color);
    color: var(--black);
  }
}
*/

  
/* ========================================
   服務詳情區 - 優化
   ======================================== */

.service-detail-section {
  background: var(--white); 
  
}

.service-detail-container {
  max-width: 1100px;
  padding: 10px;
  margin: 0 auto;  
}

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}


.service-detail-row.reverse {
  direction: rtl;
}

.service-detail-row.reverse > * {
  direction: ltr;
}


.service-detail-image {
  position: relative;
}

.service-detail-image img,
.service-detail-image video {
  width: 100%;
  height: auto;
  background: var(--black);
  border: 1px solid var(--border-subtle);
}

.service-detail-content h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.service-detail-content h2 small {
  display: block;
  font-size: 0.5em;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}



.service-detail-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-light);
 
}


.service-detail-list {
  list-style: none;
}


.service-detail-list li {
  font-size: 14px;
 color: var(--text-body);  /* ✅ 改為 #B0B0B0 */
  padding: 5px 0;
  border-bottom: 1px solid var(--border-subtle);
  padding-left: 20px;
  position: relative;
 
}

.service-detail-list li::before {
  color: var(--gold);
  position: absolute;
  left: 0;
  content: '✓';  /* ✅ 改為 ✓ 符號 */
  color: var(--accent-color);  /* ✅ 改為金色 */
}


/* ========================================
   價格區 - 優化
   ======================================== */
.price-section {
  background: var(--bg-cream);
  padding: 80px 40px;
}

.price-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.price-card {
  background: #fff;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.price-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-from {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1.2;
}

.price-unit {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--text-muted);
}

.price-item {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-body);
}

/* ========================================
   流程區 Process Section - 優化
   ======================================== */
.process-section {
  position: relative;
  padding: 120px 40px;
  background-image: url('../images/banner_p.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}


.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(26, 26, 26, 0.88) 100%);
  z-index: 1;
}

.process-section > * {
  position: relative;
  z-index: 2;
}

.process-section .section-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
}
.process-container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}


.process-step {
  text-align: center;
  padding: 15px;
  /*background: var(--black-light);*/
  border: 1px solid var(--border-subtle);
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -30px;
  top: 50%;
  font-size: 20px;
  color:  var(--accent-color);
}

.process-icon {
  width: 100%;
  height: 170px;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.process-icon img {
  width: 170px;
  height: 140px;
  padding-top:15px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.process-step:hover .process-icon {
  background: var(--white);
  transform: scale(1.1);
}

.process-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 169, 98, 0.4);
  line-height: 1;
  margin-bottom: 15px;
}

.process-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.process-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}




/* ========================================
   預約區 Booking Section - 優化
   ======================================== */
.booking-section {
  position: relative;
  padding: 80px 0px;
  background-image: url('../images/banner01.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
  
}
/*
.booking-overlay {
  display: none;
  z-index: 1;
   z-index: 2;
   overflow: hidden;
}
*/
.booking-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* 左側 CTA */
.booking-left {
  flex: 0 0 400px;
  color: #fff;
}

.booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.booking-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.booking-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.booking-contact {
  margin-top: 25px;
}

.booking-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 35px;
  border-radius: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.booking-whatsapp-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* 右側表單 */
.booking-right {
  flex: 1;
  max-width: 450px;
}

.form-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.booking-form-compact {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 30px;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.form-input-compact {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2)
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-input-compact::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input-compact:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
}

.form-textarea-compact {
  min-height: 100px;
  resize: vertical;
}

.form-submit-compact {
  width: 100%;
  padding: 14px 30px;
  background: var(--accent-color);
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-compact:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ========================================
   響應式設計
   ======================================== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 60px 20px 100px;
  }
  
  .hero-brands {
    gap: 6px 15px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-detail-row.reverse {
    direction: ltr;
  }
  
  .why-us-section,
  .service-detail-section,
  .price-section,
  .process-section {
    padding: 60px 20px;
  }
  
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px;
  }
  
  .why-us-item {
    padding: 20px 10px;
  }
  
  .why-us-item h4 {
    font-size: 14px;
  }
  
  .why-us-item p {
    font-size: 12px;
  }
  
  /* Process 區響應式 */
  .process-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  /* Booking 區響應式 */
  .booking-container {
    flex-direction: column;
    text-align: center;
  }
  
  .booking-left {
    flex: none;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .booking-right {
    width: 100%;
  max-width: 100%;
  }
  
  .booking-title {
    font-size: 1.8rem;
  }
}

/* ========================================
   菱形服務導航區 Diamond Service Nav
   ======================================== */
.diamond-nav {
  width: 85%;
  margin: 5px auto;
  padding: 5px 0;
}

.diamond-row {
  width: 50%;
  float: left;
}

.diamond-row::after {
  content: '';
  display: table;
  clear: both;
}

.diamond-item {
  position: relative;
  width: 70px;
  height: 70px;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  transform: rotate(45deg);
  border-radius: 1px;
  margin: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.diamond-row:first-child .diamond-item {
  float: right;
}

.diamond-row:last-child .diamond-item {
  float: left;
}

.diamond-item:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4);
}

.diamond-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.diamond-content a {
  color: #fff;
  text-decoration: none;
  display: block;
}

/* 響應式 */
@media (max-width: 768px) {
  .diamond-nav {
    width: 100%;
    padding: 10px 0;
  }
  
  .diamond-row {
    width: 100%;
    float: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .diamond-row:first-child .diamond-item,
  .diamond-row:last-child .diamond-item {
    float: none;
  }
  
  .diamond-item {
    width: 65px;
    height: 65px;
    margin: 12px;
  }
  
  .diamond-content {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
  }
}

/* ===== Hero 視頻背景 ===== */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.7);
  z-index: 1;
}

/*
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section .hero-content {
  position: relative;
  z-index: 10;
}
*/
/* Hero 圖片背景（備用） */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner1.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
}

/* 手機端優化 */
@media (max-width: 768px) {
  .hero-video-bg video {
    min-width: 100%;
    min-height: 100%;
  }
}
