/* ============================================
   WSL - Qingdao Ways Logistics
   Theme: Deep navy + steel + signal orange
   ============================================ */

:root {
  --navy-900: #0a1f3d;
  --navy-800: #0f2a52;
  --navy-700: #163565;
  --navy-600: #1d4280;
  --steel-500: #2c5aa0;
  --steel-400: #4a7bc8;
  --accent: #ff6b1a;
  --accent-hover: #ff8540;
  --light-bg: #f6f8fb;
  --white: #ffffff;
  --text: #2a3340;
  --text-muted: #6b7689;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(10,31,61,0.06);
  --shadow-md: 0 8px 24px rgba(10,31,61,0.10);
  --shadow-lg: 0 20px 50px rgba(10,31,61,0.18);
  --radius: 6px;
  --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-900);
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============== Top Bar ============== */
.top-bar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-info i { color: var(--accent); margin-right: 6px; }
.top-social { display: flex; gap: 12px; }
.top-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 12px;
  transition: var(--transition);
}
.top-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ============== Header ============== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-logo .logo-img-light {
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  height: 64px;
}
.logo-mark {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy-800), var(--steel-500));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  position: relative;
  letter-spacing: -0.5px;
}
.logo-mark span { color: var(--accent); }
.logo-mark.light {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}
.logo-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--navy-900);
  letter-spacing: 0.5px;
}
.logo-text span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--accent); }

/* Language switcher link */
.main-nav a.lang-link {
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,53,0.06);
}
.main-nav a.lang-link::after { display: none; }
.main-nav a.lang-link:hover {
  background: var(--accent);
  color: #fff;
}

.cta-btn {
  background: var(--accent);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.cta-btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,26,0.3); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  color: var(--navy-900);
  cursor: pointer;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: 720px;
  background:
    linear-gradient(135deg, rgba(10,31,61,0.92) 0%, rgba(22,53,101,0.85) 100%),
    url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?w=1920') center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 100px 24px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 720px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 0;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255,107,26,0.35); }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero-stats span { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* ============== Sections ============== */
section { padding: 90px 0; }
.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head.light { color: #fff; }
.section-head .kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}
.section-head .kicker.light { color: var(--accent); }
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
}
.section-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}
.section-head.light p { color: rgba(255,255,255,0.8); }

/* Section tag (used in Chinese version) */
.section-tag {
  font-family: 'Montserrat', 'Noto Sans SC', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}
.section-tag.light { color: var(--accent); }

/* ============== Welcome ============== */
.welcome { background: var(--light-bg); }

/* ============== Services ============== */
.services {
  background:
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 10%; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 36px 30px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--accent);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { height: 100%; }
.service-card.highlight { background: linear-gradient(135deg, var(--accent), #ff8540); color: #fff; }
.service-card.highlight h3,
.service-card.highlight ul li { color: #fff; }
.service-card.highlight p { color: rgba(255,255,255,0.9); }
.service-card.highlight .service-icon { background: rgba(255,255,255,0.2); color: #fff; }
.service-card.highlight .card-link { color: #fff; border-color: rgba(255,255,255,0.4); }

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy-800), var(--steel-500));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy-900);
}
.service-card.highlight h3 { color: #fff; }
.service-card > p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
}
.service-card ul {
  list-style: none;
  margin-bottom: 22px;
}
.service-card ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.service-card.highlight ul li { border-color: rgba(255,255,255,0.25); }
.service-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 6px;
  color: var(--accent);
  font-size: 12px;
}
.service-card.highlight ul li::before { color: #fff; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.service-card.highlight .card-link { color: #fff; }
.card-link:hover { border-color: var(--accent); gap: 14px; }
.service-card.highlight .card-link:hover { border-color: #fff; }

/* ============== About ============== */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text .kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 14px;
}
.about-text h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 24px;
  line-height: 1.3;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.8;
}
.about-text .btn-primary { margin-top: 16px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-item {
  background: var(--light-bg);
  padding: 28px 22px;
  border-radius: 10px;
  border-top: 3px solid var(--accent);
  transition: var(--transition);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-item i {
  font-size: 30px;
  color: var(--steel-500);
  margin-bottom: 14px;
}
.feature-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--navy-900);
}
.feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============== Why WSL ============== */
.why {
  background: var(--light-bg);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.why-item {
  background: #fff;
  padding: 32px 26px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.why-item h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.why-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.why-cta {
  background: linear-gradient(135deg, var(--navy-800), var(--steel-500));
  color: #fff;
  padding: 40px 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.why-cta p { font-size: 16px; flex: 1; min-width: 280px; }

/* ============== Capabilities ============== */
.capabilities { background: #fff; }
.cap-bars { max-width: 900px; margin: 0 auto; }
.cap-row {
  display: grid;
  grid-template-columns: 220px 1fr 60px;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.cap-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
}
.cap-bar {
  height: 10px;
  background: var(--light-bg);
  border-radius: 5px;
  overflow: hidden;
}
.cap-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--steel-500), var(--accent));
  border-radius: 5px;
  animation: fillIn 1.4s ease-out;
}
@keyframes fillIn {
  from { width: 0; }
}
.cap-pct {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
  text-align: right;
}

/* ============== Contact ============== */
.contact {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info .kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 14px;
}
.contact-info h2 {
  font-size: clamp(26px, 3vw, 34px);
  color: #fff;
  margin-bottom: 18px;
}
.contact-info > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.7;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child { border: 0; padding-bottom: 0; }
.contact-item i {
  font-size: 20px;
  color: var(--accent);
  margin-top: 4px;
}
.contact-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-item p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-size: 24px;
  color: var(--navy-900);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy-900);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.15);
}
.form-group textarea { resize: vertical; }

