/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark sections */
  background-color: #001a33; /* Darker variant of main color for overall background */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #003366, #001a33);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,gaming_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-contact__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #001a33; /* Darker text for auxiliary background */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-contact__hero-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-contact__info-section {
  padding: 80px 0;
  background-color: #00264d; /* Slightly lighter dark blue */
  color: #FFFFFF;
}

.page-contact__info-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 60px;
  color: #FFCC00;
}

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

.page-contact__info-card {
  background-color: #003366;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-10px);
}

.page-contact__info-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.7));
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-contact__card-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-contact__card-email, .page-contact__card-phone {
  font-size: 1.2em;
  font-weight: bold;
  color: #FFCC00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__card-email:hover, .page-contact__card-phone:hover {
  color: #FFFFFF;
}

.page-contact__card-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #001a33;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__card-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: #001a33;
  color: #FFFFFF;
}

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

.page-contact__form-description {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 50px;
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #003366;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact__form-input, .page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 15px;
  border: 1px solid #004080;
  border-radius: 8px;
  background-color: #00264d;
  color: #FFFFFF;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder, .page-contact__form-textarea::placeholder {
  color: #99AACC;
}

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
  border-color: #FFCC00;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
  outline: none;
}

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

.page-contact__form-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: #FFCC00;
  color: #001a33;
  border: none;
  border-radius: 50px;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__form-submit:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-contact__faq-section {
  padding: 80px 0;
  background-color: #00264d;
  color: #FFFFFF;
}

.page-contact__faq-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #FFCC00;
}

.page-contact__faq-item {
  background-color: #003366;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__faq-question {
  font-size: 1.5em;
  color: #FFCC00;
  margin-bottom: 10px;
}

.page-contact__faq-answer {
  font-size: 1.1em;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-contact__text-link {
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__text-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

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

  .page-contact__hero-subtitle {
    font-size: 1.2em;
  }

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

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

  .page-contact__info-card, .page-contact__contact-form, .page-contact__faq-item {
    padding: 30px;
  }
}

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

  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__info-section, .page-contact__form-section, .page-contact__faq-section {
    padding: 50px 0;
  }

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

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

  .page-contact__form-submit {
    font-size: 1.1em;
    padding: 15px;
  }
}