/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1A2C 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* White text on dark background */
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
}

.page-contact__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-contact__highlight {
  color: #FFD700;
}

.page-contact__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text on gold */
}

.page-contact__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-contact__btn--secondary {
  background-color: #1A2B4C; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #0F1A2C; /* Darker blue on hover */
  transform: translateY(-3px);
}

.page-contact__contact-info {
  background-color: #0F1A2C; /* Very dark blue background */
  padding: 80px 0;
}

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

.page-contact__info-card {
  background-color: #1A2B4C; /* Dark blue card background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(1500%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-contact__info-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold title */
  margin-bottom: 15px;
}

.page-contact__info-text {
  font-size: 1.1em;
  color: #C0C0C0; /* Lighter gray for body text */
  margin-bottom: 20px;
}

.page-contact__link {
  color: #FFD700; /* Gold links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #E6C200; /* Darker gold on hover */
  text-decoration: underline;
}

.page-contact__form-section {
  background-color: #1A2B4C; /* Dark blue background */
  padding: 80px 0;
  color: #FFFFFF;
}

.page-contact__form-description {
  text-align: center;
  font-size: 1.1em;
  max-width: 700px;
  margin: -30px auto 40px auto;
  color: #C0C0C0;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #0F1A2C; /* Very dark blue form background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #FFD700; /* Gold label */
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #3A4C6E; /* Slightly lighter dark blue border */
  border-radius: 8px;
  background-color: #2A3B5C; /* Medium dark blue input background */
  color: #FFFFFF;
  font-size: 1em;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #889BBF; /* Lighter blue for placeholder */
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #FFD700; /* Gold focus border */
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

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

.page-contact__form button[type="submit"] {
  width: 100%;
  padding: 18px;
  font-size: 1.2em;
  margin-top: 20px;
}

.page-contact__faq {
  background-color: #0F1A2C; /* Very dark blue background */
  padding: 80px 0;
  color: #E0E0E0;
}

.page-contact__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__faq-item {
  background-color: #1A2B4C; /* Dark blue FAQ item background */
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold question text */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-contact__faq-answer {
  font-size: 1.1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-contact__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
}

.page-contact__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__inline-link:hover {
  text-decoration: underline;
  color: #E6C200;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

  .page-contact__hero-description {
    font-size: 1em;
  }

  .page-contact__section-title {
    font-size: 2em;
  }

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

  .page-contact__info-card {
    padding: 30px;
  }

  .page-contact__form {
    padding: 30px;
  }

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

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero {
    padding: 60px 0;
  }

  .page-contact__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__section-title {
    font-size: 1.8em;
  }

  .page-contact__info-icon {
    width: 50px;
    height: 50px;
  }

  .page-contact__info-title {
    font-size: 1.5em;
  }

  .page-contact__form-label,
  .page-contact__form-input,
  .page-contact__form-textarea {
    font-size: 0.95em;
  }
}