/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-contact__hero-section {
  background-color: #003366; /* Deep sea blue */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFCC00; /* Golden yellow for emphasis */
  font-weight: bold;
}

.page-contact__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #003366; /* Deep sea blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-contact__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Golden yellow accent */
  border-radius: 2px;
}

.page-contact__contact-methods {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.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: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-contact__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 51, 102, 0.3));
}

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

.page-contact__method-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.page-contact__btn {
  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;
  font-size: 1em;
}

.page-contact__btn--email {
  background-color: #003366;
  color: #fff;
}

.page-contact__btn--email:hover {
  background-color: #004488;
}

.page-contact__btn--livechat {
  background-color: #FFCC00;
  color: #003366;
}

.page-contact__btn--livechat:hover {
  background-color: #e6b800;
}

.page-contact__social-links a {
  color: #003366;
  margin: 0 10px;
  font-size: 1.1em;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

.page-contact__social-links a:hover {
  border-bottom: 2px solid #FFCC00;
  color: #004488;
}

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

.page-contact__faq-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #444;
}

.page-contact__btn--faq {
  background-color: #003366;
  color: #fff;
}

.page-contact__btn--faq:hover {
  background-color: #004488;
}

.page-contact__cta-section {
  background-color: #003366; /* Deep sea blue */
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-contact__cta-section .page-contact__section-title {
  color: #FFCC00; /* Golden yellow */
}

.page-contact__cta-section .page-contact__section-title::after {
  background-color: #fff;
}

.page-contact__cta-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

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

.page-contact__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  font-size: 1.1em;
  padding: 15px 35px;
  border: 2px solid #FFCC00;
}

.page-contact__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-contact__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  font-size: 1.1em;
  padding: 15px 35px;
  border: 2px solid #FFCC00;
}

.page-contact__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

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

  .page-contact__hero-subtitle,
  .page-contact__faq-intro,
  .page-contact__cta-text {
    font-size: 1em;
  }

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

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

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

  .page-contact__btn--primary,
  .page-contact__btn--secondary {
    width: 80%;
    max-width: 300px;
  }
}

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

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

  .page-contact__btn {
    padding: 10px 20px;
  }
}