/* style/contact.css */

/* General styles for the contact page */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #003366; /* Main text color for good contrast */
  line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero-section {
  background-color: #003366; /* Deep blue background */
  color: #FFFFFF; /* White text for contrast */
  padding: 80px 0;
  text-align: center;
}

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

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

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

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

.page-contact__btn--primary {
  background-color: #FFCC00; /* Golden yellow */
  color: #003366; /* Deep blue text for contrast */
  border: 2px solid #FFCC00;
}

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

.page-contact__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Golden yellow text */
  border: 2px solid #FFCC00;
}

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

.page-contact__btn--small {
  padding: 8px 18px;
  font-size: 0.95em;
  border-radius: 5px;
  background-color: #003366; /* Deep blue */
  color: #FFCC00; /* Golden yellow text */
  border: 1px solid #003366;
}

.page-contact__btn--small:hover {
  background-color: #004d99;
  color: #FFFFFF;
  border-color: #004d99;
}

/* Info Section */
.page-contact__info-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-contact__info-block {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-contact__info-block:hover {
  transform: translateY(-5px);
}

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__info-title {
  font-size: 1.8em;
  color: #003366; /* Deep blue */
  margin-bottom: 15px;
}

.page-contact__info-text {
  color: #333333;
  margin-bottom: 20px;
}

.page-contact__link {
  color: #003366; /* Deep blue */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #FFCC00; /* Golden yellow */
}

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

.page-contact__social-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  border: 1px solid #003366;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-link:hover {
  background-color: #003366;
  color: #FFCC00;
}

/* Form Section */
.page-contact__form-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 15px;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-contact__form-group {
  margin-bottom: 20px;
}

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #003366;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFCC00; /* Golden yellow focus */
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__contact-form .page-contact__btn--primary {
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  border-radius: 8px;
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 60px 0;
  background-color: #eaf2f8; /* Light blue-grey for contrast */
}

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

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

.page-contact__faq-question {
  font-size: 1.4em;
  color: #003366; /* Deep blue */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__faq-answer {
  color: #333333;
  font-size: 1em;
}

.page-contact__faq-answer a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-subtitle {
    font-size: 1em;
  }
  .page-contact__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-contact__grid {
    grid-template-columns: 1fr;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__info-block,
  .page-contact__contact-form,
  .page-contact__faq-item {
    padding: 20px;
  }
  .page-contact__info-icon {
    width: 50px;
    height: 50px;
  }
}