/* style/contact.css */

/* Định nghĩa biến màu dựa trên phong cách thiết kế */
:root {
  --primary-color: #FFD700; /* Vàng */
  --primary-color-dark: #E0B500; /* Vàng đậm hơn cho hover */
  --secondary-color-dark: #000080; /* Xanh đậm */
  --secondary-color-light: #0000B0; /* Xanh nhạt hơn cho hover */
  --text-light: #f8f9fa;
  --text-dark: #333333;
  --background-light: #ffffff;
  --background-grey: #f1f3f5;
  --dark-bg-1: #0d0d0d; /* Giả định từ shared.css */
  --dark-bg-2: #1a1a1a; /* Hơi khác để tạo chiều sâu */
}

/* --- Base Styles for Contact Page --- */
.page-contact {
  background-color: var(--dark-bg-1); /* Kế thừa từ shared.css, giả định đây là nền tối */
  color: var(--text-light); /* Chữ sáng cho nền tối */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Đảm bảo khoảng trống phía trên footer */
}

/* Căn chỉnh khoảng cách cho thanh điều hướng cố định */
.page-contact__hero-contact-section {
  padding-top: 180px; /* Desktop: Điều chỉnh cho header cố định */
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color-dark)); /* Sử dụng màu thương hiệu */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-contact__hero-contact-section {
    padding-top: 140px; /* Mobile: Điều chỉnh cho header cố định */
    padding-bottom: 60px;
  }
}

.page-contact__hero-contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact__hero-contact-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-contact__hero-contact-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

/* --- Nút CTA (Tái sử dụng từ hướng dẫn chung, điều chỉnh theo BEM) --- */
.page-contact__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
}

.page-contact__cta-button--primary {
  background: var(--primary-color); /* Vàng */
  color: var(--text-dark); /* Chữ tối cho nền vàng */
}

.page-contact__cta-button--primary:hover {
  background: var(--primary-color-dark); /* Vàng đậm hơn */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.page-contact__cta-button--secondary {
  background: #ffffff;
  color: var(--primary-color); /* Chữ vàng trên nền trắng */
  border: 2px solid var(--primary-color);
}

.page-contact__cta-button--secondary:hover {
  background: var(--primary-color); /* Vàng */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* --- Định kiểu Section --- */
.page-contact__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color); /* Màu vàng cho tiêu đề section */
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__section-description {
  font-size: 18px;
  color: var(--text-light); /* Chữ sáng trên nền tối */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* --- Section Phương Thức Liên Hệ --- */
.page-contact__contact-methods-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-2); /* Nền tối hơi khác */
}

.page-contact__contact-methods-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-contact__method-card {
  background-color: var(--background-light); /* Nền thẻ màu trắng */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark); /* Chữ tối trên nền trắng */
}

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

.page-contact__method-icon {
  width: 120px; /* Kích thước hiển thị, đảm bảo file ảnh gốc >= 200x200px */
  height: auto;
  margin-bottom: 20px;
  max-width: 100%;
  border-radius: 8px; /* Thêm bo góc cho icon */
}

.page-contact__method-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color-dark); /* Xanh đậm cho tiêu đề */
}

.page-contact__method-text {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.page-contact__method-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--secondary-color-dark); /* Nút màu xanh đậm */
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__method-button:hover {
  background-color: var(--secondary-color-light); /* Xanh nhạt hơn khi hover */
  transform: translateY(-2px);
}

/* --- Section Biểu Mẫu Liên Hệ --- */
.page-contact__contact-form-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
}

.page-contact__contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background-light); /* Nền trắng cho container form */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  padding: 40px;
  color: var(--text-dark); /* Chữ tối trên nền trắng */
}

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

.page-contact__form-label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px); /* Điều chỉnh cho padding */
  padding: 12px 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--background-grey); /* Nền xám nhạt cho input */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__form-submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color); /* Nút vàng */
  color: var(--text-dark); /* Chữ tối cho nền vàng */
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.page-contact__form-submit-button:hover {
  background-color: var(--primary-color-dark); /* Vàng đậm hơn */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* --- Section Câu Hỏi Thường Gặp (FAQ) --- */
.page-contact__faq-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-2);
}

.page-contact__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--background-light); /* Nền trắng cho item FAQ */
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: var(--text-dark); /* Chữ tối cho câu trả lời */
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 2000px !important; /* Đảm bảo mở rộng hoàn toàn */
  padding: 20px 15px !important; /* Đảm bảo padding được áp dụng */
  opacity: 1;
  background: var(--background-grey);
  border-radius: 0 0 5px 5px;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--background-light);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-dark); /* Chữ tối cho câu hỏi */
}

.page-contact__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-contact__faq-question:active {
  background: #eeeeee;
}

.page-contact__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-dark); /* Chữ tối cho tiêu đề câu hỏi */
}

.page-contact__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  color: var(--primary-color); /* Màu vàng cho toggle hoạt động */
  transform: rotate(45deg); /* Thay đổi + thành X */
}

.page-contact__faq-answer p a {
  color: var(--secondary-color-dark); /* Màu link trong câu trả lời FAQ */
  text-decoration: underline;
}

.page-contact__faq-answer p a:hover {
  color: var(--primary-color);
}

/* --- Section Chơi Game Có Trách Nhiệm --- */
.page-contact__responsible-gaming-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
  text-align: center;
}

.page-contact__responsible-gaming-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  padding: 40px;
  color: var(--text-dark);
}

.page-contact__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
  text-align: left;
}

.page-contact__responsible-gaming-list li {
  margin-bottom: 10px;
  font-size: 17px;
  position: relative;
  padding-left: 25px;
}

.page-contact__responsible-gaming-list li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-contact__responsible-gaming-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-contact__hero-contact-title {
    font-size: 38px;
  }
  .page-contact__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-contact-title {
    font-size: 32px;
  }
  .page-contact__hero-contact-description {
    font-size: 16px;
  }
  .page-contact__hero-contact-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-contact__section-title {
    font-size: 28px;
  }
  .page-contact__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-contact__method-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__method-icon {
    width: 100px;
  }
  .page-contact__method-title {
    font-size: 22px;
  }
  .page-contact__method-text {
    font-size: 15px;
  }
  .page-contact__contact-form-container {
    padding: 30px;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    font-size: 15px;
    width: calc(100% - 20px); /* Điều chỉnh cho padding */
  }
  .page-contact__form-submit-button {
    font-size: 16px;
    padding: 12px;
  }
  
  /* FAQ Responsive */
  .page-contact__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-contact__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-contact__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-contact__faq-answer {
    padding: 0 15px;
  }
  
  .page-contact__faq-item.active .page-contact__faq-answer {
    padding: 15px !important;
  }

  .page-contact__responsible-gaming-container {
    padding: 30px;
  }
  .page-contact__responsible-gaming-list li {
    font-size: 15px;
  }
  .page-contact__responsible-gaming-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-contact-title {
    font-size: 28px;
  }
  .page-contact__section-title {
    font-size: 24px;
  }
  .page-contact__method-card {
    padding: 20px;
  }
  .page-contact__contact-form-container {
    padding: 25px;
  }
}