/* 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 {
  background: linear-gradient(135deg, #0A2463, #3A5B9C);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
}

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

.page-contact__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-contact__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
  margin: 10px;
}

.page-contact__info-section, .page-contact__form-section, .page-contact__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-contact__info-section {
  background-color: #f8f8f8;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-contact__method-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  width: calc(33% - 40px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-contact__method-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-contact__method-link--highlight {
  background-color: #FFD700;
  color: #0A2463;
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

.page-contact__method-link--highlight:hover {
  background-color: #e6c200;
  color: #0A2463;
  text-decoration: none;
}

.page-contact__form-section {
  background-color: #fff;
}

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

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

.page-contact__form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #0A2463;
  font-size: 1.1em;
}

.page-contact__contact-form input[type="text"],
.page-contact__contact-form input[type="email"],
.page-contact__contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  box-sizing: border-box;
}

.page-contact__contact-form input[type="text"]:focus,
.page-contact__contact-form input[type="email"]:focus,
.page-contact__contact-form textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-contact__contact-form textarea {
  resize: vertical;
}

.page-contact__cta-section {
  background: linear-gradient(135deg, #0A2463, #1A3A70);
  color: #fff;
  padding: 80px 0;
}

.page-contact__cta-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.page-contact__cta-image {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-text {
  text-align: left;
  max-width: 600px;
}

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

.page-contact__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__method-card {
    width: calc(50% - 30px);
  }
  .page-contact__cta-content {
    flex-direction: column;
    text-align: center;
  }
  .page-contact__cta-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__contact-methods {
    flex-direction: column;
    align-items: center;
  }
  .page-contact__method-card {
    width: 90%;
  }
  .page-contact__contact-form {
    padding: 25px;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__btn--large {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}