/* style/contact.css */
/* Body background is #0D0E12, Text Main is #FFF3E6 */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Default text color for dark background */
  background-color: var(--background-color, #0D0E12); /* Fallback to custom background if shared var is missing */
}

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

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0D0E12;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

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

.page-contact__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive H1 font size */
  font-weight: 700;
  color: #FFF3E6;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
}

.page-contact__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-contact__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.page-contact__section-description {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Light background sections */
.page-contact__light-bg {
  background-color: #f8f8f8; /* A light background for contrast */
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-contact__light-bg .page-contact__section-title,
.page-contact__light-bg .page-contact__section-description {
  color: #333333;
}

.page-contact__info-section .page-contact__card {
  background-color: #17191F;
  color: #FFF3E6;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #A84F0C;
}

.page-contact__info-section .page-contact__card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-contact__info-section .page-contact__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

.page-contact__submit-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-contact__channels-section {
  padding: 60px 0;
  color: #333333;
}

.page-contact__channels-section .page-contact__card {
  background-color: #17191F;
  color: #FFF3E6;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #A84F0C;
}

.page-contact__channels-section .page-contact__card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-contact__channels-section .page-contact__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}}