@charset "UTF-8";
/*
Theme Name: VTeam Service
Theme URI: https://www.gwlin.com
Author: GWLin
Author URI: https://www.gwlin.com
Description: VTeam Service Limited 企业合规服务官网（单页）。
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: vteam-service
*/
:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --accent: #c9a227;
  --accent-light: #d4b43a;
  --bg: #ffffff;
  --bg2: #f7f8fa;
  --ink: #1f2937;
  --muted: #6b7280;
  --rule: #e5e7eb;
  --card-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Hiragino Sans GB', sans-serif;
  --font-en: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --max: 1200px; }

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

html {
  scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  z-index: 1000;
  transition: all 0.3s ease; }

.navbar .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px; }

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  font-family: var(--font-en);
  text-decoration: none; }

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

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

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap; }

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

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-left: 1.5rem;
  border-left: 1px solid var(--rule);
  padding-left: 1.5rem; }

.lang-btn {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  border-radius: 4px;
  color: var(--muted);
  transition: all 0.2s;
  font-family: var(--font); }

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--accent); }

.lang-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary); }

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top: 72px; }

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.88) 0%, rgba(26, 54, 93, 0.65) 50%, rgba(26, 54, 93, 0.82) 100%);
  z-index: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem; }

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

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.92;
  line-height: 1.6; }

.hero .tagline {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.85;
  font-weight: 300; }

.hero .intro {
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.75;
  line-height: 1.8; }

.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap; }

.hero-badge {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  cursor: pointer; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0); }
  40% {
    transform: translateX(-50%) translateY(-12px); }
  60% {
    transform: translateX(-50%) translateY(-6px); } }
section {
  padding: 5rem 1.5rem; }

.container {
  max-width: var(--max);
  margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem; }

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

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

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

#about {
  background: var(--bg2); }

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

.about-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem; }

.about-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8; }

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  object-fit: cover;
  max-height: 520px; }

.strengths-section {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 5rem 1.5rem; }

.strengths-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  justify-content: center; }

.strength-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--bg);
  padding: 1.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--rule);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden; }

.strength-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.35s ease; }

.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(26, 54, 93, 0.15);
  border-color: transparent; }

.strength-card:hover::before {
  transform: scaleX(1); }

.strength-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(26, 54, 93, 0.25);
  transition: transform 0.35s ease; }

.strength-card:hover .strength-icon {
  transform: scale(1.08) rotate(-3deg); }

.strength-icon svg {
  display: block; }

.strength-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
  white-space: nowrap; }

.strength-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6; }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; }

.service-block {
  background: var(--bg2);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--rule);
  transition: transform 0.2s, box-shadow 0.2s; }

.service-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1); }

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem; }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0; }

.service-header h3 {
  font-size: 1.25rem;
  color: var(--primary); }

.service-header .service-tag {
  font-size: 0.8rem;
  color: var(--accent);
  background: rgba(201, 162, 39, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-left: auto;
  font-weight: 500; }

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem; }

.service-item {
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--ink);
  border: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem; }

.service-item::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0; }

#packages {
  background: var(--bg2); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; }

.package-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--rule);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden; }

.package-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.12); }

.package-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-bottom-left-radius: 8px;
  font-weight: 600; }

.package-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem; }

.package-card .package-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--bg2);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1.25rem; }

.package-features {
  text-align: left;
  list-style: none;
  margin-bottom: 1.5rem; }

.package-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem; }

.package-features li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700; }

#faq {
  background: var(--bg2); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.faq-item {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden; }

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: background 0.2s;
  user-select: none; }

.faq-question:hover {
  background: rgba(201, 162, 39, 0.03); }

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

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

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

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

.faq-answer p {
  color: var(--muted);
  line-height: 1.7; }

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

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; }

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

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0; }

.contact-item .label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem; }

.contact-item .value {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500; }

.contact-map {
  background: var(--bg2);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--rule); }

.contact-map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--rule); }

.contact-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0; }

.contact-map-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  text-align: center; }

footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.5rem 2rem; }

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center; }

footer .footer-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-en); }

footer .footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6); }

footer .footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center; }

footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s; }

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

footer .copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%; }

@media (max-width: 1024px) {
  .strengths-grid {
    gap: 0.75rem; }

  .strength-card {
    padding: 1.5rem 0.75rem; }

  .strength-card h4 {
    font-size: 0.9rem; }

  .strength-card p {
    font-size: 0.78rem; } }
@media (max-width: 640px) {
  .strengths-grid {
    flex-wrap: wrap; }

  .strength-card {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px; } }
@media (max-width: 768px) {
  .nav-links {
    display: none; }

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

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

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

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

  .service-block {
    padding: 1.5rem; }

  section {
    padding: 3rem 1rem; }

  .section-header h2 {
    font-size: 1.75rem; } }
.hidden {
  display: none !important; }

/* Polylang 语言切换用 a，样式对齐原 .lang-btn */
.lang-switcher a {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--rule);
  background: transparent;
  font-size: 0.8rem;
  border-radius: 4px;
  color: var(--muted);
  transition: all 0.2s;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block; }

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

.lang-switcher a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary); }

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); }
