.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  overflow: hidden;
}

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

.page-contact__hero-content {
  text-align: center;
  padding: 40px 20px;
  background-color: #11271B; /* Card BG */
  width: 100%;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
  box-sizing: border-box;
}

.page-contact__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-contact__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  cursor: pointer;
  font-size: 0.95em;
}

.page-contact__btn-secondary:hover {
  background: #11A84E; /* Main color */
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-contact__section-description {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__info-section,
.page-contact__form-section,
.page-contact__social-section,
.page-contact__faq-section,
.page-contact__cta-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-contact__info-section .page-contact__container,
.page-contact__form-section .page-contact__container,
.page-contact__social-section .page-contact__container,
.page-contact__faq-section .page-contact__container,
.page-contact__cta-section .page-contact__container {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-contact__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-contact__info-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-contact__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-contact__info-card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-contact__info-card p strong {
  color: #F2FFF6; /* Text Main */
}

.page-contact__info-card a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__info-card a:hover {
  color: #F2C14E; /* Gold */
}

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.page-contact__form-group {
  display: flex;
  flex-direction: column;
}

.page-contact__form-label {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 8px;
}

.page-contact__form-input,
.page-contact__form-textarea {
  padding: 12px 15px;
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 6px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-size: 1em;
  transition: border-color 0.3s ease;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #57E38D; /* Glow */
  outline: none;
  box-shadow: 0 0 0 3px rgba(87, 227, 141, 0.3);
}

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

.page-contact__social-icon {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.page-contact__social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.page-contact__social-icon--facebook::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.505 1.492-3.89 3.776-3.89 1.094 0 2.24.195 2.24.195v2.455H15.83c-1.222 0-1.604.755-1.604 1.543V12h2.77l-.443 2.89h-2.327v6.987C18.343 21.128 22 16.991 22 12z"/></svg>');
}
.page-contact__social-icon--telegram::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.72 7.07l-3.28 2.01-1.35 4.38c-.14.47-.56.62-1.01.37l-1.9-.91-1.22 1.18c-.28.28-.5.22-.68-.13l-1.8-5.59c-.27-.8.2-1.14.85-.89l7.74 3.03c.7.27.97.08.77-.47L17.2 9.4c.2-.55-.07-.75-.6-.5z"/></svg>');
}
.page-contact__social-icon--zalo::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-.006 14.821c-3.15 0-5.717-2.585-5.717-5.766 0-3.181 2.567-5.766 5.717-5.766 3.151 0 5.717 2.585 5.717 5.766 0 3.181-2.566 5.766-5.717 5.766zm-1.025-8.52h-.99c-.22 0-.399-.179-.399-.399s.179-.399.399-.399h.99c.22 0 .399.179.399.399s-.179.399-.399.399zm2.05 0h-.99c-.22 0-.399-.179-.399-.399s.179-.399.399-.399h.99c.22 0 .399.179.399.399s-.179.399-.399.399zm-1.025 2.05h-.99c-.22 0-.399-.179-.399-.399s.179-.399.399-.399h.99c.22 0 .399.179.399.399s-.179.399-.399.399zm2.05 0h-.99c-.22 0-.399-.179-.399-.399s.179-.399.399-.399h.99c.22 0 .399.179.399.399s-.179.399-.399.399z"/></svg>');
}
.page-contact__social-icon--youtube::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 12.5c0 .28-.22.5-.5.5h-9c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h9c.28 0 .5.22.5.5v5zm-2-3l-3.5 2.5v-5l3.5 2.5z"/></svg>');
}

.page-contact__social-icon:hover {
  background-color: #11A84E; /* Main color */
  transform: translateY(-5px);
}

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

.page-contact__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-contact__faq-item details > summary {
  list-style: none;
}

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

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background-color: #11A84E; /* Main color */
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-contact__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-contact__faq-answer p {
  margin-bottom: 10px;
}

.page-contact__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__hero-content {
    margin-top: -60px;
    padding: 30px;
  }

  .page-contact__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }

  .page-contact__section-title {
    font-size: 2em;
  }

  .page-contact__info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-contact__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-contact__hero-image {
    max-height: 300px;
  }

  .page-contact__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-contact__main-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
  }

  .page-contact__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-contact__btn-primary,
  .page-contact__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-contact__info-section .page-contact__container,
  .page-contact__form-section .page-contact__container,
  .page-contact__social-section .page-contact__container,
  .page-contact__faq-section .page-contact__container,
  .page-contact__cta-section .page-contact__container {
    padding: 30px 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-contact__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-contact__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-contact__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-contact__info-card {
    padding: 25px;
  }

  .page-contact__card-title {
    font-size: 1.3em;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px 12px;
  }

  .page-contact__social-links {
    gap: 15px;
    flex-wrap: wrap;
  }

  .page-contact__social-icon {
    width: 45px;
    height: 45px;
  }

  .page-contact__social-icon::before {
    width: 24px;
    height: 24px;
  }

  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-contact__faq-answer {
    padding: 0 20px 15px;
  }

  /* Mobile image specific styles */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all containers with images also adapt */
  .page-contact__hero-section,
  .page-contact__info-section,
  .page-contact__social-section,
  .page-contact__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-content {
    margin-top: -30px;
    padding: 20px 10px;
  }

  .page-contact__main-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }

  .page-contact__hero-description {
    font-size: 0.9em;
  }

  .page-contact__section-title {
    font-size: 1.6em;
  }

  .page-contact__section-description {
    font-size: 0.85em;
  }

  .page-contact__info-card {
    padding: 20px;
  }

  .page-contact__faq-question {
    font-size: 1em;
  }
}