.page-contact {
  color: #ffffff; /* Light text for dark body background #111 */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A; /* Dark background for the main content area */
}

.page-contact__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2;
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 12px;
  padding: 30px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-weight: 700;
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-actions {
  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;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__button--primary {
  background-color: #FFD700; /* Primary color */
  color: #0A0A0A; /* Dark text for primary button */
}

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

.page-contact__button--secondary {
  background-color: #1E90FF; /* Auxiliary color */
  color: #ffffff;
  border: 2px solid #1E90FF;
}

.page-contact__button--secondary:hover {
  background-color: #1a7ae6;
  transform: translateY(-2px);
}

.page-contact__button--small {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #DC143C; /* Action button color */
  color: #ffffff;
  border: none;
}

.page-contact__button--small:hover {
  background-color: #c01234;
  transform: translateY(-2px);
}

.page-contact__contact-options {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 50px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

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

.page-contact__option-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-contact__option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: #FFD700;
}

.page-contact__option-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Adjusted to fit common aspect ratios, ensures >=200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-contact__option-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__faq-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px 20px;
  background-color: rgba(30, 144, 255, 0.1); /* Light blue tint */
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(30, 144, 255, 0.3);
}

.page-contact__faq-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__social-media {
  max-width: 1000px;
  margin: 80px auto 100px auto;
  padding: 0 20px;
  text-align: center;
}

.page-contact__social-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-contact__social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A0A0A;
  border-radius: 50%;
  font-size: 1.5em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-contact__social-link:hover {
  background-color: #1E90FF;
  color: #ffffff;
  transform: translateY(-5px) scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 3em;
  }
  .page-contact__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
    min-height: 400px;
  }
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__button {
    width: 80%;
    max-width: 300px;
  }
  .page-contact__options-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__option-card {
    padding: 25px;
  }
  .page-contact__option-icon {
    width: 250px;
    height: 187px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__faq-section, .page-contact__social-media {
    margin: 40px auto;
  }
  /* Mobile content area image constraint */
  .page-contact__hero-image,
  .page-contact__option-card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px);
  }
  .page-contact__button {
    width: 90%;
  }
  .page-contact__option-icon {
    width: 200px;
    height: 150px;
  }
  .page-contact__social-icons {
    gap: 15px;
  }
  .page-contact__social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3em;
  }
}