/* ---------- Map Showcase ---------- */
.map-showcase {
  text-align: center;
  margin-top: 20px;
}
.map-showcase img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin: 0 auto;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* ---------- Contact Split ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.ci-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand-3);
}
.ci-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--brand);
  margin: 0 0 6px;
}
.ci-body p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 2px;
  line-height: 1.5;
}
.ci-body a {
  color: var(--brand-3);
  transition: color 0.2s;
}
.ci-body a:hover {
  color: var(--brand);
}

/* ---------- Contact Form Panel ---------- */
.contact-form-panel {
  background: linear-gradient(135deg, #0a1628 0%, #0d213b 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cfp-inner {
  padding: 40px;
}
.cfp-inner h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0 0 8px;
}
.cfp-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* ---------- Contact Page Form ---------- */
.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cpf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cpf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cpf-field.cpf-full {
  grid-column: 1 / -1;
}
.cpf-lb {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}
.cpf-lb em {
  font-style: normal;
  color: #ef4444;
}
.cpf-field input,
.cpf-field select,
.cpf-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.cpf-field input::placeholder,
.cpf-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.cpf-field input:focus,
.cpf-field select:focus,
.cpf-field textarea:focus {
  border-color: var(--cyan);
  background: rgba(255,255,255,0.12);
}
.cpf-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.cpf-field select option {
  background: var(--bg-0);
  color: #fff;
}
.cpf-field textarea {
  resize: vertical;
  min-height: 100px;
}
.cpf-row-actions {
  margin-top: 8px;
}
.cpf-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border: none;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cpf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.4);
}
.cpf-submit svg {
  width: 18px;
  height: 18px;
}

