/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

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

/* Hero Section */
.page-contact__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a414d 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e5dfd3;
}

/* Section Titles */
.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-contact__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  color: #c0c0c0;
}

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

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-contact__btn--secondary {
  background-color: #3a414d;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

.page-contact__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-contact__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin: 0 15px;
}

/* Contact Methods Section */
.page-contact__methods-section {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-contact__method-card {
  background-color: #2a313d;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a414d;
}

.page-contact__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

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

.page-contact__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__card-text {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 30px;
  min-height: 90px; /* Ensure consistent card height */
}

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

.page-contact__social-icon-link {
  display: block;
  width: 40px;
  height: 40px;
  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-link:hover {
  transform: scale(1.1);
  background-color: #e6c200;
}

.page-contact__social-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

/* FAQ Section */
.page-contact__faq-section {
  background-color: #1A202C;
  padding: 80px 0;
  border-top: 1px solid #3a414d;
}

.page-contact__accordion-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-contact__accordion-item {
  background-color: #2a313d;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3a414d;
}

.page-contact__accordion-header {
  width: 100%;
  background-color: #3a414d;
  color: #FFD700;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-contact__accordion-header:hover {
  background-color: #4a515e;
}

.page-contact__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-contact__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-contact__accordion-content {
  padding: 0 25px;
  background-color: #2a313d;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-contact__accordion-content p {
  padding: 15px 0;
  color: #c0c0c0;
  font-size: 1em;
}

.page-contact__accordion-content.active {
  max-height: 300px; /* Adjust as needed */
  padding-bottom: 25px;
}

/* Commitment Section */
.page-contact__commitment-section {
  background-color: #1A202C;
  padding: 80px 0;
  border-top: 1px solid #3a414d;
}

.page-contact__commitment-section .page-contact__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-contact__commitment-content {
  flex: 1;
  min-width: 300px;
}

.page-contact__commitment-content .page-contact__section-title,
.page-contact__commitment-content .page-contact__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-contact__commitment-content .page-contact__section-title {
  padding-top: 0;
}

.page-contact__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-contact__commitment-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e5dfd3;
}

.page-contact__list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.7));
}

.page-contact__commitment-text {
  margin-top: 30px;
  color: #c0c0c0;
  font-size: 1em;
}

.page-contact__commitment-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-contact__image-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Call to Action Section */
.page-contact__cta-section {
  background-color: #2a313d;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #3a414d;
}

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

.page-contact__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__small-text {
  font-size: 0.9em;
  color: #c0c0c0;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__method-card {
    min-height: auto;
  }
  .page-contact__commitment-section .page-contact__container {
    flex-direction: column;
  }
  .page-contact__commitment-content,
  .page-contact__commitment-image {
    text-align: center;
  }
  .page-contact__commitment-content .page-contact__section-title,
  .page-contact__commitment-content .page-contact__section-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 80px 0;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description,
  .page-contact__section-description,
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__method-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__cta-buttons {
    flex-direction: column;
  }
  .page-contact__btn--large {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.6em;
  }
  .page-contact__method-card {
    padding: 20px;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__btn--large {
    width: 100%;
  }
}