/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

.page-contact__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F, #1A305A);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.2;
}

.page-contact__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #CCCCCC;
}

.page-contact__hero-image {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero-img {
  width: 400px;
  height: auto;
  transform: rotate(-15deg);
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-contact__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #CCCCCC;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-contact__method-card {
  background-color: #1A305A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
  background-color: #2A406A;
}

.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-description {
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-contact__social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.page-contact__social-link img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

.page-contact__social-link img:hover {
  transform: scale(1.1);
}

.page-contact__form-section {
  background-color: #0A192F;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto 60px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  padding: 12px 15px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  background-color: #1A305A;
  color: #FFFFFF;
  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: #999999;
}

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

.page-contact__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: none;
  text-align: center;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-contact__btn--primary:hover {
  background-color: #E6C200;
  color: #000000;
  transform: translateY(-3px);
}

.page-contact__btn--secondary {
  background-color: #1A305A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-contact__cta {
  padding: 80px 20px;
  background: linear-gradient(45deg, #1A305A, #0A192F);
  text-align: center;
  color: #FFFFFF;
  margin-top: 60px;
}

.page-contact__cta .page-contact__section-title {
  color: #FFD700;
}

.page-contact__cta .page-contact__description {
  color: #CCCCCC;
  margin-bottom: 40px;
}

.highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero {
    padding: 60px 20px;
  }

  .page-contact__title {
    font-size: 2.5em;
  }

  .page-contact__subtitle {
    font-size: 1.1em;
  }

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

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

  .page-contact__hero-image {
    display: none; /* Hide large image on smaller screens */
  }
}

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

  .page-contact__subtitle {
    font-size: 1em;
  }

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

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