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

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  color: #E0E0E0;
}

.page-contact__hero-description strong {
  color: #FFD700;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 40px;
}

.page-contact__form-section, .page-contact__methods-section, .page-contact__faq-section, .page-contact__cta-section {
  padding: 60px 0;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1A2A47; /* Slightly lighter dark blue 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: 20px;
}

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

.page-contact__form-input, .page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #0A192F;
  border-radius: 5px;
  background-color: #0A192F; /* Dark background for input fields */
  color: #FFFFFF;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

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

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
  border-color: #FFD700;
  outline: none;
}

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

.page-contact__btn--submit {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
  border: none;
  width: 100%;
  font-size: 1.1em;
}

.page-contact__btn--submit:hover {
  background-color: #e6c200; /* Darker gold on hover */
}

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

.page-contact__method-item {
  background-color: #1A2A47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(50%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Adjust to gold color */
}

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

.page-contact__method-text {
  color: #CCCCCC;
  margin-bottom: 20px;
}

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

.page-contact__method-link:hover {
  color: #e6c200;
}

.page-contact__btn--small {
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  font-size: 0.95em;
  border: none;
}

.page-contact__btn--small:hover {
  background-color: #e6c200;
}

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

.page-contact__social-icon-link {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #0A192F; /* Dark background for social icons */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.page-contact__social-icon-link img {
  width: 24px;
  height: 24px;
  filter: invert(80%) sepia(50%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Adjust to gold color */
}

.page-contact__social-icon-link:hover {
  background-color: #FFD700;
}

.page-contact__social-icon-link:hover img {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%); /* Darken icon on hover */
}

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

.page-contact__faq-item {
  background-color: #1A2A47;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  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(0deg);
}

.page-contact__faq-answer {
  color: #CCCCCC;
  font-size: 1.05em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #0A192F;
  margin-top: 15px;
}

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

.page-contact__inline-link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-contact__inline-link:hover {
  color: #e6c200;
}

.page-contact__cta-section {
  background: linear-gradient(90deg, #0A192F, #1A2A47);
  text-align: center;
  padding: 80px 0;
  margin-top: 60px;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 700px;
  margin: 0 auto 40px;
}

.page-contact__cta-description strong {
  color: #FFD700;
}

.page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 35px;
  font-size: 1.15em;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
}

.page-contact__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 15px 35px;
  font-size: 1.15em;
}

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

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

  .page-contact__hero-description {
    font-size: 1em;
  }

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

  .page-contact__section-subtitle {
    font-size: 0.9em;
  }

  .page-contact__contact-form {
    padding: 30px;
  }

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

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

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

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

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

  .page-contact__cta-description {
    font-size: 1em;
  }

  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__btn--primary, .page-contact__btn--secondary {
    width: 80%;
    margin: 0 auto;
  }
}

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

  .page-contact__hero-section {
    padding: 80px 0;
  }

  .page-contact__contact-form {
    padding: 20px;
  }

  .page-contact__btn--primary, .page-contact__btn--secondary {
    width: 95%;
  }
}