/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A1A2E;
}

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

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

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E6B325;
  font-weight: bold;
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #E6B325;
  text-align: center;
  margin-bottom: 50px;
  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: #E6B325;
  border-radius: 2px;
}

.page-contact__contact-methods {
  padding: 80px 0;
  background-color: #1A1A2E;
}

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

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

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

.page-contact__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(230, 179, 37, 0.7));
}

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

.page-contact__card-description {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #CCCCCC;
}

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

.page-contact__social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.page-contact__social-icon:hover {
  transform: scale(1.1);
}

.page-contact__faq-section {
  padding: 80px 0;
  background-color: #1A1A2E;
  text-align: center;
}

.page-contact__faq-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #CCCCCC;
}

.page-contact__cta-section {
  background: linear-gradient(45deg, #1A1A2E, #2A2A4A);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-contact__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  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: #E6B325;
  color: #1A1A2E;
  box-shadow: 0 4px 15px rgba(230, 179, 37, 0.4);
}

.page-contact__btn--primary:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 179, 37, 0.6);
}

.page-contact__btn--secondary {
  background-color: transparent;
  color: #E6B325;
  border: 2px solid #E6B325;
}

.page-contact__btn--secondary:hover {
  background-color: #E6B325;
  color: #1A1A2E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 179, 37, 0.6);
}

.page-contact .highlight {
  color: #FFD700;
  font-weight: bold;
}

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

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

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

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

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

  .page-contact__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-contact__btn {
    width: 80%;
    margin-bottom: 15px;
  }
}

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

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

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