/* 联系我们页面特有样式 */

/* 首屏视觉区 Hero Banner */
.contact-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 120px;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
}

.contact-hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.32);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
  font-family: serif !important;
}

.contact-hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-hero-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.contact-hero-badges .badge svg {
  stroke: var(--primary-light);
}

/* CTA 按钮样式 */
.contact-hero-content .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 20px rgba(9, 81, 155, 0.4);
}

.contact-hero-content .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(9, 81, 155, 0.5);
  background: var(--primary-light);
}

.contact-hero-content .cta-button svg {
  stroke: #fff;
}

/* 全球服务网络版块 */
.global-network-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.global-network-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.global-network-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.global-network-section .section-title p {
  font-size: 16px;
  color: var(--text-gray);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.network-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.network-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.network-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.network-flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.network-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network-tag {
  padding: 6px 14px;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
}

.network-tag.highlight {
  background: #e74c3c;
}

.network-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.network-name {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 16px;
}

.network-info p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* 联系表单区域 */
.contact-form-section {
  padding: 100px 0;
  background: var(--primary-color);
}

.contact-form-wrapper {
  display: flex;
  gap: 80px;
}

.contact-form-left {
  flex: 1;
  color: var(--white);
}

.contact-form-left h2 {
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form-left p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 20px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.7;
}

.contact-info-item p {
  font-size: 14px;
  margin-bottom: 5px;
  opacity: 1;
}

.contact-form-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-right h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form .required {
  color: #e74c3c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(9, 81, 155, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form select {
  cursor: pointer;
  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='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 服务优势保障区 */
.why-choose-section {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.why-choose-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.why-choose-section .section-title p {
  font-size: 16px;
  color: var(--text-gray);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-choose-card {
  text-align: center;
  padding: 40px 30px;
  background: #f8f9fa;
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: #fff;
}

.why-choose-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.why-choose-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .contact-hero-content h1 {
    font-size: 40px;
  }

  .contact-form-left h2 {
    font-size: 36px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
 

  .contact-hero-content h1 {
    font-size: 32px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }

  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .contact-form-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
 

  .contact-hero-content h1 {
    font-size: 26px;
  }

  .contact-hero-subtitle {
    font-size: 14px;
  }

  .contact-hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .contact-hero-badges .badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .global-network-section {
    padding: 60px 0;
  }

  .global-network-section .section-title h2 {
    font-size: 28px;
  }

  .network-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-left h2 {
    font-size: 28px;
  }

  .contact-form-left p {
    font-size: 14px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-right {
    padding: 25px 20px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-section .section-title h2 {
    font-size: 28px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}
