/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Main brand dark color */
}

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

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

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

.page-contact__subtitle {
  font-size: 1.3em;
  color: #CBD5E0; /* Lighter text for contrast */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-contact__hero-image {
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-contact__methods {
  padding: 60px 0;
  text-align: center;
  background-color: #1A202C;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
}

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

.page-contact__card {
  background-color: #2D3748; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__card-description {
  color: #CBD5E0;
  margin-bottom: 25px;
}

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

.page-contact__button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-contact__button--primary:hover {
  background-color: #E6C200;
  color: #000;
}

.page-contact__button--secondary {
  background-color: #4A5568;
  color: #E2E8F0;
}

.page-contact__button--secondary:hover {
  background-color: #616e80;
  color: #FFF;
}

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

.page-contact__social-icon {
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A202C;
  font-size: 1.5em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-icon:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-contact__faq {
  padding: 60px 0;
  text-align: center;
  background-color: #2D3748;
}

.page-contact__description {
  font-size: 1.1em;
  color: #CBD5E0;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-contact__faq-image {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__cta {
  background: linear-gradient(90deg, #FFD700 0%, #E6C200 100%);
  padding: 80px 0;
  text-align: center;
  color: #1A202C;
  position: relative;
  overflow: hidden;
}

.page-contact__cta-title {
  font-size: 3em;
  color: #1A202C;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

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

.page-contact__button--large {
  padding: 15px 40px;
  font-size: 1.2em;
  background-color: #1A202C;
  color: #FFD700;
}

.page-contact__button--large:hover {
  background-color: #000;
  color: #FFF;
}

.page-contact__cta-image {
  max-width: 700px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

  .page-contact__subtitle {
    font-size: 1.1em;
  }

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

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

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

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

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

  .page-contact__subtitle {
    font-size: 1em;
  }

  .page-contact__button {
    width: 100%;
    display: block;
    margin-bottom: 15px;
  }

  .page-contact__social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}