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

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A237E 0%, #0D103F 100%); /* Dark blue gradient */
  padding: 80px 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,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero > div {
  position: relative;
  z-index: 1;
}

.page-contact__title {
  font-size: 3.5em;
  color: #FFB300; /* Amber gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__btn--primary {
  background-color: #FFB300; /* Amber gold */
  color: #1A237E; /* Dark blue */
}

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

.page-contact__btn--secondary {
  background-color: #1A237E; /* Dark blue */
  color: #FFB300; /* Amber gold */
  border: 2px solid #FFB300;
}

.page-contact__btn--secondary:hover {
  background-color: #0D103F;
  transform: translateY(-3px);
}

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

.page-contact__btn--tertiary:hover {
  background-color: #FFB300;
  color: #1A237E;
  transform: translateY(-3px);
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #1A237E; /* Primary dark blue background */
  color: #FFFFFF;
}

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

.page-contact__card {
  background-color: #2A308B; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(1.2) contrast(1.2); /* Make icons golden */
}

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

.page-contact__card-text {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

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

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

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

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

.page-contact__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1A237E; /* Dark blue for form background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact__input,
.page-contact__textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #FFB300;
  border-radius: 6px;
  background-color: #0D103F; /* Even darker blue for input fields */
  color: #FFFFFF;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-contact__textarea {
  resize: vertical;
}

.page-contact__btn--submit {
  width: 100%;
  background-color: #FFB300;
  color: #1A237E;
  padding: 15px 20px;
  font-size: 1.2em;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

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

.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__faq-section {
  padding: 60px 0;
  background-color: #0D103F; /* Darkest blue for FAQ section */
  color: #E0E0E0;
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__faq-item {
  background-color: #1A237E; /* Primary dark blue for FAQ items */
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #FFB300;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-contact__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 179, 0, 0.3);
  margin-top: 10px;
}

.page-contact__faq-answer.active {
  display: block;
}

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

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

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

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

  .page-contact__card {
    padding: 25px;
  }

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

  .page-contact__form {
    padding: 30px;
  }

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

  .page-contact__input,
  .page-contact__textarea {
    padding: 10px;
  }

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

@media (max-width: 480px) {
  .page-contact__title {
    font-size: 2em;
  }

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

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

  .page-contact__container {
    padding: 0 15px;
  }

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

  .page-contact__faq-question {
    font-size: 1.1em;
  }
}