.page-contact {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body via shared.css */
}

.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%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

.page-contact__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: -1;
}

.page-contact__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold brand color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__intro-text {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__btn-primary:hover {
  background-color: #e6c200;
  color: #6a0000;
}

/* Info Section */
.page-contact__info-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-contact__contact-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-contact__card-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-contact__card-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-contact__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  width: 100%;
}

.page-contact__contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-contact__icon {
  font-size: 1.5em;
  color: #FFD700;
  margin-right: 15px;
  width: 25px;
  text-align: center;
}

.page-contact__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #e6c200;
}

.page-contact__contact-form {
  width: 100%;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #8B0000;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

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

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

.page-contact__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-contact__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

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

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

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

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

/* Social Section */
.page-contact__social-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

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

.page-contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #8B0000;
  color: #FFD700;
  font-size: 1.8em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-link:hover {
  background-color: #FFD700;
  color: #8B0000;
}

.page-contact__social-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  object-fit: cover;
}

/* Commitment Section */
.page-contact__commitment-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-contact__commitment-section .page-contact__section-title,
.page-contact__commitment-section .page-contact__section-description {
  text-align: left;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.page-contact__commitment-section .page-contact__section-description {
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: 2.8em;
  }
  .page-contact__intro-text,
  .page-contact__card-description,
  .page-contact__section-description,
  .page-contact__contact-list li,
  .page-contact__form-label,
  .page-contact__form-input,
  .page-contact__form-textarea,
  .page-contact__faq-question,
  .page-contact__faq-answer {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    height: 500px;
  }
  .page-contact__main-title {
    font-size: 2em;
  }
  .page-contact__intro-text {
    font-size: 0.95em;
  }
  .page-contact__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__contact-card {
    padding: 20px;
  }
  .page-contact__card-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__faq-question {
    font-size: 1.1em;
  }
  .page-contact__faq-answer {
    padding: 15px 20px;
  }
  .page-contact__contact-form .page-contact__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Mobile responsive images */
  .page-contact img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__section,
  .page-contact__card,
  .page-contact__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }
  .page-contact__social-links {
    flex-wrap: wrap;
    gap: 15px;
  }
  .page-contact__social-link {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-contact__main-title {
    font-size: 1.6em;
  }
  .page-contact__intro-text {
    font-size: 0.9em;
  }
  .page-contact__btn-primary {
    padding: 10px 20px;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-contact__faq-answer {
    padding: 10px 15px;
  }
  .page-contact__social-links {
    gap: 10px;
  }
  .page-contact__social-link {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }
}