/* style/contact.css */

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

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #003366, #FFD700);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff;
}

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

.page-contact__section-title {
  font-size: 2.2em;
  color: #003366;
  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: #FFD700;
  border-radius: 2px;
}

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

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

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

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

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

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

.page-contact__method-text {
  color: #555;
  margin-bottom: 20px;
}

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

.page-contact__link:hover {
  color: #FFD700;
}

.page-contact__contact-form {
  padding: 60px 0;
  background-color: #fff;
}

.page-contact__form-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px 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 #ccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700;
  outline: none;
}

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

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

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

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

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

.page-contact__btn--secondary:hover {
  background-color: #002244;
  border-color: #002244;
}

.page-contact__btn--submit {
  background-color: #003366;
  color: #fff;
  border: 2px solid #003366;
  width: auto;
  display: block;
  margin: 0 auto;
}

.page-contact__btn--submit:hover {
  background-color: #002244;
  border-color: #002244;
}

.page-contact__cta-section {
  background-color: #003366;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

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

.page-contact__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.6em;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact__form {
    padding: 20px;
  }
}