.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--deep-navy-color); /* From shared.css, assumed dark */
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-contact__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body padding-top for header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(17, 59, 122, 0.8) 0%, rgba(29, 95, 209, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 80px 20px;
}

.page-contact__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2rem;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 40px;
}

.page-contact__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-contact__btn-primary,
.page-contact__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 0 15px #4FA8FF; /* Glow */
}

.page-contact__btn-secondary {
  background: #10233F; /* Card BG */
  color: #F3F8FF; /* Text Main */
  border: 2px solid #244D84; /* Border */
}

.page-contact__btn-secondary:hover {
  background: #244D84; /* Border */
  color: #F2C14E; /* Gold */
  box-shadow: 0 0 15px #4FA8FF; /* Glow */
}

.page-contact__info-section,
.page-contact__form-section,
.page-contact__faq-section,
.page-contact__social-section {
  padding: 80px 0;
  text-align: center;
}

.page-contact__dark-section {
  background-color: #08162B; /* Deep Navy */
}

.page-contact__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1rem;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__method-card {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 350px;
  box-sizing: border-box;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(79, 168, 255, 0.3); /* Glow */
}

.page-contact__method-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-contact__method-title {
  font-size: 1.5rem;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__method-text {
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__method-link {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 12px;
  padding: 40px;
  text-align: left;
  box-sizing: border-box;
}

.page-contact__form-group {
  margin-bottom: 25px;
}

.page-contact__form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF; /* Text Main */
  font-size: 1rem;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #AFC4E8; /* Text Secondary */
  opacity: 0.7;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #4FA8FF; /* Glow */
  outline: none;
  box-shadow: 0 0 8px rgba(79, 168, 255, 0.5); /* Glow */
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__contact-form .page-contact__btn-primary {
  width: auto;
  padding: 15px 40px;
  font-size: 1.1rem;
  margin-top: 20px;
  cursor: pointer;
}

.page-contact__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-contact__faq-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F3F8FF; /* Text Main */
}

.page-contact__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: #1B3357; /* Divider - slightly darker for summary */
}

.page-contact__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-contact__faq-qtext {
  flex-grow: 1;
  color: #F3F8FF; /* Text Main */
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Gold */
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  padding: 20px 25px;
  border-top: 1px solid #244D84; /* Border */
  color: #AFC4E8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.7;
}

.page-contact__cta-faq {
  margin-top: 60px;
}

.page-contact__cta-text {
  font-size: 1.2rem;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 30px;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-contact__social-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #10233F; /* Card BG */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #244D84; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-contact__social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(79, 168, 255, 0.4); /* Glow */
  border-color: #4FA8FF; /* Glow */
}

.page-contact__social-icon img {
  
  
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__hero-content {
    padding: 60px 20px;
  }
  .page-contact__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-contact__section-title {
    font-size: 2rem;
  }
  .page-contact__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-contact__container {
    padding: 0 15px !important;
  }

  /* HERO 主图区域 */
  .page-contact__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 40px !important;
  }
  .page-contact__hero-content {
    padding: 40px 15px !important;
  }
  .page-contact__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
  }
  .page-contact__hero-description {
    font-size: 1rem !important;
  }
  .page-contact__hero-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
  }
  .page-contact__btn-primary,
  .page-contact__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 其他内容模块 */
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__social-section {
    padding: 50px 0 !important;
  }
  .page-contact__section-title {
    font-size: 1.8rem !important;
  }
  .page-contact__section-description {
    font-size: 0.95rem !important;
    margin-bottom: 40px !important;
  }

  /* 通用图片与容器 */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__method-icon {
    width: 80px !important;
    height: 80px !important;
  }
  .page-contact__social-icon img {
    
    
  }

  .page-contact__contact-methods {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-contact__method-card {
    min-height: auto !important;
    padding: 25px !important;
  }

  .page-contact__contact-form {
    padding: 30px 20px !important;
  }
  .page-contact__form-label {
    font-size: 0.95rem !important;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 12px !important;
    font-size: 0.95rem !important;
  }

  .page-contact__faq-item summary {
    padding: 18px 20px !important;
    font-size: 1rem !important;
  }
  .page-contact__faq-answer {
    padding: 18px 20px !important;
    font-size: 0.9rem !important;
  }
  .page-contact__cta-text {
    font-size: 1rem !important;
  }
  .page-contact__social-links {
    gap: 20px !important;
  }
  .page-contact__social-icon {
    width: 50px !important;
    height: 50px !important;
  }
}