/* ---------- Map Section ---------- */
.map-section {
  padding-bottom: 60px;
}
.map-slogan {
  text-align: center;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-slogan-text {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.02em;
}@media (max-width: 1024px) {
.contact-split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
.contact-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
.cfp-inner {
    padding: 28px 20px;
  }
}
@media (max-width: 768px) {
.cpf-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
.cpf-field.cpf-full {
    grid-column: auto;
  }
}

/* ========================================
   LIUTONG FOUNTAIN - Contact Us Page Styles
   Clean Single-Block Split Layout
   ======================================== */

   .container {
    max-width: var(--wrap, 1440px);
    margin: 0 auto;
    padding: 0 40px;
  }
  
  /* ========================================
     1. HERO SECTION (顶部 Banner，恢复干净的常规高度)
     ======================================== */
  .contact-hero {
    position: relative;
    min-height: 480px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    background: #0a1628;
  }
  .contact-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
  .contact-hero .hero-img { width: 100%; height: 100%; object-fit: cover; }
  .contact-hero .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.3) 100%);
  }
  
  .hero-content { position: relative; z-index: 1; width: 100%; }
  .hero-container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 40px; }
  .hero-text-box { max-width: 550px; text-align: left; padding: 80px 0; }
  .hero-title {
    font-family: 'Inter', sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 56px);
    color: #fff; margin: 0 0 16px; text-transform: none; line-height: 1.1;
  }
  .hero-desc { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0; }
  
  .breadcrumb-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
    background: rgba(10, 22, 40, 0.6); 
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 14px 0;
  }
  .breadcrumb { display: flex; align-items: center; justify-content: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; padding: 0; }
  .breadcrumb a { color: #0088ff; text-decoration: none; transition: color 0.3s; }
  .breadcrumb a:hover { color: #fff; }
  .breadcrumb .sep { margin: 0 8px; color: rgba(255,255,255,0.3); }
  .breadcrumb .current { color: #fff; font-weight: 600; }
  
  /* ========================================
     2. MAIN CONTENT (一体化大板块，中间竖线划分)
     ======================================== */
  .contact-section {
    background: #f0f7fa; 
    padding: 80px 0 100px;
  }
  
  /* 核心修改：将 split 容器变成一个带阴影的白色大板块 */
  .contact-split {
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    align-items: stretch; /* 保证左右等高，竖线贯穿 */
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    padding: 60px; /* 大板块内部的整体留白 */
  }
  
  /* --- Left: Contact Info (左半部) --- */
  .contact-info-left {
    padding-right: 60px; /* 留出右侧竖线的呼吸空间 */
  }
  .contact-left-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 16px; 
    line-height: 1.2;
  }
  .contact-lead {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 40px;
  }
  .contact-info-title {
    font-size: 20px; 
    font-weight: 700; 
    color: #0a1628; 
    margin: 0 0 24px; 
    font-family: 'Inter', sans-serif;
  }
  
  .contact-info-card {
    display: flex; gap: 16px; margin-bottom: 20px; padding: 20px;
    background: #ffffff; border-radius: 8px; border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02); transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .contact-info-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,136,255,0.1); border-color: #0088ff; }
  .ci-icon {
    width: 48px; height: 48px; background: #f0f7fa; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .ci-icon svg { width: 22px; height: 22px; color: #0088ff; }
  .ci-body { display: flex; flex-direction: column; justify-content: center; }
  .ci-body h4 { font-family: 'Inter', sans-serif; font-size: 15px; color: #0a1628; font-weight: 700; margin: 0 0 4px; }
  .ci-body p, .ci-body p a { font-size: 14px; color: #64748b; font-weight: 500; text-decoration: none; margin: 0; transition: color 0.2s; }
  .ci-body p a:hover { color: #0088ff; }
  
  /* --- Right: Form Panel (右半部，带左竖线) --- */
  .contact-form-panel {
    padding-left: 60px; /* 左侧留白 */
    border-left: 1px solid #e2e8f0; /* 中间分隔竖线 */
    background: transparent; /* 背景交给外层大板块 */
    border-radius: 0; /* 移除独立圆角 */
    box-shadow: none; /* 移除独立阴影 */
    margin-top: 0; /* 彻底移除上滑悬浮覆盖的负边距！ */
  }
  .cfp-inner { padding: 0; }
  .cfp-inner h3 { font-family: 'Inter', sans-serif; font-size: 28px; color: #0a1628; font-weight: 800; margin: 0 0 16px; line-height: 1.2; }
  .cfp-sub { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0 0 32px; }
  
  .cpf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .cpf-field { display: flex; flex-direction: column; gap: 8px; }
  .cpf-field.cpf-full { grid-column: 1 / -1; }
  .cpf-lb { font-size: 12px; font-weight: 700; color: #1e293b; text-transform: uppercase; letter-spacing: 0.05em; }
  .cpf-lb em { color: #ef4444; font-style: normal; }
  
  /* Pure White Inputs */
  .cpf-field input, .cpf-field select, .cpf-field textarea {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    color: #0a1628;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    width: 100%;
  }
  .cpf-field input:focus, .cpf-field select:focus, .cpf-field textarea:focus {
    border-color: #0088ff;
    box-shadow: 0 0 0 3px rgba(0,136,255,0.1);
    outline: none;
  }
  .cpf-field input::placeholder, .cpf-field textarea::placeholder { color: #94a3b8; }
  .cpf-field select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
  }
  .cpf-field textarea { min-height: 120px; resize: vertical; }
  
  .cpf-row-actions { margin-top: 10px; display: flex; justify-content: flex-start; }
  .cpf-submit {
    background: #0088ff; color: #fff; padding: 14px 32px; border: none; border-radius: 6px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease;
  }
  .cpf-submit:hover { background: #006dd6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,136,255,0.3); }
  
  /* ========================================
     3. MAP SECTION
     ======================================== */
  .map-section { padding: 80px 0 100px; background: #ffffff; }
  .map-showcase img {
    width: 100%; max-width: 1000px; margin: 0 auto; display: block;
    border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  }
  .map-slogan { text-align: center; margin-top: 40px; }
  .map-slogan-text { font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 700; color: #0a1628; line-height: 1.5; }
  
  /* ========================================
     RESPONSIVE (适配移动端，竖线变为横线)
     ======================================== */
  @media (max-width: 1024px) {
    .contact-split { grid-template-columns: 1fr; padding: 40px; gap: 0; }
    .contact-info-left { padding-right: 0; padding-bottom: 40px; }
    .contact-form-panel { 
      padding-left: 0; padding-top: 40px; 
      border-left: none; /* 移动端去掉竖线 */
      border-top: 1px solid #e2e8f0; /* 移动端换成横线分割 */
    }
  }
  @media (max-width: 768px) {
    .contact-hero {  padding-top: 80px; }
    .hero-text-box { padding: 40px 0; }
    .hero-title { font-size: 36px; }
    .contact-split { padding: 24px; }
    .contact-info-left { padding-bottom: 32px; }
    .contact-form-panel { padding-top: 32px; }
    .cpf-row { grid-template-columns: 1fr; }
    .cpf-field.cpf-full { grid-column: auto; }
    .map-slogan-text { font-size: 18px; }
  }