:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-site: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-contact {
  background-color: var(--background-site);
  color: var(--text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  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 */
  background-color: var(--background-site);
  overflow: hidden;
}

.page-contact__hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-contact__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  filter: none; /* Absolutely no filter */
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-contact__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-contact__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-contact__section-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Contact Info Section */
.page-contact__contact-info-section {
  background-color: var(--card-bg);
  padding: 60px 0;
}

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

.page-contact__info-card {
  background: var(--deep-green);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.page-contact__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-contact__info-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* Absolutely no filter */
}

.page-contact__card-title {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__card-text {
  color: var(--text-secondary);
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-contact__card-link {
  display: inline-block;
  color: var(--glow-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 2px solid var(--glow-color);
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__card-link:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Contact Form Section */
.page-contact__form-section {
  padding: 60px 0;
  background-color: var(--background-site);
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

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

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: 600;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: var(--deep-green);
  color: var(--text-main);
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: var(--glow-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(87, 227, 141, 0.3);
}

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

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

/* FAQ Section */
.page-contact__faq-section {
  padding: 60px 0;
  background-color: var(--background-site);
}

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

details.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-contact__faq-item summary.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.1em;
}

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

details.page-contact__faq-item summary.page-contact__faq-question:hover {
  background: var(--deep-green);
}

.page-contact__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
}

.page-contact__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-contact__faq-item[open] .page-contact__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
  color: var(--glow-color);
}

details.page-contact__faq-item .page-contact__faq-answer {
  padding: 0 25px 25px;
  background: var(--deep-green);
  border-radius: 0 0 10px 10px;
  color: var(--text-secondary);
  font-size: 1em;
  line-height: 1.7;
}

.page-contact__faq-answer p {
  margin: 0;
  padding: 0;
}

.page-contact__faq-button {
  display: inline-block;
  padding: 8px 15px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__faq-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Social Section */
.page-contact__social-section {
  padding: 60px 0;
  background-color: var(--background-site);
}

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

.page-contact__social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-main);
  font-size: 1.1em;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
  flex-basis: 150px; /* Adjust basis for better layout */
  max-width: 150px; /* Max width for each social link item */
  text-align: center;
}

.page-contact__social-link img {
  width: 200px; /* Source image size, will be scaled by CSS */
  height: 200px; /* Source image size, will be scaled by CSS */
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  filter: none; /* Absolutely no filter */
}

.page-contact__social-link:hover {
  color: var(--gold-color);
  transform: translateY(-5px);
}

.page-contact__social-link:hover img {
  border-color: var(--glow-color);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-section,
  .page-contact__contact-info-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__social-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-contact__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 15px; /* Slightly smaller base font size for mobile */
  }
  .page-contact__hero-section {
    padding-top: 10px !important; /* Fixed top padding for mobile */
    padding-bottom: 40px;
  }
  
  .page-contact__hero-image img,
  .page-contact__info-card img,
  .page-contact__social-link img,
  .page-contact img { /* Global image responsiveness */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px; /* Slightly smaller radius for mobile */
  }

  .page-contact__hero-image {
    margin-bottom: 20px;
  }

  .page-contact__cta-button,
  .page-contact__submit-button,
  .page-contact__faq-button,
  .page-contact a[class*="button"],
  .page-contact a[class*="btn"] { /* Global button responsiveness */
    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;
    font-size: 16px;
  }

  .page-contact__info-grid {
    grid-template-columns: 1fr; /* Stack cards on mobile */
  }

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

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

  details.page-contact__faq-item summary.page-contact__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-contact__faq-toggle {
    font-size: 20px;
    width: 24px;
  }

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

  .page-contact__social-links {
    gap: 20px;
  }
  
  .page-contact__social-link {
    flex-basis: 100px; /* Further adjust for smaller screens */
    max-width: 100px;
  }

  .page-contact__social-link img {
     /* Display size, source is 200x200 */
    
    border-
  }

  .page-contact__container,
  .page-contact__hero-container,
  .page-contact__contact-form,
  .page-contact__faq-list {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 1em;
  }
}