@charset "UTF-8";
/*
Theme Name: TS Servicing
Theme URI: https://www.tsservicinglimited.com
Author: GWLin
Author URI: https://www.gwlin.com
Description: TS Servicing Limited 企业官网主题（香港跨境企业服务）
Version: 1.0.6
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 8.3
License: GNU General Public License v2 or later
Text Domain: ts-servicing
*/
:root {
  --bg: #ffffff;
  --bg2: #f8fafc;
  --ink: #0f172a;
  --muted: #64748b;
  --rule: #e2e8f0;
  --accent: #d4a853;
  --accent2: #1e3a5f;
  --primary: #0f172a;
  --card-shadow: 0 4px 24px rgba(15,23,42,0.08);
  --hover-shadow: 0 12px 40px rgba(15,23,42,0.14); }

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased; }

a {
  text-decoration: none;
  color: inherit; }

img {
  max-width: 100%;
  height: auto;
  display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s; }

nav.scrolled {
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px; }

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em; }

.logo span {
  color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center; }

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative; }

.nav-links a:hover, .nav-links a.active {
  color: var(--accent2); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s; }

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%; }

.nav-cta {
  background: var(--accent2);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s; }

.nav-cta:hover {
  background: var(--accent);
  color: var(--ink); }

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  margin-left: 0.5rem; }

.lang-switcher button {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--muted);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit; }

.lang-switcher button:hover {
  border-color: var(--accent);
  color: var(--accent2); }

.lang-switcher button.active {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 64px; }

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero_bg.jpg") center/cover no-repeat; }

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.75) 60%, rgba(15, 23, 42, 0.92) 100%); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 2rem;
  color: #fff; }

.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em; }

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em; }

.hero h1 .highlight {
  color: var(--accent); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8; }

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem; }

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid var(--accent); }

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.4); }

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px); }

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 0.75rem 0;
  z-index: 2;
  overflow: hidden; }

.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite; }

.ticker-item {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem; }

.ticker-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0; }

@keyframes ticker {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem; }

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem; }

.section-header .subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px; }

/* ===== STATS ===== */
.stats-section {
  background: var(--accent2);
  padding: 4rem 0;
  color: #fff; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem; }

.stat-item {
  text-align: center;
  padding: 1rem; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem; }

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5; }

/* ===== ADVANTAGES ===== */
.advantages-section {
  padding: 5rem 0;
  background: var(--bg); }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; }

.advantage-card {
  background: var(--bg2);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--rule);
  transition: all 0.3s;
  position: relative;
  overflow: hidden; }

.advantage-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-4px);
  border-color: var(--accent); }

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s; }

.advantage-card:hover::before {
  opacity: 1; }

.advantage-icon {
  width: 48px;
  height: 48px;
  background: var(--accent2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem; }

.advantage-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent); }

.advantage-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ink); }

.advantage-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8; }

/* ===== SERVICES QUICK ===== */
.services-quick {
  padding: 5rem 0;
  background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; }

.service-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--rule);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  cursor: pointer; }

.service-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-6px);
  border-color: var(--accent2); }

.service-card .service-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ink); }

.service-highlights {
  list-style: none;
  margin-bottom: 1.25rem; }

.service-highlights li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px dashed var(--rule); }

.service-highlights li:last-child {
  border-bottom: none; }

.service-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700; }

.service-card .card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s; }

.service-card:hover .card-link {
  gap: 0.6rem; }

/* ===== CLIENTS ===== */
.clients-section {
  padding: 5rem 0;
  background: var(--bg); }

.client-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap; }

.cat-pill {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--rule);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg); }

.cat-pill:hover, .cat-pill.active {
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2); }

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem; }

.logo-card {
  background: var(--bg2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
  transition: all 0.3s; }

.logo-card:hover {
  border-color: var(--accent);
  box-shadow: var(--card-shadow); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; }

.testimonial-card {
  background: var(--bg2);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--rule);
  position: relative; }

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1rem; }

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1; }

.testimonial-author {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600; }

/* ===== NEWS ===== */
.news-section {
  padding: 5rem 0;
  background: var(--bg2); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; }

.news-card {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: all 0.3s; }

.news-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-4px); }

.news-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  opacity: 0.9;
  overflow: hidden; }

.news-thumb.has-image {
  opacity: 1;
  background: var(--bg2);
  padding: 0; }

.news-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.news-body {
  padding: 1.5rem; }

.news-date {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem; }

