/* =========================================
  1. Contact Section
  ========================================= */
.contact-section {
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 30px;
}

.contact-info h2 {
  font-size: 32px;
  color: #fff;
  margin: 0 0 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2b55ce, #6432ff);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.info-text h4 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 8px;
}

.info-text p {
  color: #999;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 30px;
}

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

.form-group label {
  display: block;
  color: #a0cfff;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 12, 31, 0.8);
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2b55ce;
  outline: none;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #2b55ce, #6432ff);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(43, 85, 206, 0.5);
}

/* =========================================
  2. Map Section
  ========================================= */
.map-section {
  padding: 0 0 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.map-container {
  padding: 0 30px;
}

.map-box {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-placeholder {
  color: #666;
  font-size: 16px;
  text-align: center;
}

.map-placeholder span {
  display: block;
  font-size: 48px;
  margin-bottom: 15px;
}

/* =========================================
  3. Contact Hero
  ========================================= */
.hero-bg {
  background: linear-gradient(135deg, rgba(43, 85, 206, 0.4), rgba(100, 50, 255, 0.3));
  opacity: 0.8;
  position: absolute;
  inset: 0;
}

/* =========================================
  4. 响应式
  ========================================= */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .hero-stats {
    gap: 40px;
  }

  .stat-number {
    font-size: 40px;
  }
}