.page-contact {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 50vw, 500px);
  text-align: center;
  margin-bottom: 40px;
}

.page-contact__hero-image {
  width: 100%;
  height: clamp(300px, 50vw, 500px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-contact__hero-content {
  padding: 20px;
  background: linear-gradient(rgba(20, 12, 12, 0.7), rgba(20, 12, 12, 0.9));
  width: 100%;
  box-sizing: border-box;
}

.page-contact__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFF1E8;
  margin-bottom: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #FFF1E8;
  max-width: 700px;
  margin: 0 auto;
}

.page-contact__section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.page-contact__form-section {
  background-color: #2A1212; /* Card BG */
  padding: 60px 0;
  margin-bottom: 40px;
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border */
}

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.page-contact__form-group {
  display: flex;
  flex-direction: column;
}

.page-contact__form-label {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #FFF1E8;
}

.page-contact__form-input,
.page-contact__form-textarea {
  padding: 12px;
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 4px;
  background-color: #140C0C; /* Background */
  color: #FFF1E8;
  font-size: 1rem;
}

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

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

.page-contact__submit-button {
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #FFF1E8;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.page-contact__submit-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

.page-contact__info-section {
  padding: 60px 0;
  margin-bottom: 40px;
}

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

.page-contact__detail-item {
  background-color: #2A1212; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__detail-icon {
  width: 200px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  display: block;
  border-radius: 4px;
}

.page-contact__detail-title {
  font-size: 1.3rem;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
}

.page-contact__detail-text {
  font-size: 1rem;
  color: #FFF1E8;
}

.page-contact__map-section {
  padding: 60px 0;
  background-color: #2A1212; /* Card BG */
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border */
}

.page-contact__map-embed {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  background-color: #140C0C;
  border-radius: 8px;
  overflow: hidden;
}

.page-contact__map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Styles */
@media (max-width: 849px) {
  .page-contact__hero-section {
    min-height: auto;
  }
  .page-contact__hero-image {
    height: auto;
  }
  .page-contact__hero-content {
    padding: 15px;
  }
  .page-contact__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-contact__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-contact__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .page-contact__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .page-contact__form-section, .page-contact__info-section, .page-contact__map-section {
    padding: 40px 0;
    margin-bottom: 30px;
  }
  .page-contact__contact-details {
    grid-template-columns: 1fr;
  }
  .page-contact__detail-icon {
    width: 150px;
    height: auto;
  }
  .page-contact__map-embed {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for mobile map */
  }
  .page-contact__form-input, .page-contact__form-textarea, .page-contact__submit-button {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .page-contact__container {
    padding: 15px;
  }
  .page-contact__hero-image,
  .page-contact__detail-icon,
  .page-contact__map-image {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 549px) {
  .page-contact__hero-section {
    margin-bottom: 30px;
  }
  .page-contact__hero-content {
    padding: 10px;
  }
  .page-contact__main-title {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }
  .page-contact__hero-description {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }
  .page-contact__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    margin-bottom: 15px;
  }
  .page-contact__section-description {
    margin-bottom: 20px;
  }
  .page-contact__form-section, .page-contact__info-section, .page-contact__map-section {
    padding: 30px 0;
    margin-bottom: 20px;
  }
  .page-contact__contact-form {
    gap: 15px;
  }
  .page-contact__submit-button {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
  }
  .page-contact__detail-item {
    padding: 20px;
  }
  .page-contact__detail-icon {
    width: 120px;
  }
  .page-contact__detail-title {
    font-size: 1.1rem;
  }
  .page-contact__detail-text {
    font-size: 0.9rem;
  }
  .page-contact__map-embed {
    padding-bottom: 100%; /* 1:1 Aspect Ratio for very small screens */
  }
}