/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  line-height: 1.6;
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A2463, #3B5998); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #F8F8F8;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for emphasis */
}

.page-contact__subtitle {
  font-size: 1.5em;
  opacity: 0.9;
}

.page-contact__section {
  padding: 60px 0;
  background-color: #1A1A2E; /* Slightly lighter dark background */
}

.page-contact__section:nth-of-type(even) {
  background-color: #0A1931; /* Even darker for contrast */
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.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__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #C0C0C0;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #0A2463; /* Main brand color for form background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #FFD700; /* Gold for labels */
}

.page-contact__input,
.page-contact__textarea {
  width: calc(100% - 20px); /* Adjust for padding */
  padding: 12px 10px;
  border: 1px solid #546692; /* Lighter blue for borders */
  border-radius: 5px;
  background-color: #1A1A2E;
  color: #F8F8F8;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.page-contact__input::placeholder,
.page-contact__textarea::placeholder {
  color: #A0A0A0;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
  border-color: #FFD700;
  outline: none;
}

.page-contact__textarea {
  resize: vertical;
}

.page-contact__button {
  display: block;
  width: 100%;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  text-decoration: none;
}

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

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

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

.page-contact__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-contact__form-message {
  text-align: center;
  margin-top: 20px;
  font-size: 1.1em;
  font-weight: bold;
}

.page-contact__form-message.success {
  color: #4CAF50;
}

.page-contact__form-message.error {
  color: #F44336;
}

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

.page-contact__info-card {
  background-color: #0A2463;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

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

.page-contact__info-text {
  color: #C0C0C0;
  margin-bottom: 15px;
}

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

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

.page-contact__cta-section {
  background: linear-gradient(135deg, #0A2463, #3B5998);
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero {
    padding: 60px 0;
  }

  .page-contact__title {
    font-size: 2.5em;
  }

  .page-contact__subtitle {
    font-size: 1.2em;
  }

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

  .page-contact__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-contact__form {
    padding: 25px;
  }

  .page-contact__button {
    font-size: 1.1em;
    padding: 12px 20px;
  }

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

  .page-contact__cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 40px 0;
  }

  .page-contact__title {
    font-size: 2em;
  }

  .page-contact__subtitle {
    font-size: 1em;
  }

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

  .page-contact__description {
    font-size: 1em;
  }

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__label {
    font-size: 0.95em;
  }

  .page-contact__input,
  .page-contact__textarea {
    font-size: 0.9em;
  }

  .page-contact__button {
    font-size: 1em;
    padding: 10px 15px;
  }

  .page-contact__info-icon {
    width: 50px;
    height: 50px;
  }

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