/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-contact a {
  text-decoration: none;
  color: #DC143C;
  transition: color 0.3s ease;
}

.page-contact a:hover {
  color: #DC143C;
  text-decoration: underline;
}

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

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

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-contact__hero > * {
  position: relative;
  z-index: 2;
}

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

.page-contact__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

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

.page-contact__section:nth-child(even) {
  background-color: #f1f1f1;
}

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

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

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

.page-contact__card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-contact__card-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.page-contact__icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

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

.page-contact__card-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__email-address, .page-contact__phone-number {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

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

.page-contact__btn--primary {
  background-color: #DC143C;
  color: #fff;
  box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
}

.page-contact__btn--primary:hover {
  background-color: #b30f30;
  box-shadow: 0 6px 15px rgba(220, 20, 60, 0.6);
  transform: translateY(-2px);
}

.page-contact__btn--secondary {
  background-color: #FFD700;
  color: #333;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-contact__btn--secondary:hover {
  background-color: #e6c200;
  color: #000;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.page-contact__btn--tertiary {
  background-color: #f1f1f1;
  color: #DC143C;
  border: 1px solid #DC143C;
}

.page-contact__btn--tertiary:hover {
  background-color: #DC143C;
  color: #fff;
  transform: translateY(-2px);
}

.page-contact__faq {
  background-color: #fff;
}

.page-contact__accordion {
  max-width: 900px;
  margin: 40px auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.page-contact__accordion-item {
  border-bottom: 1px solid #eee;
}

.page-contact__accordion-item:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.page-contact__accordion-header.active + .page-contact__accordion-content {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
  padding-bottom: 15px;
}

.page-contact__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-contact__list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #DC143C;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page-contact__list li strong {
  color: #DC143C;
}

.page-contact__final-cta {
  text-align: center;
  font-size: 1.2em;
  margin-top: 50px;
  color: #333;
  font-weight: bold;
}

.page-contact__cta-banner {
  background: linear-gradient(90deg, #DC143C 0%, #FFD700 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-contact__banner-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-contact__banner-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-contact__banner-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #eee;
}

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

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

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

  .page-contact__section-description {
    font-size: 1em;
  }

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

  .page-contact__card {
    padding: 25px;
  }

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

  .page-contact__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-contact__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-contact__list li {
    font-size: 1em;
  }

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

  .page-contact__banner-text {
    font-size: 1em;
  }
}

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

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

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

  .page-contact__section {
    padding: 40px 0;
  }

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

  .page-contact__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-contact__accordion-content p {
    font-size: 0.9em;
  }

  .page-contact__list li {
    font-size: 0.9em;
    padding: 15px;
  }

  .page-contact__banner-title {
    font-size: 1.6em;
  }

  .page-contact__banner-text {
    font-size: 0.9em;
  }
  .page-contact__btn {
    margin-left: 5px;
    margin-right: 5px;
  }
}