.page-contact {
  background-color: #140C0C;
  color: #FFF1E8;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-contact__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

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

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-contact__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF1E8;
  margin-bottom: 15px;
}

.page-contact__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__section-title {
  font-size: 2.2em;
  color: #F3C54D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #140C0C;
}

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

.page-contact__info-card {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-5px);
}

.page-contact__card-title {
  color: #FFB04A;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-contact__card-text {
  font-size: 1.1em;
  color: #FFF1E8;
  margin-bottom: 20px;
}

.page-contact__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.page-contact__card-button:hover {
  opacity: 0.9;
}

.page-contact__form-section {
  padding: 60px 0;
  background-color: #140C0C;
}

.page-contact__contact-form {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: #FFF1E8;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  background-color: #140C0C;
  color: #FFF1E8;
  font-size: 1em;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFB04A;
  outline: none;
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  border: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__faq-section {
  padding: 60px 0 80px;
  background-color: #140C0C;
}

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

.page-contact__faq-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-question {
  color: #FFF1E8;
  font-size: 1.3em;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-contact__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-contact__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 0 20px 20px;
}

.page-contact__faq-answer p {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8;
}

.page-contact__faq-answer a {
  color: #FFB04A;
  text-decoration: none;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 30px 15px;
  }

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

  .page-contact__main-title {
    font-size: 2em;
  }

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

  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-contact__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

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

  .page-contact__card-title {
    font-size: 1.3em;
  }

  .page-contact__card-text {
    font-size: 0.95em;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    width: calc(100% - 20px);
  }

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

  .page-contact__submit-button {
    font-size: 1.1em;
    padding: 12px;
  }

  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-contact__faq-answer.active {
    padding: 0 15px 15px;
  }

  /* Ensure images do not overflow on mobile */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__main-title {
    font-size: 1.7em;
  }

  .page-contact__section-title {
    font-size: 1.6em;
  }
}

/* Content area image CSS size lower bound */
.page-contact img:not(.page-contact__hero-image) {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Specific rule for images within info cards if they were present */
.page-contact__info-card img {
  min-width: 200px;
  min-height: 200px;
  width: 100%; /* Ensure it fills card, but respect min-width */
  height: auto;
}

/* Ensure no filter is used */
.page-contact img {
  filter: none; /* Explicitly disable any filters */
}