/* style/contact.css */
/* body đã padding-top: var(--header-offset) từ shared.css, không lặp lại ở đây */

.page-contact {
  background-color: #08160F; /* Nền chính */
  color: #F2FFF6; /* Màu chữ chính */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-contact a {
  color: #57E38D; /* Màu Glow cho liên kết */
  text-decoration: none;
}

.page-contact a:hover {
  text-decoration: underline;
}

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

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Thỏa mãn "trên hình dưới chữ" */
  align-items: center;
  padding-top: 10px; /* Chỉ một khoảng cách nhỏ */
  color: #F2FFF6;
  text-align: center;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Giữ kích thước lớn cho hình ảnh */
  margin-bottom: 20px; /* Khoảng cách giữa hình và chữ */
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-contact__hero-content {
  max-width: 900px;
  padding: 0 20px 40px;
}

.page-contact__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* H1 font size with clamp */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E; /* Màu Gold cho tiêu đề chính */
}

.page-contact__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Màu Text Secondary */
}

/* General Sections */
.page-contact__introduction-section,
.page-contact__methods-section,
.page-contact__social-media-section,
.page-contact__guidelines-section,
.page-contact__faq-section,
.page-contact__commitment-section {
  padding: 60px 0;
}

.page-contact__dark-section {
  background-color: #0A4B2C; /* Màu Deep Green */
}

.page-contact__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Màu Gold cho tiêu đề phụ */
}

.page-contact__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #F2FFF6; /* Màu Text Main */
  text-align: justify;
}

.page-contact__text-link {
  color: #57E38D; /* Màu Glow cho liên kết trong văn bản */
  text-decoration: underline;
}

/* Card Styles */
.page-contact__card {
  background-color: #11271B; /* Màu Card BG */
  color: #F2FFF6; /* Màu Text Main */
  border: 1px solid #2E7A4E; /* Màu Border */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.page-contact__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: normal; /* Cho phép xuống dòng */
  word-wrap: break-word; /* Ngắt từ */
  box-sizing: border-box; /* Quan trọng cho responsive */
}

.page-contact__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Màu nút chính */
  color: #F2FFF6; /* Màu chữ nút chính */
  border: none;
}

.page-contact__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6); /* Hiệu ứng Glow */
}

.page-contact__cta-button--secondary {
  background-color: transparent;
  color: #57E38D; /* Màu Glow cho nút phụ */
  border: 2px solid #57E38D; /* Viền màu Glow */
}

.page-contact__cta-button--secondary:hover {
  background-color: #57E38D;
  color: #08160F; /* Màu chữ nền chính */
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-contact__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Contact Methods Section */
.page-contact__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__method-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-contact__method-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Màu Gold */
}

.page-contact__method-description {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1; /* Đẩy nút xuống dưới cùng */
}

.page-contact__contact-info {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 20px;
  color: #A7D9B8; /* Màu Text Secondary */
}

/* Social Media Section */
.page-contact__social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-contact__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background-color: #11271B; /* Màu Card BG */
  color: #F2FFF6;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-link:hover {
  background-color: #2E7A4E; /* Màu Border */
  transform: translateY(-3px);
  text-decoration: none;
}

.page-contact__social-icon {
  width: 48px; /* Kích thước icon, vẫn lớn hơn 200x200 tổng thể cho hình ảnh */
  height: 48px;
  object-fit: contain;
}

/* Guidelines Section */
.page-contact__guidelines-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}