/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2239; /* Main dark blue background */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%); /* Gradient from main to a slightly lighter dark blue */
  padding: 80px 0;
  text-align: center;
}

.page-contact__title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #CCCCCC; /* Lighter gray for description */
}

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

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

.page-contact__method-card {
  background-color: #1A3A5A; /* Darker blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-contact__card-text {
  font-size: 1em;
  line-height: 1.5;
  color: #E0E0E0;
  margin-bottom: 25px;
}

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

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-contact__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  color: #000000; /* Black text on hover for better contrast */
  border-color: #E6C200;
}

.page-contact__form-section {
  background-color: #0A2239;
  padding: 60px 0;
}

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

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

.page-contact__form {
  background-color: #1A3A5A;
  padding: 40px;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.page-contact__label {
  display: block;
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__input, .page-contact__textarea {
  width: calc(100% - 20px); /* Adjust for padding */
  padding: 12px 10px;
  border: 1px solid #546474; /* A lighter shade of main blue for borders */
  border-radius: 5px;
  background-color: #0A2239; /* Dark background for input fields */
  color: #E0E0E0; /* Light text color */
  font-size: 1em;
}

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

.page-contact__input:focus, .page-contact__textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.page-contact__textarea {
  resize: vertical;
}

.page-contact__btn--submit {
  width: 100%;
  background-color: #FFD700;
  color: #0A2239;
  border: none;
  cursor: pointer;
  padding: 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-contact__btn--submit:hover {
  background-color: #E6C200;
  color: #000000;
}

.page-contact__form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  display: none; /* Hidden by default */
}

.page-contact__form-message--success {
  background-color: #28a745; /* Green for success */
  color: #FFFFFF;
}

.page-contact__form-message--error {
  background-color: #dc3545; /* Red for error */
  color: #FFFFFF;
}

.page-contact__faq-section {
  background-color: #0A2239;
  padding: 60px 0 80px;
  text-align: center;
}

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

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

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

.page-contact__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__title {
    font-size: 2.5em;
  }

  .page-contact__description,
  .page-contact__form-description,
  .page-contact__faq-description {
    font-size: 1em;
  }

  .page-contact__form-title,
  .page-contact__faq-title {
    font-size: 2em;
  }

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

  .page-contact__method-card {
    padding: 25px;
  }

  .page-contact__form {
    padding: 30px;
  }

  .page-contact__input, .page-contact__textarea {
    width: calc(100% - 20px);
  }
}

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

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

  .page-contact__contact-methods,
  .page-contact__form-section,
  .page-contact__faq-section {
    padding: 40px 0;
  }

  .page-contact__method-card {
    padding: 20px;
  }

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

  .page-contact__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__btn--submit {
    font-size: 1.1em;
  }
}