* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --navy: #001f3f; --light-navy: #003d7a; --accent: #1565c0; --white: #fff; --text-primary: #1a2332; --text-secondary: #4a6080; --border: #c5d5e8; --card-bg: #ffffff; --section-alt: #eef4fc; }
html { scroll-behavior: smooth; }
body { font-family: 'Microsoft JhengHei', 'PingFang HK', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--white); color: var(--text-primary); line-height: 1.8; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { padding: 12px 24px; border: none; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; font-family: inherit; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--light-navy); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,31,63,0.3); }
.btn-secondary { background: var(--accent); color: var(--white); }
.btn-secondary:hover { background: #1251a3; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(21,101,192,0.3); }
.btn-whatsapp { background: var(--accent); color: var(--white); padding: 12px 32px; border-radius: 25px; display: inline-flex; align-items: center; gap: 8px; }
.whatsapp-icon { height: 22px; width: 22px; vertical-align: middle; }
.btn-whatsapp:hover { background: #1251a3; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(21,101,192,0.3); }
.btn-emergency { background: var(--navy); color: var(--white); }
.btn-emergency:hover { background: var(--light-navy); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,31,63,0.3); }
.header { position: fixed; top: 0; width: 100%; background: rgba(0, 31, 63, 0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 2px 12px rgba(0,0,0,0.15); border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 100; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 18px; font-weight: 700; color: var(--white); display: flex; align-items: center; }
.logo-image { height: 110px; width: auto; vertical-align: middle; border-radius: 10px; }
.nav-menu { display: flex; align-items: center; gap: 18px; flex: 1; margin-left: 40px; }
.nav-link { position: relative; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); text-decoration: none; border-radius: 12px; transition: background-color 0.25s ease, box-shadow 0.25s ease; }
.nav-link:hover, .nav-link:focus-visible { color: var(--white); background: rgba(255,255,255,0.1); box-shadow: 0 5px 18px rgba(0,0,0,0.16); outline: none; }
.nav-icon { width: 27px; height: 27px; display: block; opacity: 0.88; transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease; }
.nav-link:hover .nav-icon, .nav-link:focus-visible .nav-icon { transform: scale(1.28); opacity: 1; filter: drop-shadow(0 3px 7px rgba(0,0,0,0.28)); }
.nav-tooltip { position: absolute; left: 50%; bottom: calc(100% + 9px); z-index: 2; padding: 6px 10px; color: var(--navy); background: var(--white); border-radius: 6px; box-shadow: 0 5px 18px rgba(0,0,0,0.2); font-size: 13px; font-weight: 600; line-height: 1; white-space: nowrap; opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 6px) scale(0.94); transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease; }
.nav-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--white); }
.nav-link:hover .nav-tooltip, .nav-link:focus-visible .nav-tooltip { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }
.header-cta { display: flex; gap: 10px; }
.hero { margin-top: 70px; padding: 80px 20px; background: linear-gradient(rgba(0,15,35,0.72), rgba(0,31,63,0.80)), url('logo/hero-bg.jpg') center center / cover no-repeat; color: var(--white); text-align: center; }
.hero h1 { font-size: 48px; font-weight: 700; margin-bottom: 20px; }
.hero .subtitle { font-size: 24px; margin-bottom: 16px; }
.hero .desc { font-size: 18px; margin-bottom: 32px; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.9; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); overflow-y: auto; }
.modal-content { background: var(--white); margin: 40px auto; padding: 40px; border-radius: 8px; width: 90%; max-width: 500px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); max-height: calc(100vh - 80px); overflow-y: auto; }
.modal-content h2 { color: var(--navy); margin-bottom: 24px; }
.close { color: #aaa; float: right; font-size: 28px; cursor: pointer; font-weight: bold; }
.close:hover { color: var(--navy); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--navy); font-weight: 600; font-size: 14px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 6px; font-family: inherit; font-size: 14px; color: var(--text-primary); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }
.form-group select { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 6px; font-family: inherit; font-size: 14px; color: var(--text-primary); background: white; cursor: pointer; }
.form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }
.modal-dark { background: #2d3951; max-width: 600px; }
.modal-dark .form-group input,
.modal-dark .form-group textarea,
.modal-dark .form-group select { color: var(--white); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.modal-dark .form-group input::placeholder,
.modal-dark .form-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.modal-dark .form-group select option { color: var(--text-primary); background: white; }
.modal-title-dark, .modal-dark h2 { color: var(--white) !important; font-size: 28px; margin-bottom: 12px; font-weight: 700; }
.modal-subtitle-dark { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 24px; font-weight: 400; }
.case-type-banner { background: #f5a623; color: var(--white); padding: 16px 24px; margin: 0 -40px 32px -40px; font-weight: 600; font-size: 16px; }
.close-dark { color: rgba(255,255,255,0.6); }
.close-dark:hover { color: var(--white); }
.label-dark, .modal-dark .form-group label { color: var(--white); font-size: 13px; font-weight: 500; }
.required { color: #ff4444; margin-left: 2px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.btn-submit-dark { width: 100%; background: var(--white); color: #2d3951; padding: 14px; font-size: 16px; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; margin-top: 8px; }
.btn-submit-dark:hover { background: #f0f0f0; transform: translateY(-1px); }
.section-title { font-size: 32px; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 48px; }
.offences { padding: 80px 20px; background: var(--white); }
.offences-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.offence-card { background: var(--card-bg); padding: 32px 24px; border-radius: 8px; text-align: center; transition: all 0.3s ease; border: 2px solid var(--border); }
.offence-card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(21,101,192,0.12); transform: translateY(-4px); }
.card-icon { font-size: 40px; margin-bottom: 16px; }
.offence-card h3 { color: var(--navy); font-size: 18px; margin-bottom: 12px; }
.offence-card p { color: var(--text-secondary); margin-bottom: 16px; font-size: 14px; }
.card-link { color: var(--accent); text-decoration: none; font-weight: 600; }
.card-link:hover { color: var(--navy); }
.process { padding: 80px 20px; background: var(--section-alt); }
.timeline { max-width: 900px; margin: 0 auto; }
.timeline-item { display: flex; gap: 30px; margin-bottom: 40px; position: relative; }
.timeline-item:not(:last-child)::after { content: ''; position: absolute; left: 24px; top: 60px; width: 2px; height: 80px; background: var(--border); }
.timeline-marker { background: var(--navy); color: var(--white); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.timeline-content h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.timeline-content p { color: var(--text-secondary); }
.support { padding: 80px 20px; background: var(--white); }
.support-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.support-label { color: var(--accent); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.support-title { font-size: 40px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; line-height: 1.3; }
.support-description { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 40px; }
.support-stats { display: flex; gap: 16px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.stat-box { background: #e8f1fa; padding: 24px 32px; border-radius: 8px; min-width: 140px; }
.stat-value { font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.btn-support { background: var(--accent); color: var(--white); padding: 14px 32px; font-size: 16px; font-weight: 600; border-radius: 6px; text-decoration: none; display: inline-block; transition: all 0.3s ease; }
.btn-support:hover { background: #1251a3; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(21,101,192,0.3); }
.support-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.support-card { background: var(--card-bg); padding: 32px 20px; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); text-align: center; }
.support-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); border-color: var(--accent); }
.support-icon { font-size: 48px; margin-bottom: 16px; }
.support-card h3 { color: var(--navy); font-size: 16px; margin-bottom: 12px; font-weight: 700; }
.support-card p { color: var(--text-secondary); font-size: 13px; line-height: 1.6; }
.success { padding: 80px 20px; background: var(--section-alt); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-bottom: 60px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.stat-card { background: linear-gradient(135deg, var(--navy), var(--light-navy)); color: var(--white); padding: 32px 24px; text-align: center; border-radius: 8px; }
.stat-number { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.stat-card p { color: rgba(255,255,255,0.85); }
.cases-container { margin-top: 40px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.cases-container h3 { color: var(--navy); font-size: 22px; margin-bottom: 24px; }
.cases-filter { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-btn { padding: 10px 16px; border: 2px solid var(--border); background: transparent; color: var(--text-secondary); border-radius: 6px; cursor: pointer; font-weight: 600; font-size: 14px; transition: all 0.3s ease; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cases-list { display: grid; gap: 24px; }
.case-card { border: 1px solid var(--border); padding: 24px; border-radius: 8px; background: var(--card-bg); display: none; }
.case-card.active { display: block; }
.case-card h4 { color: var(--navy); margin-bottom: 12px; font-size: 16px; }
.case-card p { margin-bottom: 10px; font-size: 14px; color: var(--text-secondary); }
.commitment { padding: 80px 20px; background: var(--white); }
.commitment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.commitment-card { background: var(--card-bg); padding: 32px 24px; border-radius: 8px; text-align: center; box-shadow: 0 2px 12px rgba(0,31,63,0.08); border: 1px solid var(--border); }
.commitment-card h3 { color: var(--navy); margin-bottom: 12px; }
.commitment-card p { color: var(--text-secondary); }
.faq { padding: 80px 20px; background: var(--section-alt); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 16px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.faq-question { padding: 20px; background: var(--section-alt); color: var(--navy); cursor: pointer; font-weight: 600; user-select: none; font-size: 15px; position: relative; padding-right: 50px; }
.faq-question::after { content: '▼'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 12px; color: var(--accent); transition: transform 0.3s ease; }
.faq-item.active .faq-question::after { transform: translateY(-50%) rotate(180deg); }
.faq-question:hover { background: #dce8f5; }
.faq-answer { padding: 20px; background: var(--white); display: none; font-size: 14px; color: var(--text-secondary); border-top: 1px solid var(--border); }
.faq-answer.active { display: block; }
.faq-contact-cta { max-width: 800px; margin: 60px auto 0; text-align: center; background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,31,63,0.1); }
.faq-contact-cta h3 { color: var(--navy); font-size: 24px; margin-bottom: 12px; }
.faq-contact-cta p { color: var(--text-secondary); margin-bottom: 24px; font-size: 16px; }
.btn-whatsapp-large { background: #25d366; color: var(--white); padding: 16px 40px; border-radius: 30px; font-size: 18px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: all 0.3s ease; }
.btn-whatsapp-large:hover { background: #1ebc59; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
.whatsapp-icon-large { height: 28px; width: 28px; }
.pricing { padding: 80px 20px; background: var(--section-alt); }
.pricing-subtitle { text-align: center; color: var(--accent); font-size: 18px; font-weight: 600; margin-bottom: 40px; margin-top: -24px; }
.pricing-note { text-align: center; font-size: 16px; margin-bottom: 40px; color: var(--text-secondary); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-bottom: 32px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.pricing-card { background: var(--card-bg); padding: 32px 24px; border-radius: 8px; text-align: center; box-shadow: 0 2px 12px rgba(0,31,63,0.08); border: 2px solid var(--border); }
.pricing-card.featured { border-color: var(--navy); transform: scale(1.05); }
.pricing-card h3 { color: var(--navy); margin-bottom: 16px; font-size: 18px; }
.price { font-size: 28px; font-weight: 700; color: var(--accent); margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 24px; font-size: 14px; }
.pricing-features li { padding: 8px 0; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-disclaimer { max-width: 800px; margin: 0 auto; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 6px; font-size: 13px; color: var(--text-secondary); text-align: center; }
.contact { padding: 80px 20px; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.contact-info h3 { color: var(--navy); margin-bottom: 16px; font-size: 16px; }
.contact-info p { margin-bottom: 8px; color: var(--text-secondary); font-size: 14px; }
.contact-methods a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact-methods a:hover { color: var(--navy); }
.map-iframe { border-radius: 8px; display: block; box-shadow: 0 2px 12px rgba(0,31,63,0.1); }
.footer { background: var(--navy); color: var(--white); padding: 60px 20px 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-section h4 { margin-bottom: 16px; font-size: 16px; }
.footer-section p, .footer-section a { font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-section a:hover { color: var(--white); }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 30px; max-width: 1200px; margin: 0 auto; }
.disclaimer-box { background: rgba(255,255,255,0.08); padding: 20px; border-radius: 6px; margin-bottom: 20px; font-size: 12px; color: rgba(255,255,255,0.75); }
.disclaimer-box p { margin-bottom: 8px; }
.footer-links { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-links ul { display: flex; gap: 20px; list-style: none; }
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 2px solid var(--border); z-index: 99; }
.sticky-btn { flex: 1; padding: 12px; text-align: center; text-decoration: none; color: var(--text-primary); display: flex; flex-direction: column; align-items: center; gap: 4px; border-right: 1px solid var(--border); }
.sticky-btn:last-child { border-right: none; }
.sticky-btn.whatsapp { color: #25d366; }
.sticky-btn.call { color: var(--navy); }
.btn-icon { font-size: 24px; }
.btn-text { font-size: 12px; font-weight: 600; }
.mobile-menu-btn { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; background: transparent; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 25px; height: 3px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.mobile-nav-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(0,0,0,0.5); z-index: 999; transition: right 0.3s ease; }
.mobile-nav-overlay.active { right: 0; }
.mobile-nav { position: absolute; right: 0; top: 0; width: 280px; height: 100vh; background: var(--white); padding: 80px 0 20px; box-shadow: -2px 0 10px rgba(0,0,0,0.1); }
.mobile-nav-link { display: block; padding: 16px 30px; color: var(--navy); text-decoration: none; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.mobile-nav-link:hover { background: var(--section-alt); }
@media (max-width: 768px) { 
  .nav-menu { display: none; } 
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 60px 20px; margin-top: 90px; }
  .hero h1 { font-size: 32px; } 
  .hero .subtitle { font-size: 18px; } 
  .hero-cta { flex-direction: column; } 
  .hero-cta .btn { width: 100%; } 
  .section-title { font-size: 24px; margin-bottom: 32px; } 
  .offences-grid { grid-template-columns: 1fr; } 
  .timeline-item { flex-direction: column; gap: 16px; }
  .timeline-item::after { display: none; }
  .support-grid { grid-template-columns: 1fr; gap: 20px; }
  .support-card { padding: 28px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cases-filter { gap: 8px; }
  .filter-btn { padding: 8px 12px; font-size: 13px; }
  .commitment-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; } 
  .footer-content { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links ul { flex-direction: column; gap: 12px; }
  .mobile-sticky-bar { display: flex; } 
  body { padding-bottom: 60px; }
  .form-row-3 { grid-template-columns: 1fr; gap: 16px; }
  .modal-content { width: 95%; padding: 24px; }
  .pricing-subtitle { font-size: 15px; }
  .pricing-table th, .pricing-table td { padding: 12px 10px; font-size: 13px; }
  .expertise-list-single { grid-template-columns: 1fr; }
  .about-expertise { padding: 30px 20px; }
  .track-record-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 28px; }
  .about-hero { padding: 60px 20px 50px; }
  .about-cta-block { padding: 40px 20px; margin-top: 60px; }
  .about-cta-btns { flex-direction: column; gap: 12px; }
  .about-cta-btns .btn { width: 100%; }
}
@media (max-width: 480px) { .hero h1 { font-size: 24px; } .section-title { font-size: 20px; } .header-cta { display: none; } }

/* ===== Nav active state ===== */
.nav-link-active { color: var(--white) !important; background: rgba(255,255,255,0.12); box-shadow: inset 0 -2px 0 var(--white); }

/* ===== About page hero ===== */
.about-hero { margin-top: 70px; padding: 80px 20px 70px; background: linear-gradient(rgba(0,15,35,0.75), rgba(0,31,63,0.85)), url('logo/hero-bg.jpg') center center / cover no-repeat; color: var(--white); text-align: center; }
.about-hero-content { max-width: 700px; margin: 0 auto; }
.about-hero-label { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.about-hero h1 { font-size: 44px; font-weight: 700; margin-bottom: 18px; line-height: 1.25; }
.about-hero p { font-size: 17px; opacity: 0.88; line-height: 1.8; }

/* ===== About page main wrapper ===== */
.about-page { padding: 80px 20px; }

/* ===== About CTA block ===== */
.about-cta-block { text-align: center; background: linear-gradient(135deg, var(--navy), var(--light-navy)); color: var(--white); border-radius: 16px; padding: 60px 40px; margin-top: 80px; }
.about-cta-block h2 { font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.about-cta-block p { font-size: 16px; opacity: 0.85; margin-bottom: 36px; }
.about-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.about-cta-btns .btn-secondary { background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.about-cta-btns .btn-secondary:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 768px) { .about-hero h1 { font-size: 30px; } .about-cta-block { padding: 40px 20px; } .about-cta-block h2 { font-size: 22px; } }

/* ===== 關於我們 Section ===== */
.about { padding: 80px 20px; background: var(--white); }
.about-label { color: var(--accent); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.about-heading { font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 20px; line-height: 1.3; }
.about-heading.centered { text-align: center; }
.about-label.centered { text-align: center; display: block; }
.about-body { color: var(--text-secondary); font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.about-tagline { font-size: 22px; font-weight: 700; color: var(--accent); margin-bottom: 20px; font-style: italic; border-left: 4px solid var(--accent); padding-left: 16px; }

/* Mission block */
.about-mission { margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.about-mission-text { text-align: center; }
.about-mission-highlights { display: flex; flex-direction: column; gap: 20px; }
.mission-highlight-card { background: var(--section-alt); border-radius: 12px; padding: 24px 20px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--border); transition: box-shadow 0.3s, transform 0.3s; }
.mission-highlight-card:hover { box-shadow: 0 6px 20px rgba(21,101,192,0.12); transform: translateY(-3px); }
.mh-icon { font-size: 28px; flex-shrink: 0; }
.mission-highlight-card h4 { color: var(--navy); font-size: 16px; margin-bottom: 6px; }
.mission-highlight-card p { color: var(--text-secondary); font-size: 13px; line-height: 1.7; margin: 0; }

/* Expertise block */
.about-expertise { background: var(--section-alt); border-radius: 16px; padding: 50px 40px; margin-bottom: 60px; max-width: 900px; margin-left: auto; margin-right: auto; }
.expertise-list-single { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.expertise-list-single li { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border-radius: 10px; padding: 20px; box-shadow: 0 2px 8px rgba(0,31,63,0.07); border: 1px solid var(--border); }
.expertise-list-single li:hover { box-shadow: 0 4px 12px rgba(21,101,192,0.15); transform: translateY(-2px); transition: all 0.3s ease; }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 40px; }
.expertise-col-title { color: var(--navy); font-size: 18px; font-weight: 700; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.expertise-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.expertise-list li { display: flex; gap: 14px; align-items: flex-start; }
.eli-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.expertise-list li strong { color: var(--navy); font-size: 14px; display: block; margin-bottom: 3px; }
.expertise-list li p, .expertise-list-single li p { color: var(--text-secondary); font-size: 13px; margin: 0; line-height: 1.6; }
.expertise-list-single li strong { color: var(--navy); font-size: 15px; display: block; margin-bottom: 4px; font-weight: 600; }
.team-badge { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: 10px; padding: 20px; margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,31,63,0.07); border: 1px solid var(--border); }
.team-badge:last-child { margin-bottom: 0; }
.tb-icon { font-size: 28px; flex-shrink: 0; }
.team-badge strong { color: var(--navy); font-size: 15px; display: block; margin-bottom: 6px; }
.team-badge p { color: var(--text-secondary); font-size: 13px; line-height: 1.7; margin: 0; }

/* Track record block */
.about-track-record { text-align: center; }
.about-tr-note { color: var(--text-secondary); font-size: 13px; max-width: 680px; margin: 0 auto 48px; line-height: 1.7; background: #fff8e1; border: 1px solid #ffe082; border-radius: 6px; padding: 12px 20px; }
.track-record-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.tr-card { background: linear-gradient(135deg, var(--navy), var(--light-navy)); color: var(--white); padding: 36px 20px; border-radius: 12px; text-align: center; }
.tr-number { font-size: 48px; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.tr-number span { font-size: 28px; }
.tr-label { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.tr-desc { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.tr-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto; text-align: left; }
.trh-item { display: flex; gap: 14px; align-items: flex-start; background: var(--section-alt); border-radius: 10px; padding: 18px 20px; border: 1px solid var(--border); }
.trh-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.trh-item p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin: 0; }
.trh-item strong { color: var(--navy); }

/* About responsive */
@media (max-width: 900px) {
  .about-mission { grid-template-columns: 1fr; gap: 40px; }
  .expertise-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-expertise { padding: 40px 24px; }
  .track-record-grid { grid-template-columns: repeat(2, 1fr); }
  .tr-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .track-record-grid { grid-template-columns: 1fr 1fr; }
  .about-heading { font-size: 26px; }
  .about-tagline { font-size: 18px; }
}

/* ===== Pricing Table Styles ===== */
.pricing-table { max-width: 1100px; margin: 0 auto; background: var(--white); border-radius: 12px; box-shadow: 0 4px 20px rgba(0,31,63,0.1); overflow: hidden; }
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table thead { background: linear-gradient(135deg, var(--navy), var(--light-navy)); color: var(--white); }
.pricing-table th { padding: 20px 16px; text-align: left; font-weight: 600; font-size: 15px; border-right: 1px solid rgba(255,255,255,0.2); }
.pricing-table th:last-child { border-right: none; }
.pricing-table tbody tr { border-bottom: 1px solid var(--border); transition: background-color 0.2s ease; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--section-alt); }
.pricing-table td { padding: 20px 16px; font-size: 14px; color: var(--text-secondary); vertical-align: top; border-right: 1px solid var(--border); }
.pricing-table td:last-child { border-right: none; }
.pricing-table td:first-child { color: var(--navy); font-weight: 600; }
.pricing-table td:nth-child(2) { color: var(--accent); font-weight: 700; font-size: 16px; }
@media (max-width: 768px) {
  .pricing-table { overflow-x: auto; }
  .pricing-table table { min-width: 600px; }
}

/* ===== Floating Buttons (WhatsApp + Back to Top) ===== */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.float-whatsapp {
  background: #25D366;
}
.float-whatsapp-icon {
  width: 32px;
  height: 32px;
  display: block;
}
.float-top {
  background: var(--navy);
  color: var(--white);
}
.float-top svg {
  display: block;
}
/* 手機上避免與底部 sticky bar 重疊 */
@media (max-width: 768px) {
  .floating-buttons {
    right: 14px;
    bottom: 90px;
    gap: 10px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
  .float-whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}
