.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 15px;
}

.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
  position: relative;
  z-index: 0;
}

.page-contact__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 90%;
  z-index: 1;
  color: #F2FFF6;
  padding: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4); /* Ensure text readability over image */
}

.page-contact__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.7);
}

.page-contact__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-contact__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-contact__cta-button--bottom {
  margin-top: 40px;
}

.page-contact__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold */
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.5);
}

.page-contact__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-contact__text-link {
  color: #2AD16F; /* Brighter green for links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-contact__text-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-contact__introduction-section, 
.page-contact__contact-methods-section, 
.page-contact__faq-section, 
.page-contact__feedback-form-section, 
.page-contact__why-choose-us-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-contact__introduction-section {
  background-color: #08160F; /* Background */
  padding-top: 40px;
}

.page-contact__contact-methods-section {
  background-color: #11271B; /* Card BG */
}

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

.page-contact__method-card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.page-contact__method-icon {
  width: 100%; /* Ensure image fills card width */
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-contact__method-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

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

.page-contact__cta-button--small {
  padding: 10px 20px;
  font-size: 0.95rem;
}

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

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

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

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

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

.page-contact__faq-item summary:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-contact__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6; /* Text Main */
}

.page-contact__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Brighter green */
}

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

.page-contact__faq-answer {
  padding: 15px 25px 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  border-top: 1px solid #2E7A4E; /* Border */
}

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

.page-contact__faq-link {
  display: inline-block;
  margin-top: 10px;
  color: #F2C14E; /* Gold */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-contact__faq-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-contact__feedback-form-section {
  background-color: #11271B; /* Card BG */
}

.page-contact__feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 40px auto 0;
  padding: 30px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  padding: 12px 15px;
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 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 */
  box-shadow: 0 0 8px rgba(87, 227, 141, 0.5);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__submit-button {
  align-self: flex-end;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-contact__why-choose-us-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-contact__feature-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-contact__feature-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-contact__hero-description {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  }
  .page-contact__section-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
  .page-contact__hero-content {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-content {
    padding: 15px;
  }
  .page-contact__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-contact__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-contact__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-contact__introduction-section,
  .page-contact__contact-methods-section,
  .page-contact__faq-section,
  .page-contact__feedback-form-section,
  .page-contact__why-choose-us-section {
    padding: 40px 0;
  }
  .page-contact__methods-grid,
  .page-contact__features-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__method-card,
  .page-contact__feature-card {
    padding: 25px;
  }
  .page-contact__feedback-form {
    padding: 20px;
  }
  .page-contact__form-label {
    font-size: 1rem;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  .page-contact__submit-button {
    padding: 10px 20px;
    font-size: 1rem;
    align-self: center;
  }
  .page-contact__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-contact__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }

  /* Mobile image responsiveness */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-contact__hero-section,
  .page-contact__container,
  .page-contact__methods-grid,
  .page-contact__method-card,
  .page-contact__feedback-form,
  .page-contact__features-grid,
  .page-contact__feature-card,
  .page-contact__faq-list,
  .page-contact__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-contact__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Mobile button responsiveness */
  .page-contact__cta-button,
  .page-contact__submit-button {
    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-button--small {
    padding: 10px 15px !important;
  }
  .page-contact__methods-grid a.page-contact__cta-button--small {
    width: auto !important; /* Allow small buttons to size to content on mobile */
    max-width: none !important;
  }
  .page-contact__cta-button--bottom {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-content {
    transform: translate(-50%, -60%); /* Adjust for smaller screens */
  }
  .page-contact__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .page-contact__hero-description {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }
  .page-contact__section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
}