.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a2e; /* Dark background */
}

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #2e4a8c 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700; /* Golden text for contrast */
}

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

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

.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;
}

.page-contact__hero-section > .page-contact__container {
  position: relative;
  z-index: 1;
}

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Golden button */
  color: #0A2463; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-contact__btn--secondary {
  background-color: #0A2463; /* Dark blue button */
  color: #FFD700; /* Golden text */
  border: 1px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #1a3c7c;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(10, 36, 99, 0.6);
}

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

.page-contact__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #0A2463; /* Main brand color */
}

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

.page-contact__info-card {
  background-color: #1a3c7c; /* Slightly lighter blue for cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact__info-card-text {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-contact__info-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

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

.page-contact__form-section {
  padding: 80px 0;
  background-color: #1a1a2e; /* Dark background */
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #0A2463; /* Main brand color for form */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #FFD700;
  font-size: 1.1em;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #546692; /* Lighter blue border */
  border-radius: 8px;
  background-color: #2e4a8c; /* Slightly lighter background for inputs */
  color: #f0f0f0;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-contact__social-section {
  padding: 80px 0;
  background-color: #0A2463; /* Main brand color */
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-contact__social-link {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #1a3c7c; /* Lighter blue for social icons */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__social-link:hover {
  background-color: #FFD700;
  transform: translateY(-5px) scale(1.05);
}

.page-contact__social-link:hover img {
  filter: invert(1) brightness(0.5); /* Make icon dark on hover */
}

.page-contact__social-icon {
  width: 35px;
  height: 35px;
  filter: invert(1) brightness(2); /* Make icon light */
}

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

  .page-contact__hero-description {
    font-size: 1em;
  }

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

  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__form {
    padding: 30px;
  }

  .page-contact__social-links {
    flex-wrap: wrap;
  }
}

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

  .page-contact__hero-description {
    font-size: 0.9em;
  }

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

  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-contact__info-card-title {
    font-size: 1.5em;
  }

  .page-contact__info-icon {
    width: 50px;
    height: 50px;
  }

  .page-contact__social-link {
    width: 50px;
    height: 50px;
  }

  .page-contact__social-icon {
    width: 30px;
    height: 30px;
  }
}