.page-contact {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #0F1A2B; /* Main dark background */
  line-height: 1.6;
}

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

.page-contact__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0F1A2B 0%, #2A3B50 100%); /* Dark gradient */
  color: #FFD700; /* Accent for hero title */
  position: relative;
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold accent */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 40px;
}

.page-contact__methods {
  padding: 60px 0;
  background-color: #1A2B40; /* Slightly lighter dark background */
}

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

.page-contact__method-item {
  background-color: #0F1A2B; /* Main dark background for items */
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-contact__method-text {
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold accent for primary buttons */
  color: #0F1A2B; /* Dark text on gold */
  border: 2px solid #FFD700;
}

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

.page-contact__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary buttons */
  border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #FFD700;
  color: #0F1A2B;
  transform: translateY(-2px);
}

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

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1A2B40;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
  display: block;
  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 #575f6b; /* Slightly lighter dark border */
  border-radius: 5px;
  background-color: #2A3B50;
  color: #F0F0F0;
  font-size: 1em;
}

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

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

.page-contact__submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #FFD700;
  color: #0F1A2B;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__submit-btn:hover {
  background-color: #E0B800;
  transform: translateY(-2px);
}

.page-contact__faq {
  padding: 60px 0;
  background-color: #1A2B40;
}

.page-contact__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__faq-item {
  background-color: #0F1A2B;
  border: 1px solid #575f6b;
  border-radius: 10px;
  padding: 30px;
  transition: box-shadow 0.3s ease;
}

.page-contact__faq-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__faq-answer {
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-contact__faq-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__faq-link:hover {
  text-decoration: underline;
}

.page-contact__cta {
  padding: 80px 0;
  background-color: #0F1A2B;
  text-align: center;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-contact__cta-buttons .page-contact__btn {
  margin: 0 15px;
}

.page-contact__map-section {
  padding: 60px 0;
  background-color: #1A2B40;
}

.page-contact__map-embed {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-contact__hero {
    padding: 60px 15px;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__method-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__cta-buttons .page-contact__btn {
    margin: 10px 0;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 40px 10px;
  }
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    width: calc(100% - 20px);
  }
  .page-contact__submit-btn {
    font-size: 1em;
  }
}