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

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #1A2E47 0%, #3a4f6d 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E47; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  color: #000;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #1A2E47;
}

.page-contact__contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-contact__method-card {
  background-color: #2a3f5a; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  flex: 1 1 calc(33% - 60px);
  min-width: 280px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-contact__method-text {
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-contact__method-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #e5c100;
  text-decoration: underline;
}

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

.page-contact__social-link img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
  filter: brightness(0.8) sepia(1) saturate(5) hue-rotate(30deg); /* Make social icons golden */
}

.page-contact__social-link img:hover {
  transform: scale(1.1);
  filter: brightness(1) sepia(1) saturate(5) hue-rotate(30deg);
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2a3f5a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #889bb0;
}

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

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

.page-contact__submit-button {
  background-color: #FFD700;
  color: #1A2E47;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
}

.page-contact__submit-button:hover {
  background-color: #e5c100;
  color: #000;
}

.page-contact__faq-section {
  padding: 60px 0 80px;
  background-color: #1A2E47;
}

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

.page-contact__faq-item {
  background-color: #2a3f5a;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-contact__faq-answer {
  color: #E0E0E0;
  font-size: 1.05em;
}

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

.page-contact__faq-link:hover {
  color: #e5c100;
}

/* 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__contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .page-contact__method-card {
    flex: 1 1 90%;
    max-width: 400px;
  }

  .page-contact__form-input,
  .page-contact__form-textarea,
  .page-contact__submit-button {
    width: 100%;
  }

  .page-contact__contact-form {
    padding: 30px;
  }
}

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

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

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

  .page-contact__cta-button,
  .page-contact__submit-button {
    padding: 12px 20px;
    font-size: 1em;
  }

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