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

.page-contact {
  font-family: Arial, sans-serif;
  color: var(--color-text-main); /* Default text color for dark body background */
  background-color: var(--color-background-main); /* Ensures consistency */
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  display: flex; /* Ensure image and content are siblings and can be stacked */
  flex-direction: column; /* Stack image above content */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px; /* Space below content */
  padding-top: 10px; /* Small top padding, assuming body handles main offset */
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height of hero image */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability, not changing color */
}

.page-contact__hero-content {
  position: relative; /* Ensure content is above other elements in its flow */
  z-index: 1; /* Ensure text is above image if any overlap happens due to other CSS */
  padding: 0 15px;
  max-width: 800px;
}

.page-contact__main-title {
  font-size: 2.8em;
  font-weight: 700;
  color: var(--color-gold); /* Use gold for main title for prominence */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-contact__description {
  font-size: 1.1em;
  color: var(--color-text-main);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--color-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  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 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-contact__intro-section {
  padding: 60px 0;
  background-color: var(--color-card-bg); /* Darker background for contrast */
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
}

.page-contact__intro-text {
  font-size: 1.05em;
  line-height: 1.7;
  max-width: 900px;
  margin: 20px auto 0;
  color: var(--color-text-secondary);
}

/* General Section Styling */
.page-contact__section-title {
  font-size: 2.2em;
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

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

/* Channels Section */
.page-contact__channels-section {
  padding: 60px 0;
  background-color: var(--color-background-main);
}

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

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

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

.page-contact__channel-icon {
  width: 100%; /* Ensure image fills card width */
  max-height: 200px; /* Limit height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-contact__channel-title {
  font-size: 1.6em;
  color: var(--color-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-contact__email-address,
.page-contact__phone-number {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.page-contact__channel-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--color-text-main);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__channel-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Form Section */
.page-contact__form-section {
  padding: 60px 0;
  background-color: var(--color-card-bg);
  border-top: 1px solid var(--color-divider);
}

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid var(--color-border);
  background-color: #1a362a; /* Slightly lighter dark green */
  color: var(--color-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(--color-text-secondary);
  opacity: 0.7;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(34, 199, 104, 0.3);
  outline: none;
}

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

.page-contact__submit-button {
  display: block;
  width: 100%;
  background: var(--button-gradient);
  color: var(--color-text-main);
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 60px 0;
  background-color: var(--color-background-main);
  border-top: 1px solid var(--color-divider);
}

details.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
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(--color-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: #1a362a; /* Slightly lighter card background on hover */
}
.page-contact__faq-qtext {
  flex: 1;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--color-text-main);
}
.page-contact__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-gold); /* Use gold for the toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-contact__faq-item .page-contact__faq-answer {
  padding: 0 25px 20px;
  background: #0a1f16; /* Slightly different dark background for answer */
  border-radius: 0 0 10px 10px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95em;
}
.page-contact__faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
}
.page-contact__faq-answer a {
  color: var(--color-secondary);
  text-decoration: underline;
}
.page-contact__faq-answer a:hover {
  color: var(--color-glow);
}


/* Location Section */
.page-contact__location-section {
  padding: 60px 0;
  background-color: var(--color-card-bg);
  border-top: 1px solid var(--color-divider);
}

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

.page-contact__detail-item {
  background-color: var(--color-background-main);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__detail-title {
  font-size: 1.5em;
  color: var(--color-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-contact__detail-subtext {
  font-size: 0.9em;
  color: var(--color-text-secondary);
  opacity: 0.8;
  line-height: 1.5;
}

.page-contact__location-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}