/* 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, #003366, #FFCC00);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-contact__button--primary {
  background-color: #FFCC00;
  color: #003366;
}

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

.page-contact__section {
  padding: 60px 0;
}

.page-contact__section:nth-child(even) {
  background-color: #f0f0f0;
}

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

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

.page-contact__form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-contact__form {
  flex: 1 1 500px;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-contact__input,
.page-contact__textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
  border-color: #003366;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 51, 102, 0.2);
}

.page-contact__textarea {
  resize: vertical;
}

.page-contact__button--submit {
  background-color: #003366;
  color: #fff;
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
}

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

.page-contact__image-form {
  flex: 1 1 400px;
  text-align: center;
}

.page-contact__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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

.page-contact__info-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-contact__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 3px rgba(0, 51, 102, 0.2));
}

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

.page-contact__info-text {
  font-size: 1.1em;
  color: #555;
}

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

.page-contact__social-link {
  display: inline-block;
}

.page-contact__social-icon {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.page-contact__social-icon:hover {
  transform: translateY(-5px);
}

.page-contact__section--cta {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-contact__section--cta .page-contact__heading {
  color: #FFCC00;
}

.page-contact__section--cta .page-contact__description {
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-contact__button--secondary:hover {
  background-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact__title {
    font-size: 2.8em;
  }
  .page-contact__subtitle {
    font-size: 1.3em;
  }
  .page-contact__heading {
    font-size: 2em;
  }
  .page-contact__form-wrapper {
    flex-direction: column;
  }
  .page-contact__form, .page-contact__image-form {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-contact__hero {
    padding: 60px 0;
  }
  .page-contact__title {
    font-size: 2.2em;
  }
  .page-contact__subtitle {
    font-size: 1.1em;
  }
  .page-contact__section {
    padding: 40px 0;
  }
  .page-contact__heading {
    font-size: 1.8em;
  }
  .page-contact__description {
    font-size: 1em;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__social-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .page-contact__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact__title {
    font-size: 1.8em;
  }
  .page-contact__subtitle {
    font-size: 1em;
  }
  .page-contact__heading {
    font-size: 1.5em;
  }
  .page-contact__input, .page-contact__textarea {
    padding: 10px;
    font-size: 0.9em;
  }
  .page-contact__info-title {
    font-size: 1.5em;
  }
  .page-contact__icon {
    width: 50px;
    height: 50px;
  }
}