/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #1a1a1a; /* Dark text for contrast */
  line-height: 1.6;
}

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

.page-contact__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Increased min-height for better visual impact */
  background: linear-gradient(135deg, #FFD700 0%, #00BFFF 100%); /* Gold to Blue gradient */
  color: #fff; /* White text on gradient background */
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  border-bottom: 5px solid #FFD700; /* Gold border for separation */
}

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

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-contact__title {
  font-size: 3.2em; /* Larger font size */
  margin-bottom: 20px;
  color: #fff; /* White title for contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f8ff; /* Slightly off-white for subtitle */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-contact__section {
  padding: 60px 0;
  text-align: center;
}

.page-contact__section:nth-of-type(even) {
  background-color: #f8f8f8; /* Light gray background for alternating sections */
}

.page-contact__heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #00BFFF; /* Blue heading for contrast */
  position: relative;
  padding-bottom: 10px;
}

.page-contact__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-contact__description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #444; /* Darker gray for description */
}

.page-contact__contact-info {
  background-color: #f8f8f8;
}

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

.page-contact__info-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #eee;
}

.page-contact__info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__info-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-contact__info-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #00BFFF; /* Blue title */
}

.page-contact__info-text {
  font-size: 1em;
  margin-bottom: 20px;
  color: #555;
  flex-grow: 1;
}

.page-contact__link {
  display: inline-block;
  background-color: #FFD700; /* Gold link background */
  color: #1a1a1a; /* Dark text on gold */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-contact__link:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-contact__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-contact__faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #00BFFF; /* Blue accent */
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #00BFFF; /* Blue question */
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-contact__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700; /* Gold plus sign */
  transition: transform 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-question::after {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  font-size: 1em;
  color: #333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-contact__map-section {
  background-color: #f0f8ff; /* Very light blue background */
}

.page-contact__map-placeholder {
  width: 100%;
  height: 350px;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-contact__address {
  font-size: 1.1em;
  margin-top: 20px;
  color: #333;
  font-weight: bold;
}

.page-contact__cta {
  background: linear-gradient(135deg, #00BFFF 0%, #0086b3 100%); /* Darker blue gradient for CTA */
  color: #fff;
  padding: 80px 0;
  border-top: 5px solid #FFD700; /* Gold border */
}

.page-contact__cta-content {
  max-width: 900px;
}

.page-contact__heading--white {
  color: #fff; /* White heading on dark blue background */
}

.page-contact__heading--white::after {
  background-color: #FFD700; /* Gold underline */
}

.page-contact__description--white {
  color: #f0f8ff; /* Off-white description */
}

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

.page-contact__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-contact__btn--primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__btn--secondary {
  background-color: transparent;
  color: #fff; /* White text on dark blue background */
  border: 2px solid #fff; /* White border */
}

.page-contact__btn--secondary:hover {
  background-color: #fff;
  color: #00BFFF; /* Blue text on white hover */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
}

.page-contact .highlight {
  color: #FFD700; /* Gold highlight */
  font-weight: bold;
}

.page-contact__hero .highlight {
  color: #e0f7fa; /* Lighter highlight on dark background */
}

.page-contact__cta .highlight {
  color: #FFD700; /* Gold highlight on dark blue background */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact__title {
    font-size: 2.5em;
  }
  .page-contact__heading {
    font-size: 2em;
  }
  .page-contact__info-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact__hero {
    min-height: 350px;
    padding: 40px 15px;
  }
  .page-contact__title {
    font-size: 2em;
  }
  .page-contact__subtitle {
    font-size: 1.1em;
  }
  .page-contact__section {
    padding: 40px 0;
  }
  .page-contact__heading {
    font-size: 1.8em;
  }
  .page-contact__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__cta {
    padding: 60px 0;
  }
  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-contact__title {
    font-size: 1.8em;
  }
  .page-contact__subtitle {
    font-size: 1em;
  }
  .page-contact__heading {
    font-size: 1.5em;
  }
  .page-contact__info-item {
    padding: 20px;
  }
  .page-contact__info-title {
    font-size: 1.5em;
  }
  .page-contact__info-icon {
    width: 60px;
    height: 60px;
  }
  .page-contact__btn {
    font-size: 1em;
    padding: 12px 25px;
    width: 90%;
  }
}