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

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a5e 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-contact__highlight {
  color: #FFFFFF;
}

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

.page-contact__hero-image {
  position: absolute;
  bottom: -50px;
  right: -100px;
  opacity: 0.15;
  width: 500px;
  height: auto;
  z-index: 0;
  filter: grayscale(100%);
}

@media (max-width: 768px) {
  .page-contact__hero-image {
    display: none;
  }
}

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Accent color for primary buttons */
  color: #0A192F; /* Dark text for accent background */
}

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

.page-contact__btn--secondary {
  background-color: #1A3A5E; /* Darker blue for secondary buttons */
  color: #FFD700; /* Accent text for secondary background */
  border: 1px solid #FFD700;
}

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

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

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

.page-contact__method-card {
  background-color: #1A3A5E;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #0f2e4d;
}

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

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

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

.page-contact__method-description {
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #0A192F;
  position: relative;
  overflow: hidden;
}

.page-contact__faq-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  z-index: 0;
}

.page-contact__faq-list {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-contact__faq-item {
  background-color: #1A3A5E;
  border: 1px solid #0f2e4d;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-contact__cta-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  color: #C0C0C0;
  position: relative;
  z-index: 1;
}

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

.page-contact__cta-link:hover {
  text-decoration: underline;
}

.page-contact__cta-register {
  background: linear-gradient(135deg, #1A3A5E 0%, #0A192F 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #FFD700;
}

.page-contact__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #C0C0C0;
}

.page-contact__cta-image {
  position: absolute;
  bottom: -20px;
  left: -80px;
  width: 400px;
  height: auto;
  opacity: 0.15;
  filter: grayscale(100%);
  z-index: 0;
}

@media (max-width: 768px) {
  .page-contact__cta-image {
    display: none;
  }
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__method-title {
    font-size: 1.5em;
  }
  .page-contact__faq-question {
    font-size: 1.1em;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}