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

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

.page-contact__hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background-image: url('[GALLERY:hero:contact,support,go99,abstract,modern]');
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.8), rgba(227, 181, 5, 0.6)); /* Blend of main and auxiliary colors */
  z-index: 1;
}

.page-contact__hero-title,
.page-contact__hero-description {
  position: relative;
  z-index: 2;
}

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

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #E3B505; /* Auxiliary color for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

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

.page-contact__methods {
  padding: 60px 0;
  background-color: #0A2463;
}

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

.page-contact__method-card {
  background-color: #1A3A7A; /* Slightly lighter dark blue */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
  background-color: #2A4A8A;
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E3B505);
}

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

.page-contact__method-link {
  display: inline-block;
  margin-top: 20px;
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #E3B505;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #FFD700; /* Brighter gold on hover */
  border-color: #FFD700;
}

.page-contact__btn-primary {
  background-color: #E3B505; /* Auxiliary color for buttons */
  color: #0A2463; /* Main color for button text */
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.page-contact__btn-primary:hover {
  background-color: #FFD700;
  color: #000000;
}

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

.page-contact__social-link {
  color: #E3B505;
  font-size: 1.8em;
  transition: color 0.3s ease;
}

.page-contact__social-link:hover {
  color: #FFD700;
}

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

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #546692; /* Lighter shade of main color */
  border-radius: 5px;
  background-color: #071E54; /* Even darker blue for input background */
  color: #FFFFFF;
  font-size: 1em;
  box-sizing: border-box;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #E3B505;
  box-shadow: 0 0 8px rgba(227, 181, 5, 0.5);
}

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

.page-contact__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__faq-item {
  background-color: #1A3A7A;
  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: #E3B505;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-contact__faq-answer {
  font-size: 1.05em;
  color: #D3D3D3;
  display: block; /* Ensure it's visible by default for simplicity */
}

.page-contact__cta-faq {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #1A3A7A;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-faq p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero {
    padding: 80px 0;
  }

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

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

  .page-contact__section-title {
    font-size: 2em;
    padding-top: 40px;
  }

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

  .page-contact__form {
    padding: 30px;
  }

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

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

@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__method-card {
    padding: 20px;
  }

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

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__btn-primary {
    padding: 10px 20px;
    font-size: 1em;
  }
}