/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #0A1931; /* Main background color */
  line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero {
  background: linear-gradient(135deg, #0A1931 0%, #2a3d58 100%); /* Dark blue gradient */
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.page-contact__hero-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #FFC107; /* Bright gold for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-contact__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-contact__btn--primary {
  background-color: #FFC107; /* Bright gold button */
  color: #0A1931; /* Dark blue text on gold */
}

.page-contact__btn--primary:hover {
  background-color: #e6b000;
  transform: translateY(-2px);
}

.page-contact__btn--secondary {
  background-color: transparent;
  color: #FFC107; /* Bright gold text */
  border: 2px solid #FFC107;
}

.page-contact__btn--secondary:hover {
  background-color: #FFC107;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-contact__hero-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.page-contact__img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.page-contact__section-title {
  font-size: 2.5em;
  color: #FFC107;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
}

/* Form Section */
.page-contact__form-section {
  padding: 60px 0;
  background-color: #1a2a47; /* Slightly lighter dark blue */
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #0A1931;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #3a4a67;
  border-radius: 5px;
  background-color: #0a1e3a;
  color: #FFFFFF;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFC107;
  outline: none;
}

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

.page-contact__btn--form-submit {
  width: 100%;
  background-color: #FFC107;
  color: #0A1931;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__btn--form-submit:hover {
  background-color: #e6b000;
  transform: translateY(-2px);
}

/* Info Section */
.page-contact__info-section {
  padding: 60px 0;
  background-color: #0A1931;
}

.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: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

.page-contact__info-title {
  font-size: 1.8em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-contact__info-text {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-contact__info-link,
.page-contact__social-link {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__info-link:hover,
.page-contact__social-link:hover {
  color: #e6b000;
  text-decoration: underline;
}

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

/* FAQ Section */
.page-contact__faq-section {
  padding: 60px 0 80px 0;
  background-color: #1a2a47;
}

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

.page-contact__faq-item {
  background-color: #0A1931;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

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

.page-contact__faq-answer {
  color: #e0e0e0;
  font-size: 1em;
  display: block; /* Ensure visibility */
}

.page-contact__faq-answer a {
  color: #FFC107;
  text-decoration: underline;
}

.page-contact__faq-answer a:hover {
  color: #e6b000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero {
    padding: 60px 0;
    flex-direction: column-reverse;
  }

  .page-contact__hero-title {
    font-size: 2.5em;
  }

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

  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-contact__form {
    padding: 25px;
  }

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

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

  .page-contact__btn {
    width: 100%;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    width: calc(100% - 20px);
  }

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

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

  .page-contact__faq-answer {
    font-size: 0.95em;
  }
}