.page-contact {
  background-color: #140C0C;
  color: #FFF1E8;
  padding-top: 10px; /* Small top padding for the first section */
}

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

.page-contact__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/5; /* 1920x600 */
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 20px; /* Space between image and text */
}

.page-contact__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-contact__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF1E8;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Adjusted clamp for H1 */
}

.page-contact__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #FFF1E8;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-contact__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F3C54D;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding-top: 40px;
}

.page-contact__section-description {
  font-size: 1rem;
  color: #FFF1E8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__form-section, .page-contact__info-section, .page-contact__map-section, .page-contact__faq-section {
  padding: 60px 0;
}

.page-contact__form {
  background-color: #2A1212;
  padding: 40px;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #6A1E1E;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #6A1E1E;
  border-radius: 5px;
  background-color: #140C0C;
  color: #FFF1E8;
  font-size: 1rem;
}

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

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Darker text for contrast on bright button */
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

.page-contact__info-card {
  background-color: #2A1212;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #6A1E1E;
}

.page-contact__info-title {
  font-size: 1.3rem;
  color: #F3C54D;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__info-text {
  font-size: 1rem;
  color: #FFF1E8;
  line-height: 1.6;
}

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

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

.page-contact__social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.page-contact__social-icon {
  color: #FFF1E8;
  font-size: 1rem;
  text-decoration: none;
  background-color: #7E0D0D;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-contact__social-icon:hover {
  background-color: #C61F1F;
}

.page-contact__map-embed {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid #6A1E1E;
}

.page-contact__map-image {
  width: 100%;
  height: auto;
  display: block;
  min-height: 200px; /* Ensure map image is not too small */
}

.page-contact__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__faq-item {
  background-color: #2A1212;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
}

.page-contact__faq-question {
  font-size: 1.15rem;
  color: #F3C54D;
  margin-bottom: 10px;
  font-weight: bold;
}

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

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-contact__hero-image {
    aspect-ratio: 16/7;
  }
  .page-contact__main-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .page-contact__info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 549px) {
  .page-contact__hero-image {
    aspect-ratio: 16/9;
  }
  .page-contact__main-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .page-contact__form-section, .page-contact__info-section, .page-contact__map-section, .page-contact__faq-section {
    padding: 40px 0;
  }
  .page-contact__form {
    padding: 25px;
  }
  .page-contact__info-card {
    padding: 20px;
  }
  .page-contact__faq-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-contact__container {
    padding: 0 12px;
  }
  .page-contact__hero-image, .page-contact__map-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content images are not smaller than 200px */
  .page-contact__form-section img, .page-contact__info-section img, .page-contact__map-section img, .page-contact__faq-section img {
    min-width: 200px;
    min-height: 200px;
    width: auto;
    height: auto;
  }
  /* Override for specific elements if needed to ensure min-size for content images */
  .page-contact__map-image {
    width: 100%; /* Ensure it scales down */
    height: auto;
  }
}