.news-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0.5rem; }

.news-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7; }

/* ===== ABOUT ===== */
.about-section {
  padding: 5rem 0;
  background: var(--bg); }

.about-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9; }

.about-intro p {
  margin-bottom: 1rem; }

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
  margin-bottom: 4rem; }

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--rule);
  transform: translateX(-50%); }

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 2rem; }

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%; }

.timeline-content {
  background: var(--bg2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  max-width: 420px;
  margin: 0 1.5rem;
  position: relative;
  transition: all 0.3s; }

.timeline-content:hover {
  box-shadow: var(--card-shadow);
  border-color: var(--accent); }

.timeline-content::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--accent); }

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -27px; }

.timeline-item:nth-child(even) .timeline-content::before {
  left: -27px; }

.timeline-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.35rem; }

.timeline-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem; }

.team-card {
  background: var(--bg2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: all 0.3s; }

.team-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-4px); }

.team-photo {
  height: 200px;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff; }

.team-info {
  padding: 1.25rem; }

.team-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem; }

.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem; }

.team-info p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7; }

/* Culture */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; }

.culture-card {
  background: var(--bg2);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--rule);
  transition: all 0.3s; }

.culture-card:hover {
  box-shadow: var(--card-shadow);
  border-color: var(--accent2); }

.culture-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem; }

.culture-card h4 .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block; }

.culture-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8; }

.culture-card ul {
  list-style: none;
  margin-top: 0.75rem; }

.culture-card ul li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative; }

.culture-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700; }

/* ===== DETAILED SERVICES ===== */
.detailed-services {
  padding: 5rem 0;
  background: var(--bg2); }

.service-detail {
  background: var(--bg);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--rule);
  transition: all 0.3s; }

.service-detail:hover {
  box-shadow: var(--card-shadow); }

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem; }

.service-detail-icon {
  width: 56px;
  height: 56px;
  background: var(--accent2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; }

.service-detail-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent); }

.service-detail-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem; }

.service-detail-header p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7; }

.service-detail h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent2);
  margin: 1.5rem 0 0.75rem; }

.service-detail ol, .service-detail ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem; }

.service-detail li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.5rem; }

.service-detail .highlight-box {
  background: var(--bg2);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7; }

.service-detail .tag {
  display: inline-block;
  background: rgba(212, 168, 83, 0.12);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem; }

/* ===== CASES ===== */
.cases-section {
  padding: 5rem 0;
  background: var(--bg); }

.case-detail {
  background: var(--bg2);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--rule);
  transition: all 0.3s; }

.case-detail:hover {
  box-shadow: var(--card-shadow); }

.case-detail h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ink);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block; }

.case-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.25rem 0 0.5rem; }

.case-detail p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem; }

.case-results {
  background: linear-gradient(135deg, var(--accent2), #1e293b);
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem; }

.case-results h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em; }

.case-results p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  font-size: 0.88rem; }

/* ===== NEWS ARTICLES ===== */
.articles-section {
  padding: 5rem 0;
  background: var(--bg2); }

.article-category {
  margin-bottom: 3rem; }

.article-category h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem; }

.article-category h3 .line {
  flex: 1;
  height: 1px;
  background: var(--rule); }

.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; }

.article-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--rule);
  transition: all 0.3s; }

.article-card:hover {
  box-shadow: var(--card-shadow);
  border-color: var(--accent); }

.article-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0.5rem; }

.article-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7; }

.article-meta {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem; }

/* ===== FAQ ===== */
.faq-section {
  padding: 5rem 0;
  background: var(--bg); }

.faq-category {
  margin-bottom: 2.5rem; }

.faq-category h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--accent); }

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s; }

.faq-item:hover {
  border-color: var(--accent); }

.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s; }

.faq-question:hover {
  background: rgba(212, 168, 83, 0.05); }

.faq-toggle {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 0.5rem; }

.faq-item.open .faq-toggle {
  transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease; }

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem; }

.faq-answer p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8; }

.faq-footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg2);
  border-radius: 12px;
  border: 1px dashed var(--rule); }

.faq-footer p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem; }

.faq-footer a {
  color: var(--accent2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px; }

/* ===== CONTACT ===== */
.contact-section {
  padding: 5rem 0;
  background: var(--accent2);
  color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start; }

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start; }

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0; }

.contact-item .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.contact-item .value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500; }

.contact-offices {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15); }

.contact-offices h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--accent); }

