.page-contact {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color for dark background */
  font-family: Arial, sans-serif;
  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; /* Image above text */
  align-items: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden; /* Ensure no overflow from image */
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

.page-contact__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 40px; /* Space between image and text */
}

.page-contact__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1; /* Ensure text is above any potential background elements */
}

.page-contact__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-contact__description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

.page-contact__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-contact__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-contact__info-section,
.page-contact__form-section,
.page-contact__faq-section,
.page-contact__social-section {
  padding: 80px 0;
  background-color: #08160F; /* Consistent background */
}

.page-contact__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: #A7D9B8; /* Secondary text color */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Contact Methods */
.page-contact__contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

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

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

.page-contact__method-icon {
  width: 100px; /* Larger icons as per requirement */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #57E38D); /* Glow effect */
}

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

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

.page-contact__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #F2C14E; /* Gold color */
  border: 2px solid #F2C14E; /* Gold border */
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-contact__btn-secondary:hover {
  background: #F2C14E; /* Gold background on hover */
  color: #11271B; /* Dark text on hover */
  transform: translateY(-1px);
}

/* Working Hours */
.page-contact__working-hours {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__sub-title {
    font-size: 1.8rem;
    color: #F2FFF6; /* Text Main color */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__text-secondary {
    font-size: 1.1rem;
    color: #A7D9B8; /* Secondary text color */
    margin-bottom: 30px;
}

.page-contact__hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-contact__hours-list li {
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main color */
    margin-bottom: 10px;
}

.page-contact__list-item-strong {
    color: #F2C14E; /* Gold color */
    font-weight: bold;
}


/* Contact Form */
.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  background-color: #0A4B2C; /* Deep Green for input background */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  color: #F2FFF6; /* Text Main color */
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #F2C14E; /* Gold on focus */
  outline: none;
}

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

.page-contact__btn-primary {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main color */
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-contact__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__faq-item {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-item summary {
  list-style: none; /* Hide default marker */
}

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

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main color */
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E; /* Divider */
}

.page-contact__faq-question:hover {
  background-color: #13994A; /* Slightly lighter green on hover */
}

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

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold color */
}

.page-contact__faq-item[open] .page-contact__faq-question {
  background-color: #13994A; /* Active state background */
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  color: #F2C14E; /* Gold color */
}

.page-contact__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Secondary text color */
  background-color: #11271B; /* Card BG color */
}

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

.page-contact__inline-link {
  color: #F2C14E; /* Gold color for inline links */
  text-decoration: underline;
}

.page-contact__inline-link:hover {
  color: #57E38D; /* Glow color on hover */
}


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

.page-contact__social-icon-link {
  display: block;
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease;
}

.page-contact__social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.3)); /* subtle shadow */
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-section {
    padding-bottom: 40px;
  }
  .page-contact__hero-content {
    padding: 0 15px;
  }
  .page-contact__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-contact__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  }
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__social-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-contact__container {
    padding: 0 15px !important; /* Ensure padding for mobile */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-contact__hero-section {
    padding-bottom: 30px;
    padding-top: 10px !important; /* body handles header offset */
  }

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

  .page-contact__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-contact__description {
    font-size: 1rem;
  }

  .page-contact__cta-button,
  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact a[class*="button"],
  .page-contact a[class*="btn"] {
    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;
    margin-bottom: 15px; /* Add spacing between stacked buttons */
  }
  
  .page-contact__cta-button:last-child,
  .page-contact__btn-primary:last-child,
  .page-contact__btn-secondary:last-child {
    margin-bottom: 0;
  }

  .page-contact__contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .page-contact__method-card {
    width: 100%;
    max-width: 400px; /* Limit card width on small screens for better readability */
    margin-bottom: 20px;
  }

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

  .page-contact__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 15px;
  }

  .page-contact__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 12px;
  }

  .page-contact__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-contact__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-contact__social-links {
    gap: 15px;
  }

  .page-contact__social-icon-link {
    width: 50px;
    height: 50px;
  }
  
  /* Mobile image responsiveness */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-contact__hero-image {
    width: 100% !important;
    height: auto !important;
  }
  
  /* Mobile video responsiveness (if any, though none explicitly here) */
  .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;
  }
  
  .page-contact__video-section {
    padding-top: 10px !important;
  }
}

/* Ensure desktop video container has width: 100% */
.page-contact__video-container {
  width: 100%; /* Important for desktop flex alignment */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Color Contrast Fixes (as per requirements) */
.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;
}

/* Ensure no filter is used on images */
.page-contact img {
  filter: none;
}