.page-contact {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding: 0; /* Hero image will fill */
}

.page-contact__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-contact__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__hero-button:hover {
  background-color: #e6c200;
  color: #1a1a1a;
}

.page-contact__info-section {
  background-color: #1a1a1a;
  padding: 80px 20px;
}

.page-contact__info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-contact__info-card {
  flex: 1;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-contact__card-description {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-contact__method-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-contact__method-item:hover {
  transform: translateY(-5px);
}

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

.page-contact__method-item p {
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

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

.page-contact__info-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-contact__info-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-contact__form-section {
  background-color: #000000;
  padding: 80px 20px;
}

.page-contact__form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__form-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__form-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-contact__form-group {
  display: flex;
  flex-direction: column;
}

.page-contact__form-label {
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 8px;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 1em;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

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

.page-contact__form-submit-button {
  background-color: #FFD700;
  color: #000000;
  padding: 18px 35px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-contact__form-submit-button:hover {
  background-color: #e6c200;
  color: #1a1a1a;
}

.page-contact__cta-section {
  background-color: #1a1a1a;
  padding: 80px 20px;
  text-align: center;
}

.page-contact__cta-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__cta-button:hover {
  background-color: #e6c200;
  color: #1a1a1a;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__hero-description {
    font-size: 1.1em;
  }
  .page-contact__info-container {
    flex-direction: column;
  }
  .page-contact__info-card, .page-contact__info-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-contact__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-contact__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-contact__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__info-section, .page-contact__form-section, .page-contact__cta-section {
    padding: 50px 15px;
  }
  .page-contact__card-title, .page-contact__form-title, .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__card-description, .page-contact__form-description, .page-contact__cta-description {
    font-size: 0.95em;
  }
  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-contact__form-container {
    padding: 30px;
  }
  .page-contact__form-submit-button, .page-contact__cta-button {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.1em;
  }
  .page-contact__info-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}