/* Form status messages */
.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  text-align: center;
  display: none;
}
.form-status.success {
  display: block;
  background: #e6f7ec;
  color: #1a7f3c;
  border: 1px solid #1a7f3c;
}
.form-status.error {
  display: block;
  background: #fde8e8;
  color: #b3261e;
  border: 1px solid #b3261e;
}

/* ============== Footer ============== */
.site-footer {
  background: #06152c;
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo .logo-text strong { color: #fff; }
.footer-logo .logo-text span { color: rgba(255,255,255,0.6); }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-col p i { color: var(--accent); margin-right: 8px; width: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============== Responsive ============== */
@media (max-width: 968px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cap-row { grid-template-columns: 1fr; gap: 6px; }
  .cap-pct { text-align: left; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { max-height: 400px; }
  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: block;
  }
  .main-nav a::after { display: none; }
  .top-info { gap: 12px; font-size: 11px; }
  section { padding: 60px 0; }
  .hero { min-height: 600px; }
  .hero-inner { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-cta { padding: 30px; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .hero-stats { padding-top: 30px; }
  .hero-stats strong { font-size: 28px; }
}

/* ============== Why List (Chinese version) ============== */
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-item {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-item:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
}
.why-item h4 {
  color: var(--navy-900);
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
}
.why-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* ============== Partners (Chinese version) ============== */
.partners { padding: 80px 0; background: var(--light-bg); }
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.partner-col {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent);
}
.partner-col .partner-icon {
  width: 60px; height: 60px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.partner-col h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.partner-col p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.partner-tag {
  color: var(--accent) !important;
  font-weight: 600;
  margin-top: 16px;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}
.btn-link:hover { gap: 10px; }

/* ============== Offices (Chinese version) ============== */
.offices { padding: 80px 0; background: #fff; }
.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.offices-grid .contact-form {
  grid-column: 1 / -1;
  margin-top: 20px;
}
.office-card {
  background: var(--light-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.office-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.office-card.alt {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
}
.office-card.alt h3,
.office-card.alt p,
.office-card.alt a {
  color: #fff;
}
.office-head {
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.office-head i {
  font-size: 20px;
}
.office-head h3 {
  color: #fff;
  font-size: 16px;
  flex: 1;
  margin: 0;
}
.office-tag {
  background: rgba(255,255,255,0.25);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.office-body { padding: 24px; }
.office-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.office-row:last-child { margin-bottom: 0; }
.office-row i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 4px;
  width: 20px;
  flex-shrink: 0;
}
.office-card.alt .office-row i { color: var(--accent-hover); }
.office-row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.office-card.alt .office-row p { color: rgba(255,255,255,0.95); }
.office-row a {
  color: var(--accent);
  font-weight: 500;
}
.office-card.alt .office-row a { color: var(--accent-hover); }
.office-row a:hover { text-decoration: underline; }

/* CTA service card */
.service-card.cta-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.service-card.cta-card h3 { color: #fff; }
.service-card.cta-card p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.service-card.cta-card .service-icon {
  background: var(--accent);
  margin-bottom: 18px;
}

/* Responsive for new sections */
@media (max-width: 900px) {
  .why-list { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-actions { flex-direction: column; align-items: stretch; }
  .partner-col { padding: 28px 20px; }
  .office-head { padding: 16px 18px; }
  .office-body { padding: 18px; }
  .services-grid { grid-template-columns: 1fr; }
}
