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

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

.page-contact__hero {
  position: relative;
  background-color: #0A1931;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

.page-contact__text {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 30px;
}

.page-contact__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

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

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

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

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

.page-contact__btn--submit {
  background-color: #FFD700;
  color: #0A1931;
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Contact Info Section */
.page-contact__info {
  background-color: #122847;
  padding: 60px 0;
}

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

.page-contact__detail-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-contact__detail-item:hover {
  transform: translateY(-5px);
}

.page-contact__detail-item h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-contact__detail-item p {
  color: #CCCCCC;
  margin-bottom: 10px;
}

.page-contact__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* Contact Form Section */
.page-contact__form-section {
  background-color: #0A1931;
  padding: 60px 0;
}

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

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

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

.page-contact__input,
.page-contact__textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  background-color: #0A1931;
  color: #E0E0E0;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
  border-color: #e6c200;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  outline: none;
}

.page-contact__textarea {
  resize: vertical;
}

/* Social Section */
.page-contact__social {
  background-color: #1a325b;
  padding: 60px 0;
  text-align: center;
}

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

.page-contact__social-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.page-contact__social-icon img {
  width: 30px;
  height: 30px;
  filter: invert(10%) sepia(0%) saturate(748%) hue-rotate(200deg) brightness(90%) contrast(90%); /* Darken icon for yellow bg */
}

/* Map Section */
.page-contact__map-section {
  background-color: #0A1931;
  padding: 60px 0;
  text-align: center;
}

.page-contact__map-embed {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__address {
  background-color: #122847;
  padding: 20px;
  font-size: 1.1em;
  color: #FFD700;
  font-weight: bold;
}

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

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

  .page-contact__description,
  .page-contact__text {
    font-size: 1em;
  }

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

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

  .page-contact__form {
    padding: 30px;
  }

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

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

  .page-contact__map-image {
    height: 300px;
  }
}

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

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

  .page-contact__hero {
    padding: 60px 0;
  }

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