/* ================================================================
       设计令牌 — 与首页保持一致
       ================================================================ */
    :root {
      --color-bg: #ffffff;
      --color-text: #000000;
      --color-accent: #da1984;
      --color-accent-tint: #fdeaf3;
      --color-gray-light: #f5f5f5;
      --color-gray-mid: #999999;
      --color-gray-line: #e5e5e5;
      --font-display: 'Playfair Display', serif;
      --font-title: 'Playfair Title', 'Playfair Display', serif;
      --font-body: 'Poppins', sans-serif;
      --font-semibold: 'Poppins SemiBold', 'Poppins', sans-serif;
      --container-width: 1400px;
      --radius-btn: 2px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--color-text);
      background: var(--color-bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    .container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
    h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; }
    .mega-menu-col h3,
    .mega-menu-col h3 a {
      font-family: var(--font-body) !important;
    }

    .btn {
      display: inline-block; padding: 12px 28px; font-size: 12px;
      letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
      border-radius: var(--radius-btn); transition: all .25s ease;
    }
    .btn-primary { background: var(--color-accent); color: #fff; }
    .btn-primary:hover { background: #b31469; }
    .btn-outline { background: transparent; color: var(--color-text); border: 1px solid var(--color-text); }
    .btn-outline:hover { background: var(--color-text); color: #fff; }

    .announce-bar {
      background: #000; color: #fff; text-align: center; font-size: 12px;
      letter-spacing: .08em; padding: 9px 20px;
    }
    .announce-bar b { color: var(--color-accent); font-weight: 600; font-family: var(--font-semibold); }

    /* ================================================================
       面包屑
       ================================================================ */
    .breadcrumb {
      padding: 18px 0;
      border-bottom: 1px solid var(--color-gray-line);
    }
    .breadcrumb ul { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .breadcrumb li { font-size: 13px; color: var(--color-gray-mid); display: flex; align-items: center; gap: 8px; }
    .breadcrumb a:hover { color: var(--color-accent); }
    .breadcrumb li.current { color: var(--color-text); font-weight: 500; }

    /* ================================================================
       新添加的页面横幅 Banner 样式
       ================================================================ */
    .page-banner {
      position: relative;
      width: 100%;
      height: 300px;
      background-color: #1a1a1a;
      background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--banner-bg, none);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
    }
    .banner-content h1 {
      font-size: 42px;
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }
    .banner-content p {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      letter-spacing: 0.05em;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto 16px;
    }
    .banner-line {
      width: 32px;
      height: 2px;
      background-color: var(--color-accent);
      margin: 0 auto;
    }

    /* 移动端适配 */
    @media (max-width: 720px) {
      .page-banner { height: 200px; }
      .banner-content h1 { font-size: 28px; }
      .banner-content p { font-size: 12px; padding: 0 16px; }
    }

    /* ================================================================
       联系信息卡片
       ================================================================ */
    .contact-section {
      padding: 80px 0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: flex-start;
    }

    .contact-info h2 {
      font-size: 32px;
      margin-bottom: 16px;
    }
    .contact-info .divider {
      width: 48px;
      height: 2px;
      background: var(--color-accent);
      margin-bottom: 20px;
    }
    .contact-info .desc {
      font-size: 15px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .info-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
      align-items: flex-start;
    }
    .info-item .icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      border-radius: 50%;
      background: var(--color-accent-tint);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .info-item .icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--color-accent);
      fill: none;
      stroke-width: 1.8;
    }
    .info-item .info-text h4 {
      font-family: var(--font-semibold);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .info-item .info-text p {
      font-size: 13.5px;
      color: #666;
      line-height: 1.6;
    }
    .info-item .info-text a {
      color: var(--color-accent);
      transition: color .2s;
    }
    .info-item .info-text a:hover {
      color: #b31469;
    }

    .contact-social {
      margin-top: 12px;
    }
    .contact-social-label {
      font-size: 13px;
      font-family: var(--font-semibold);
      font-weight: 600;
      margin-bottom: 12px;
    }
    .contact-social-icons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .contact-social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--color-accent-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .25s ease;
      flex-shrink: 0;
    }
    .contact-social-link:hover {
      background: #f5d4e6;
      transform: translateY(-2px);
    }
    .contact-social-icon {
      width: 18px;
      height: 18px;
      display: block;
      background-color: #da1984;
      -webkit-mask-image: var(--icon-url);
      mask-image: var(--icon-url);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
      -webkit-mask-size: contain;
      mask-size: contain;
    }

    /* ================================================================
       联系表单（静态结构 + CF7 控件）
       ================================================================ */
    .contact-form-wrap {
      background: var(--color-gray-light);
      padding: 48px 40px;
      border-radius: 8px;
    }
    .contact-form-wrap h3 {
      font-family: var(--font-semibold);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .contact-form-wrap .form-desc {
      font-size: 14px;
      color: #777;
      margin-bottom: 24px;
    }
    .contact-form-wrap .wpcf7,
    .contact-form-wrap .wpcf7-form {
      margin: 0;
      padding: 0;
      border: 0;
    }
    .contact-form-wrap .wpcf7-form-control-wrap {
      display: block;
      width: 100%;
      position: relative;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 13px;
      font-family: var(--font-semibold);
      font-weight: 600;
      margin-bottom: 6px;
      letter-spacing: .04em;
    }
    .form-group label .required {
      color: var(--color-accent);
    }
    .form-group input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
    .form-group textarea,
    .form-group select,
    .contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit) {
      width: 100%;
      max-width: 100%;
      padding: 12px 16px;
      font-size: 14px;
      font-family: var(--font-body);
      line-height: 1.5;
      border: 1px solid var(--color-gray-line);
      border-radius: 4px;
      background: #fff;
      transition: border-color .3s ease, box-shadow .3s ease;
      outline: none;
      color: var(--color-text);
      box-sizing: border-box;
      box-shadow: none;
      margin: 0;
    }
    .form-group input:not([type="submit"]):focus,
    .form-group textarea:focus,
    .form-group select:focus,
    .contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit):focus {
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px rgba(218,25,132,.12);
    }
    .form-group textarea,
    .contact-form-wrap textarea.wpcf7-form-control {
      resize: vertical;
      min-height: 120px;
      height: 120px;
    }
    .form-group select,
    .contact-form-wrap select.wpcf7-form-control {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-color: #fff;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 18px;
      padding-right: 40px;
      cursor: pointer;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .form-row > .form-group {
      margin-bottom: 18px;
    }
    .form-group.form-submit {
      margin-bottom: 0;
      position: relative;
    }
    .form-group .btn,
    .contact-form-wrap input.wpcf7-submit {
      display: block;
      width: 100%;
      padding: 14px;
      font-size: 13px;
      font-family: var(--font-body);
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      border: none;
      border-radius: var(--radius-btn);
      background: var(--color-accent);
      color: #fff;
      cursor: pointer;
      transition: all .25s ease;
      box-shadow: none;
      line-height: 1.4;
    }
    .form-group .btn:hover,
    .contact-form-wrap input.wpcf7-submit:hover {
      background: #b31469;
    }
    .contact-form-wrap .wpcf7-spinner {
      position: absolute;
      right: 16px;
      top: 14px;
      margin: 0;
    }
    .contact-form-wrap .wpcf7-not-valid-tip {
      display: block;
      margin-top: 6px;
      font-size: 12px;
      color: var(--color-accent);
    }
    .contact-form-wrap .wpcf7-form .wpcf7-response-output {
      display: none !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      height: 0 !important;
      overflow: hidden;
    }
    .contact-form-wrap .wpcf7-form.sent .wpcf7-response-output,
    .contact-form-wrap .wpcf7-form.failed .wpcf7-response-output,
    .contact-form-wrap .wpcf7-form.invalid .wpcf7-response-output,
    .contact-form-wrap .wpcf7-form.unaccepted .wpcf7-response-output,
    .contact-form-wrap .wpcf7-form.spam .wpcf7-response-output,
    .contact-form-wrap .wpcf7-form.aborted .wpcf7-response-output {
      display: block !important;
      height: auto !important;
      overflow: visible;
      margin: 12px 0 0 !important;
      padding: 10px 14px !important;
      border: 1px solid var(--color-gray-line) !important;
      border-radius: 4px;
      font-size: 13px;
      background: #fff;
    }
    .form-note {
      font-size: 12px;
      color: var(--color-gray-mid);
      margin: 12px 0 0;
      text-align: center;
      line-height: 1.5;
    }

    /* ================================================================
       地图 / 位置
       ================================================================ */
    .map-section {
      padding: 0 0 80px 0;
    }
    .map-wrapper {
      border-radius: 8px;
      overflow: hidden;
      background: var(--color-gray-light);
      aspect-ratio: 16/6;
      position: relative;
    }
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }
    .map-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-gray-mid);
      font-size: 14px;
      background: var(--color-gray-light);
    }

    /* Footer 样式统一由 style.css 管理 */

    .back-to-top {
      position: fixed; right: 28px; bottom: 28px; width: 46px; height: 46px; border-radius: 50%;
      background: var(--color-accent); display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 18px rgba(218,25,132,.35); opacity: 0; visibility: hidden;
      transform: translateY(12px);
      transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .25s ease;
      z-index: 150;
    }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: #b31469; }
    .back-to-top svg { width: 18px; height: 18px; stroke: #fff; }

    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
    }
    .reveal.in-view { opacity: 1; transform: translateY(0); }

    /* ================================================================
       响应式
       ================================================================ */
    @media (max-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .contact-form-wrap {
        padding: 36px 28px;
      }
      .map-wrapper { aspect-ratio: 16/8; }
    }
    @media (max-width: 720px) {
      .page-banner { padding: 48px 0 36px; }
      .page-banner h1 { font-size: 32px; }

      .contact-section {
        padding: 48px 0;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
      .contact-form-wrap {
        padding: 28px 20px;
      }
    }