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

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #3a507a 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
  animation: page-contact__pulse 5s infinite alternate;
}

.page-contact__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
  animation: page-contact__pulse 5s infinite alternate reverse;
}

@keyframes page-contact__pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

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

.page-contact__hero-title .highlight {
  color: #FF8C00; /* Orange highlight */
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-contact__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-contact__btn--primary {
  background-color: #FF8C00; /* Orange */
  color: #1A2B4C; /* Dark blue text */
  border: 2px solid #FF8C00;
}

.page-contact__btn--primary:hover {
  background-color: #e67e00;
  border-color: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__btn--secondary {
  background-color: #1A2B4C; /* Dark blue */
  color: #ffffff;
  border: 2px solid #1A2B4C;
}

.page-contact__btn--secondary:hover {
  background-color: #0f1c33;
  border-color: #0f1c33;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-contact__contact-card {
  background-color: #f0f4f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-contact__card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #1A2B4C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__card-description {
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

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

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

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #1A2B4C;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-contact__section-title .highlight {
  color: #FF8C00;
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-contact__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #1A2B4C;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-contact__more-questions {
  margin-top: 30px;
  font-size: 1.1em;
  color: #555;
}

.page-contact__link {
  color: #FF8C00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #e67e00;
  text-decoration: underline;
}

.page-contact__cta-section {
  background: linear-gradient(135deg, #FF8C00 0%, #e67e00 100%); /* Orange gradient */
  color: #1A2B4C;
  padding: 80px 0;
  text-align: center;
}

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

.page-contact__cta-title .highlight {
  color: #ffffff;
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

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

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

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

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

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

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

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

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

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

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

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