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

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

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green */
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

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

.page-contact__hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.page-contact__hero-content h1 {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__hero-content p {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-contact__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Section styling */
.page-contact__section {
  padding: 60px 20px;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-contact__section:last-of-type {
  border-bottom: none;
}

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

.page-contact__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

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

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

.page-contact__form-group input[type="text"],
.page-contact__form-group input[type="email"],
.page-contact__form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-size: 1em;
  box-sizing: border-box;
}

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

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

/* Direct Contact Info */
.page-contact__contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__contact-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-contact__contact-item:hover {
  transform: translateY(-5px);
}

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

.page-contact__contact-item p,
.page-contact__contact-item a {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.page-contact__contact-item a:hover {
  color: #57E38D; /* Glow */
}

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

.page-contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-link:hover {
  background-color: #22C768; /* Auxiliary */
  transform: translateY(-3px);
}

.page-contact__social-link img {
  
  
  filter: none; /* Ensure no filter is applied */
  min-width: 200px; /* Enforce minimum size for image rule */
  min-height: 200px; /* Enforce minimum size for image rule */
  width: 100%; /* Make icons responsive within their container */
  height: 100%;
  object-fit: contain;
}

/* Content Sections (Why Choose Us) */
.page-contact__content-area h2 {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-contact__content-area h3 {
  font-size: 1.8em;
  color: #57E38D; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__content-area p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-contact__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-contact__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

.page-contact__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  list-style: none; /* Hide default marker for details */
}

.page-contact__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for details in webkit */
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__container,
  .page-contact__section,
  .page-contact__form-container,
  .page-contact__contact-info-grid,
  .page-contact__faq-list,
  .page-contact__hero-image-wrapper,
  .page-contact__social-links {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

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

  .page-contact__hero-content h1 {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-contact__hero-content p {
    font-size: 1em;
  }

  .page-contact__section-title,
  .page-contact__content-area h2 {
    font-size: 2em;
  }

  .page-contact__content-area h3 {
    font-size: 1.5em;
  }

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

  .page-contact__social-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Ensure all images are responsive */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all buttons are responsive */
  .page-contact__btn {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
  }
  
  .page-contact__form-container {
    padding: 25px;
  }

  .page-contact__social-link {
    width: 40px;
    height: 40px;
  }

  .page-contact__social-link img {
    
    
    min-width: 200px; /* Still enforce minimum size for image rule, but scale down */
    min-height: 200px;
  }
}