.office-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem; }

.office-list li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  list-style: none;
  padding-left: 1rem;
  position: relative; }

.office-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent); }

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem; }

.contact-form h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem; }

.contact-form .form-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem; }

.form-group {
  margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.8); }

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.2s;
  font-family: inherit; }

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12); }

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4); }

.form-group select option {
  background: var(--accent2);
  color: #fff; }

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

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s; }

.form-submit:hover {
  background: #e8c068;
  transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer {
  background: #0a0f1a;
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 1.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem; }

.footer-brand .logo {
  color: #fff;
  margin-bottom: 0.5rem; }

.footer-brand .slogan {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; }

.footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.footer-nav a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0;
  transition: color 0.2s; }

.footer-nav a:hover {
  color: var(--accent); }

.footer-compliance {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem; }

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35); }

.footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 1rem;
  transition: color 0.2s; }

.footer-bottom a:hover {
  color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr); }

  .services-grid {
    grid-template-columns: repeat(2, 1fr); }

  .team-grid {
    grid-template-columns: repeat(2, 1fr); }

  .timeline::before {
    left: 20px; }

  .timeline-item, .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50px;
    padding-right: 0; }

  .timeline-content::before, .timeline-item:nth-child(even) .timeline-content::before {
    left: -34px !important;
    right: auto !important; } }
@media (max-width: 768px) {
  .nav-links {
    display: none; }

  .mobile-menu-btn {
    display: block; }

  .hero h1 {
    font-size: 1.9rem; }

  .hero-subtitle {
    font-size: 1rem; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr); }

  .advantages-grid {
    grid-template-columns: 1fr; }

  .services-grid {
    grid-template-columns: 1fr; }

  .client-logos {
    grid-template-columns: repeat(2, 1fr); }

  .testimonials {
    grid-template-columns: 1fr; }

  .news-grid {
    grid-template-columns: 1fr; }

  .culture-grid {
    grid-template-columns: 1fr; }

  .article-list {
    grid-template-columns: 1fr; }

  .contact-grid {
    grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr; }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr); }

  .section-header h2 {
    font-size: 1.5rem; } }
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem; }

  .stats-grid {
    grid-template-columns: 1fr 1fr; }

  .stat-number {
    font-size: 1.8rem; }

  .client-logos {
    grid-template-columns: 1fr 1fr; }

  .office-list {
    grid-template-columns: 1fr; } }
/* Polylang 语言切换用 a，样式对齐原 button */
.lang-switcher a {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--muted);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
  position: static; }

/* 语言切换是按钮样式，不要导航链接的底部横线 */
.lang-switcher a::after,
.nav-links .lang-switcher a::after {
  display: none;
  content: none;
  width: 0; }

.lang-switcher a:hover,
.nav-links .lang-switcher a:hover {
  color: var(--accent2);
  border-color: var(--accent); }

.lang-switcher a.active,
.nav-links .lang-switcher a.active {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent); }

.lang-switcher a:hover::after,
.lang-switcher a.active::after,
.nav-links .lang-switcher a:hover::after,
.nav-links .lang-switcher a.active::after {
  display: none;
  width: 0; }

/* 非首页内容区：避开固定导航（64px），登录时再避开 WP 顶栏
 * 注意：勿用 .single-ts_news —— WP body_class 也会输出该类，会把整页（含页脚）限宽。 */
.ts-servicing-article,
.ts-servicing-news-list {
  padding: calc(64px + 2.5rem) 1.5rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box; }

/* 全局 reset 清零了 p margin，新闻正文需单独恢复段落间距 */
.ts-servicing-article .entry-content {
  line-height: 1.8;
  text-align: justify; }
  .ts-servicing-article .entry-content p {
    margin-bottom: 1.25rem; }
  .ts-servicing-article .entry-content p:last-child {
    margin-bottom: 0; }

.ts-servicing-news-list {
  max-width: 1200px; }

body.admin-bar .ts-servicing-article,
body.admin-bar .ts-servicing-news-list {
  padding-top: calc(64px + 32px + 2.5rem); }

.ts-servicing-news-list .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; }

@media (max-width: 768px) {
  .ts-servicing-news-list .news-grid {
    grid-template-columns: 1fr; }

  body.admin-bar .ts-servicing-article,
  body.admin-bar .ts-servicing-news-list {
    padding-top: calc(64px + 46px + 2.5rem); } }

/*# sourceMappingURL=style.css.map */
