.page-contact {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light 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, #8B0000, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-contact__hero .page-contact__container {
  position: relative;
  z-index: 2;
}

.page-contact__title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-contact__hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.page-contact__description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #ccc;
}

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

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

.page-contact__input,
.page-contact__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #333;
  color: #f0f0f0;
  font-size: 1em;
  box-sizing: border-box;
}

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

.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__button {
  display: inline-block;
  padding: 14px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-contact__button--primary {
  background-color: #FFD700;
  color: #8B0000;
}

.page-contact__button--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
}

.page-contact__button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__button--secondary:hover {
  background-color: #6a0000;
  color: #FFD700;
  border-color: #e6c200;
}

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

.page-contact__button--outline:hover {
  background-color: #FFD700;
  color: #8B0000;
}

.page-contact__info-wrapper {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-contact__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-contact__contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-contact__icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold tint for icons */
}

.page-contact__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-contact__social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: #444;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-contact__social-link img {
  width: 24px;
  height: 24px;
  filter: invert(100%) brightness(0%); /* Dark icon on hover */
}

.page-contact__social-link:hover img {
  filter: none; /* Original color on hover, or a specific dark color */
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%); /* Make icon black on gold hover */
}

.page-contact__cta-card {
  background-color: #8B0000;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-contact__cta-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  line-height: 1.5;
}

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

.page-contact__faq-section .page-contact__section-title {
  text-align: center;
}

.page-contact__faq-section .page-contact__description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

  .page-contact__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-contact__hero-image {
    max-width: 90%;
  }
}