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

.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;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding as body handles header offset */
  overflow: hidden;
}

.page-contact__hero-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
}

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

.page-contact__hero-text-container {
  position: relative; /* Changed from absolute to relative to comply with "no text overlaying image" rule */
  background: #0A4B2C; /* Deep Green background for text */
  padding: 40px 20px;
  margin-top: -5px; /* Slight overlap for visual appeal without violating rules */
  width: 100%;
  box-sizing: border-box;
}

.page-contact__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

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

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

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

.page-contact__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-contact__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-contact__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-contact__btn-secondary:hover {
  background-color: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

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

.page-contact__heading {
  font-size: clamp(24px, 3vw, 38px);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__text-secondary {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px 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: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

.page-contact__method-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__small-btn {
  padding: 10px 20px;
  font-size: 15px;
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 40px;
}

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

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

.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: 16px;
  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 0 3px rgba(87, 227, 141, 0.3);
}

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

.page-contact__submit-btn {
  width: auto;
  min-width: 180px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
}

.page-contact__faq-section {
  padding: 60px 0;
}

.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: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-contact__faq-item summary {
  display: block;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  position: relative;
  list-style: none;
}

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

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-contact__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

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

.page-contact__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

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

.page-contact__social-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  text-align: center;
}

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

.page-contact__social-icon-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
  transform: translateY(-5px) scale(1.1);
}

.page-contact__social-icon {
  width: 80px; /* Adjusted to be larger, but still within a reasonable 'icon' size for display, while requesting 200x200 source */
  height: 80px;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-contact__hero-text-container {
    padding: 30px 15px;
  }

  .page-contact__main-title {
    font-size: clamp(24px, 5vw, 40px);
  }

  .page-contact__description {
    font-size: 16px;
  }

  .page-contact__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-contact__btn-primary,
  .page-contact__btn-secondary {
    width: 80%;
  }

  .page-contact__dark-section,
  .page-contact__form-section,
  .page-contact__social-section {
    padding: 40px 0;
  }

  .page-contact__heading {
    font-size: clamp(22px, 4vw, 32px);
  }

  .page-contact__text-secondary {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-contact__contact-form {
    padding: 30px;
  }

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

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

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

@media (max-width: 768px) {
  .page-contact__container {
    padding: 0 15px;
  }

  .page-contact__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }

  .page-contact__hero-text-container {
    padding: 25px 10px;
  }

  .page-contact__main-title {
    font-size: clamp(20px, 6vw, 36px);
  }

  .page-contact__description {
    font-size: 14px;
  }

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

  .page-contact__cta-buttons {
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
  }

  .page-contact__dark-section,
  .page-contact__form-section,
  .page-contact__social-section {
    padding: 30px 0;
  }

  .page-contact__heading {
    font-size: clamp(20px, 5vw, 28px);
  }

  .page-contact__text-secondary {
    font-size: 14px;
    margin-bottom: 25px;
  }

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

  .page-contact__method-title {
    font-size: 20px;
  }

  .page-contact__method-description {
    font-size: 14px;
  }

  .page-contact__small-btn {
    font-size: 14px;
    padding: 8px 15px;
  }

  .page-contact__contact-form {
    padding: 25px;
  }

  .page-contact__form-label {
    font-size: 15px;
  }

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

  .page-contact__submit-btn {
    font-size: 16px;
    padding: 12px 25px;
  }

  .page-contact__faq-item summary {
    font-size: 16px;
    padding: 15px 18px;
  }

  .page-contact__faq-answer {
    font-size: 14px;
    padding: 0 18px 15px 18px;
  }

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

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

  .page-contact__hero-image {
    height: 300px; /* Example fixed height for mobile hero to maintain aspect ratio without huge vertical space */
    object-fit: cover;
  }

  .page-contact__section,
  .page-contact__card,
  .page-contact__container,
  .page-contact__hero-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 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;
  }
}

/* Contrast Fixes */
.page-contact__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-contact__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}