.page-contact {
  color: #ffffff; /* Light text for dark body background */
  background-color: #000; /* Ensure main content background matches body */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  font-family: Arial, sans-serif;
}

.page-contact__hero-section {
  position: relative;
  padding: 80px 20px 40px;
  text-align: center;
  overflow: hidden;
  background-color: #0A1931;
}

.page-contact__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-contact__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-contact__button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

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

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

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

.page-contact__methods-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #0A1931;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-contact__methods-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #cccccc;
}

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

.page-contact__method-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__method-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-contact__method-icon {
  width: 250px;
  height: 187.5px;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.page-contact__method-text {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-contact__button--card {
  padding: 12px 25px;
  font-size: 1em;
  background-color: #FFD700;
  color: #0A1931;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__button--card:hover {
  background-color: #e6c200;
}

.page-contact__location-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
}

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

.page-contact__location-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #cccccc;
}

.page-contact__location-details {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  display: inline-block;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__detail-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-contact__detail-item strong {
  color: #FFD700;
}

.page-contact__cta-banner {
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%);
  padding: 60px 20px;
  margin-top: 60px;
  text-align: center;
  border-top: 5px solid #FFD700;
  border-bottom: 5px solid #FFD700;
}

.page-contact__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-contact__button--cta {
  background-color: #FFD700;
  color: #0A1931;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

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

  .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__methods-grid {
    grid-template-columns: 1fr;
  }

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

  .page-contact__method-icon {
    width: 200px;
    height: 150px;
  }

  .page-contact__hero-image,
  .page-contact__method-card img { 
    max-width: 100%; 
    height: auto; 
  }

  .page-contact__hero-section,
  .page-contact__methods-section,
  .page-contact__location-section,
  .page-contact__cta-banner {
    padding: 30px 15px;
  }

  /* Ensure all images within .page-contact are responsive and not smaller than 200px */
  .page-contact img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-contact__method-icon {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Adjust width to fill card, maintaining min-size */
    height: auto; /* Adjust height automatically */
  }
}

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

  .page-contact__methods-title,
  .page-contact__location-title,
  .page-contact__cta-title {
    font-size: 1.6em;
  }

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

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

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

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