.page-contact {
  color: #FFF6D6; /* Main text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A; /* Ensure consistency with body background */
}

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

.page-contact__section-title {
  font-size: clamp(2em, 5vw, 2.8em);
  color: #F2C14E; /* Brand primary color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-contact__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%); /* Dark background for hero */
}

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

.page-contact__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-contact__hero-text-content {
  text-align: center;
  padding: 0 20px;
}

.page-contact__hero-title {
  font-size: clamp(2.5em, 6vw, 3.5em);
  color: #FFD36B; /* Auxiliary brand color for emphasis */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Method Cards Section */
.page-contact__methods-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG color */
}

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

.page-contact__method-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-contact__method-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Contact Form Section */
.page-contact__form-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: #111111;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #F2C14E;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 5px;
  font-size: 1em;
  color: #FFF6D6;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: rgba(255, 246, 214, 0.7);
}

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

.page-contact__form-submit-btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG color */
}

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

.page-contact__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E;
  cursor: pointer;
  background-color: #0A0A0A;
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 1em;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

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

.page-contact__faq-answer a {
  color: #FFD36B;
  text-decoration: underline;
}

/* CTA Section */
.page-contact__cta-section {
  padding: 60px 0;
  background-color: #0A0A0A;
  text-align: center;
}

.page-contact__cta-subtitle {
  font-size: 2em;
  color: #F2C14E;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-contact__cta-text {
  font-size: 1.1em;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Social Section */
.page-contact__social-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG color */
  text-align: center;
}

.page-contact__social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.page-contact__social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.page-contact__social-link img {
  
  
  border-radius: 50%;
  object-fit: contain;
  background-color: #F2C14E;
  padding: 5px;
}

/* Operational Details Section */
.page-contact__location-section {
  padding: 60px 0;
  background-color: #0A0A0A;
  text-align: center;
}

.page-contact__detail-text {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 10px;
}

/* Buttons */
.page-contact__btn-primary,
.page-contact__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text for light button background */
  border: 2px solid transparent;
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 0 15px #FFD36B;
}

.page-contact__btn-secondary {
  background-color: transparent;
  color: #FFD36B; /* Auxiliary color for text */
  border: 2px solid #FFD36B;
}

.page-contact__btn-secondary:hover {
  background-color: #FFD36B;
  color: #0A0A0A; /* Dark text on hover */
  box-shadow: 0 0 15px #FFD36B;
}

.page-contact__email-link, .page-contact__phone-link {
  color: #FFD36B;
  text-decoration: underline;
  font-weight: bold;
}

.page-contact__email-link:hover, .page-contact__phone-link:hover {
  color: #F2C14E;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__hero-image {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-contact__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media */
    padding-bottom: 40px;
  }

  .page-contact__hero-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }

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

  .page-contact__section-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
  }

  .page-contact__method-cards {
    grid-template-columns: 1fr;
  }

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

  .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: 12px 20px;
    font-size: 1em;
  }

  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-contact__section,
  .page-contact__card,
  .page-contact__container,
  .page-contact__hero-content-wrapper,
  .page-contact__method-card,
  .page-contact__contact-form,
  .page-contact__faq-item,
  .page-contact__faq-list,
  .page-contact__cta-buttons,
  .page-contact__social-icons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__social-icons {
    flex-wrap: wrap;
  }
}