   /* ---------- CONTACT PAGE SPECIFIC ---------- */
    /* Hero 区域 (简约标题) */
    .contact-hero {
      height: 25vh;
      min-height: 200px;
      background: linear-gradient(145deg, #0b1a2a 0%, #1f3a4c 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: url('/template/dongzhou/images/2.png'); /* 抽象背景 */
      background-size: cover;
      background-position: center;
      opacity: 0.15;
      mix-blend-mode: overlay;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      animation: heroFade 1.2s ease-out;
    }
    .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .hero-content h1 span {
      color: var(--primary-gold);
    }
    .hero-content p {
      font-size: 1.2rem;
      opacity: 0.9;
    }
    @keyframes heroFade {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* 联系我们主体：双列布局，左侧联系信息，右侧微信二维码 (突出) */
    .contact-main {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin: 60px 0 40px;
    }

    /* 左侧联系信息卡片 */
    .info-card {
      background: var(--gray-light);
      border-radius: 32px;
      padding: 40px;
      border: 1px solid var(--border-light);
    }
    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
    }
    .info-icon {
      width: 50px;
      height: 50px;
      background: rgba(201, 169, 89, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-gold);
      font-size: 1.4rem;
    }
    .info-content h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 5px;
    }
    .info-content p {
      color: var(--gray-mid);
      font-size: 1rem;
    }
    .info-content a {
      color: var(--gray-mid);
      text-decoration: none;
      transition: color 0.2s;
    }
    .info-content a:hover {
      color: var(--primary-gold);
    }

    /* 社交媒体小图标 */
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    .social-links a {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      font-size: 1.4rem;
      border: 1px solid var(--border-light);
      transition: all 0.2s;
    }
    .social-links a:hover {
      background: var(--primary-gold);
      color: white;
      border-color: var(--primary-gold);
    }

    /* 右侧二维码卡片 (突出展示) */
    .qr-card {
      background: white;
      border-radius: 40px;
      padding: 40px;
      text-align: center;
      border: 2px solid var(--primary-gold);
      box-shadow: 0 20px 35px -10px rgba(201, 169, 89, 0.2);
    }
    .qr-card h2 {
      font-size: 2rem;
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 10px;
    }
    .qr-card .sub {
      color: var(--gray-mid);
      margin-bottom: 30px;
    }
    .qr-large {
      width: 220px;
      height: 220px;
      margin: 0 auto 25px;
      background: #0b1a2a;
      border-radius: 24px;
      padding: 10px;
      border: 2px solid var(--primary-gold);
    }
    .qr-large img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .qr-note {
      font-size: 1rem;
      color: var(--gray-mid);
    }
    .qr-note i {
      color: var(--primary-gold);
      margin-right: 5px;
    }

    /* 办公地址网格 (全球) */
    .offices-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 60px 0 30px;
    }
    .office-item {
      background: var(--gray-light);
      border-radius: 20px;
      padding: 20px;
      text-align: center;
      border: 1px solid var(--border-light);
    }
    .office-item i {
      font-size: 2rem;
      color: var(--primary-gold);
      margin-bottom: 15px;
    }
    .office-item h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .office-item p {
      color: var(--gray-mid);
      font-size: 0.9rem;
    }

    @media (max-width: 900px) {
      .contact-main {
        grid-template-columns: 1fr;
      }
      .offices-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 600px) {
      .hero-content h1 { font-size: 2.5rem; }
      .offices-grid { grid-template-columns: 1fr; }
      .info-card { padding: 25px; }
    }