/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F5F5DC; /* Light background for text, ensuring contrast */
  background-color: #0A2239; /* Main background color */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%);
  color: #FFD700;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[IMAGE:contact_hero_bg]'); /* Dynamic background image */
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

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

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

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

.page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A2239;
  border: 2px solid #FFD700;
}

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

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

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

.page-contact__info-section,
.page-contact__form-section,
.page-contact__hours-social-section,
.page-contact__map-section {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-contact__info-section {
  background-color: #1A3A5A; /* Slightly lighter dark background */
}

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

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

.page-contact__info-item {
  background-color: #0A2239;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #F5F5DC;
}

.page-contact__info-item h3 {
  color: #FFD700;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.page-contact__info-item p {
  font-size: 1.1em;
  color: #CCCCCC;
}

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold effect */
}

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

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

.page-contact__form-group label {
  display: block;
  margin-bottom: 8px;
  color: #FFD700;
  font-weight: bold;
}

.page-contact__form-group input,
.page-contact__form-group textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  background-color: #0A2239;
  color: #F5F5DC;
  font-size: 1em;
}

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

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

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

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

.page-contact__hours-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.page-contact__hours,
.page-contact__social {
  background-color: #0A2239;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #F5F5DC;
}

.page-contact__hours h2,
.page-contact__social h2 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 2em;
  text-align: center;
}

.page-contact__hours p,
.page-contact__social p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #CCCCCC;
  text-align: center;
}

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

.page-contact__social-icon img {
  width: 40px;
  height: 40px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold effect */
  transition: transform 0.3s ease;
}

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

.page-contact__map-placeholder {
  background-color: #1A3A5A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__map-image {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

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

  .page-contact__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__btn {
    width: 80%;
    margin: 0 auto;
  }

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

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

  .page-contact__form {
    padding: 30px;
  }

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

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

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

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