.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-contact__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Light gray for subtitle */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-contact__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #FFD700; /* Gold for section titles */
  font-weight: bold;
}

.page-contact__methods {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-contact__method-card {
  background-color: #1A3A60; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
}

.page-contact__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for method titles */
  margin-bottom: 15px;
}

.page-contact__method-description {
  font-size: 1.1em;
  color: #B0B0B0; /* Lighter gray for descriptions */
  margin-bottom: 25px;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-contact__form-section {
  padding: 80px 0;
  background-color: #0A2342;
  border-top: 1px solid #1A3A60;
}

.page-contact__form-description {
  text-align: center;
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #54657b; /* Slightly lighter dark blue border */
  border-radius: 8px;
  background-color: #0A2342; /* Dark blue input background */
  color: #E0E0E0;
  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: #8899AA;
}

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

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

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

.page-contact__submit-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-contact__social-media {
  padding: 80px 0;
  background-color: #0A2342;
  border-top: 1px solid #1A3A60;
  text-align: center;
}

.page-contact__social-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFD700; /* Gold for social links */
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-link:hover {
  color: #E6C200;
  transform: translateY(-3px);
}

.page-contact__social-icon {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5)); /* Gold glow for social icons */
}

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

  .page-contact__subtitle,
  .page-contact__form-description,
  .page-contact__social-description {
    font-size: 1em;
  }

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

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

  .page-contact__hero,
  .page-contact__methods,
  .page-contact__form-section,
  .page-contact__social-media {
    padding: 60px 0;
  }

  .page-contact__form {
    padding: 30px;
  }
}

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

  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-contact__method-description {
    font-size: 0.95em;
  }

  .page-contact__social-links {
    flex-direction: column;
    gap: 20px;
  }
}