/* style/contact.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E5B80B;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000000;
  --background-medium-dark: #1a1a1a;
  --background-light-transparent: rgba(255, 255, 255, 0.05);
  --background-medium-transparent: rgba(255, 255, 255, 0.08);
  --border-color-transparent: rgba(255, 255, 255, 0.1);
  --input-bg-color: rgba(255, 255, 255, 0.08);
  --input-border-color: rgba(255, 255, 255, 0.2);
  --input-placeholder-color: rgba(255, 255, 255, 0.6);
}

.page-contact {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Body background is dark, so main text is light */
  background-color: var(--background-dark); /* Ensure main content area respects body background */
}

/* Fixed navigation bar spacing */
.page-contact__hero-banner-section {
  padding-top: 120px; /* Desktop */
}

@media (max-width: 768px) {
  .page-contact__hero-banner-section {
    padding-top: 100px; /* Mobile */
  }
}

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

.page-contact__hero-banner-section {
  background: linear-gradient(135deg, var(--primary-color), #2a4a8d);
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__main-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-contact__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

.page-contact__form-section {
  background-color: var(--background-medium-dark); /* Darker background for contrast with text-light */
  padding: 80px 0;
  text-align: center;
}

.page-contact__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-contact__section-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-contact__contact-form {
  background: var(--background-light-transparent); /* Slightly transparent white for form background */
  border-radius: 10px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid var(--border-color-transparent);
}

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

.page-contact__form-label {
  display: block;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--input-border-color);
  border-radius: 5px;
  background-color: var(--input-bg-color);
  color: var(--text-light);
  font-size: 16px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: var(--input-placeholder-color);
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.15);
  outline: none;
}

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

.page-contact__submit-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(90deg, var(--secondary-color), #ffcc00);
  color: var(--primary-color);
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none; /* Ensure button looks like a button */
}

.page-contact__submit-button:hover {
  background: linear-gradient(90deg, #ffcc00, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__form-illustration {
  max-width: 600px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__info-channels-section {
  background-color: var(--background-dark);
  padding: 80px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Align items to the start to prevent image from pushing cards down too much */
  flex-wrap: wrap;
}

.page-contact__info-card {
  background: var(--background-medium-transparent);
  border-radius: 10px;
  padding: 30px;
  margin: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color-transparent);
  text-align: left;
}

.page-contact__card-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact__contact-list li {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
}

.page-contact__contact-list li strong {
  color: var(--secondary-color);
}

.page-contact__link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #ffcc00;
  text-decoration: underline;
}

.page-contact__channels-illustration {
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: block;
  width: 100%;
}

.page-contact__commitment-section {
  background-color: var(--background-medium-dark);
  padding: 80px 0;
  text-align: center;
}

.page-contact__text-block {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.page-contact__commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__commitment-list li {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-contact__icon-check {
  color: var(--secondary-color);
  margin-right: 10px;
  font-weight: bold;
}

.page-contact__keyword {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-contact__faq-section {
  background-color: var(--background-dark);
  padding: 80px 0;
  text-align: center;
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--background-light-transparent);
  border: 1px solid var(--border-color-transparent);
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: var(--text-light);
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.02); /* Slightly lighter background for open answer */
  border-radius: 0 0 5px 5px;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--background-medium-transparent);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-contact__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-contact__faq-question:active {
  background: rgba(255, 255, 255, 0.15);
}

.page-contact__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--secondary-color);
}

.page-contact__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: 36px;
  }
  .page-contact__section-title {
    font-size: 30px;
  }
  .page-contact__hero-description,
  .page-contact__section-description {
    font-size: 16px;
  }
  .page-contact__form-section, .page-contact__info-channels-section, .page-contact__commitment-section, .page-contact__faq-section {
    padding: 60px 0;
  }
  .page-contact__contact-form {
    padding: 30px;
  }
  .page-contact__info-card {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-banner-section {
    padding-bottom: 40px;
  }
  .page-contact__main-title {
    font-size: 28px;
  }
  .page-contact__section-title {
    font-size: 24px;
  }
  .page-contact__hero-description,
  .page-contact__section-description,
  .page-contact__form-label,
  .page-contact__form-input,
  .page-contact__form-textarea,
  .page-contact__contact-list li,
  .page-contact__text-block,
  .page-contact__commitment-list li,
  .page-contact__faq-answer p {
    font-size: 15px;
  }
  .page-contact__submit-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-contact__form-section, .page-contact__info-channels-section, .page-contact__commitment-section, .page-contact__faq-section {
    padding: 40px 0;
  }
  .page-contact__contact-form {
    padding: 20px;
  }
  .page-contact__info-card {
    margin: 10px 0;
    max-width: 100%;
    min-width: unset;
  }
  .page-contact__info-channels-section {
    flex-direction: column;
    align-items: center;
  }
  .page-contact__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-contact__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-contact__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-contact__faq-answer {
    padding: 0 15px;
  }
  .page-contact__faq-item.active .page-contact__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-contact__main-title {
    font-size: 24px;
  }
  .page-contact__section-title {
    font-size: 20px;
  }
  .page-contact__hero-description,
  .page-contact__section-description,
  .page-contact__form-label,
  .page-contact__form-input,
  .page-contact__form-textarea,
  .page-contact__contact-list li,
  .page-contact__text-block,
  .page-contact__commitment-list li,
  .page-contact__faq-answer p {
    font-size: 14px;
  }
  .page-contact__submit-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-contact__form-section, .page-contact__info-channels-section, .page-contact__commitment-section, .page-contact__faq-section {
    padding: 30px 0;
  }
  .page-contact__contact-form {
    padding: 15px;
  }
  .page-contact__info-card {
    padding: 20px;
  }
  .page-contact__card-title {
    font-size: 20px;
  }
  .page-contact__faq-question h3 {
    font-size: 14px;
  }
}