/* style/contact.css */
/* Body padding-top handled by shared.css var(--header-offset) */

.page-contact {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-contact__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-contact__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-contact__section-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-contact__text-block {
  color: #F2FFF6; /* Text Main */
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

.page-contact__info-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-contact__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
}

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

.page-contact__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
}

.page-contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact__list-item {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

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

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

.page-contact__hotline-number {
  color: #F2FFF6; /* Text Main */
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-contact__form-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.page-contact__form-image {
  width: 50%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__form {
  flex: 1;
  max-width: 600px;
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
  display: block;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 8px;
  font-weight: 600;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-size: 1rem;
  box-sizing: border-box;
}

.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 {
  outline: none;
  border-color: #57E38D; /* Glow */
  box-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-contact__btn-primary {
  display: inline-block;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 0 12px #57E38D; /* Glow */
}

.page-contact__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #2AD16F; /* Button color */
  border-radius: 8px;
  background-color: transparent;
  color: #2AD16F; /* Button color */
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 0 10px rgba(42, 209, 111, 0.5);
}

.page-contact__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-contact__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-contact__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

.page-contact__faq-item summary:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-contact__faq-qtext {
  flex-grow: 1;
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  content: '−';
}

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

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

.page-contact__social-media-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-contact__social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #F2FFF6; /* Text Main */
  font-size: 1rem;
  font-weight: 600;
  padding: 20px;
  border-radius: 12px;
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  min-width: 120px;
  box-sizing: border-box;
}

.page-contact__social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
  color: #F2C14E; /* Gold */
}

.page-contact__social-link img {
  
  
  margin-bottom: 10px;
  border-radius: 50%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.page-contact__social-link:hover img {
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__hero-section {
    padding: 10px 15px 50px;
  }

  .page-contact__hero-content {
    max-width: 700px;
  }

  .page-contact__form-wrapper {
    flex-direction: column;
  }

  .page-contact__form-image {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
  }

  .page-contact__form {
    width: 100%;
    max-width: 600px;
    padding: 30px;
  }

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

@media (max-width: 768px) {
  .page-contact__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-contact__description {
    font-size: 1rem;
  }

  .page-contact__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-contact__hero-section,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__social-media-section {
    padding: 40px 0;
  }

  .page-contact__container {
    padding: 0 15px;
  }

  .page-contact__card {
    padding: 25px;
  }

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

  .page-contact__hotline-number {
    font-size: 1.5rem;
  }

  .page-contact__form {
    padding: 25px;
  }

  .page-contact__faq-item summary {
    font-size: 1rem;
    padding: 18px 20px;
  }

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

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

  /* Mobile video responsiveness (if any) */
  .page-contact video,
  .page-contact__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__video-section,
  .page-contact__video-container,
  .page-contact__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-contact__video-section {
    padding-top: 10px !important; /* Small top padding */
  }
  .page-contact__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile button responsiveness */
  .page-contact__cta-button,
  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact a[class*="button"],
  .page-contact a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__cta-buttons,
  .page-contact__button-group,
  .page-contact__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-contact__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-contact__social-link {
    min-width: unset;
    width: calc(50% - 15px);
  }
}

@media (max-width: 480px) {
  .page-contact__main-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .page-contact__section-title {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }

  .page-contact__social-link {
    width: 100%;
  }
}

/* Color Contrast Specifics */
.page-contact__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-contact__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-contact p,
.page-contact li {
  color: #A7D9B8; /* Text Secondary for general paragraphs */
}

.page-contact__card p {
    color: #A7D9B8; /* Text Secondary */
}

.page-contact__faq-answer p {
    color: #A7D9B8; /* Text Secondary */
}

.page-contact__btn-primary {
  color: #F2FFF6; /* Text Main for primary button */
}

.page-contact__btn-secondary {
  color: #2AD16F; /* Button color for secondary button */
}

.page-contact__btn-secondary:hover {
  color: #F2FFF6; /* Text Main on hover */
}