.page-contact {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding to respect shared header */
}

.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;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.page-contact__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-contact__main-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFB04D; /* Glow color for main title */
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-contact__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-contact__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  color: #FF8C1A;
}

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFA53A 0%, #D96800 100%);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-contact__description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

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

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

.page-contact__detail-item {
  background-color: #17191F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #A84F0C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-contact__detail-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-contact__detail-text {
  font-size: 1.1rem;
  color: #FFF3E6;
  word-break: break-all;
}

.page-contact__cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-contact__form-section {
  padding: 60px 0;
  background-color: #0D0E12;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.page-contact__contact-form {
  background-color: #17191F;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  margin: 0 auto 40px auto;
  border: 1px solid #A84F0C;
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #FFA53A;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #A84F0C;
  border-radius: 5px;
  background-color: #0D0E12;
  color: #FFF3E6;
  font-size: 1rem;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #A84F0C;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #FFB04D;
  box-shadow: 0 0 0 3px rgba(255, 176, 77, 0.3);
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__form-image {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #A84F0C;
}

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

.page-contact__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__faq-item {
  background-color: #17191F;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #A84F0C;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-contact__faq-answer {
  font-size: 1rem;
  color: #FFF3E6;
}

.page-contact__faq-image {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #A84F0C;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .page-contact__hero-content {
    padding: 0 15px;
  }

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

  .page-contact__intro-text {
    font-size: 1rem;
  }

  .page-contact__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

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

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

  .page-contact__form-input,
  .page-contact__form-textarea,
  .page-contact__submit-button,
  .page-contact__cta-button {
    font-size: 1rem;
    padding: 12px;
  }

  .page-contact__form-image, .page-contact__faq-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-contact__container {
    padding: 0 15px;
  }

  .page-contact__hero-image,
  .page-contact__form-image,
  .page-contact__faq-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content area images are responsive and don't cause overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .page-contact__detail-item,
  .page-contact__faq-item {
    padding: 20px;
  }

  .page-contact__faq-question {
    font-size: 1.1rem;
  }

  .page-contact__faq-answer {
    font-size: 0.95rem;
  }
}