.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A1A; /* Dark background */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-contact__title {
  font-size: 3.5em;
  color: #FFD700; /* 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: #CCCCCC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-contact__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold */
}

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

.page-contact__button--secondary {
  background-color: #333333; /* Dark button */
  color: #FFD700; /* Gold text on dark */
  border: 1px solid #FFD700;
}

.page-contact__button--secondary:hover {
  background-color: #4A4A4A;
  transform: translateY(-3px);
}

.page-contact__info-section {
  padding: 60px 0;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 50px;
  font-weight: bold;
}

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

.page-contact__method-card {
  background-color: #2A2A2A; /* Slightly lighter dark background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.page-contact__method-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

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

.page-contact__social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.page-contact__social-icon-link img {
  width: 30px;
  height: 30px;
  filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Make social icons gold */
  transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover img {
  transform: scale(1.1);
}

.page-contact__form-section {
  background-color: #1A1A1A;
  padding: 60px 0;
  text-align: center;
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2A2A2A;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #444444;
  border-radius: 5px;
  background-color: #333333;
  color: #E0E0E0;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

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

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

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

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

.page-contact__form-status {
  margin-top: 20px;
  font-size: 1.1em;
  color: #FFD700;
  text-align: center;
}

.page-contact__faq-cta {
  padding: 60px 0;
  text-align: center;
  background-color: #2A2A2A;
}

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

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

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

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

  .page-contact__button {
    width: 80%;
    margin: 0 auto;
  }

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

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

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

  .page-contact__form-label {
    font-size: 1em;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px;
  }

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

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

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

  .page-contact__hero-buttons {
    width: 90%;
  }

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

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

  .page-contact__method-description {
    font-size: 0.9em;
  }

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