/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A2C4A; /* Main dark background */
}

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

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

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

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #C0C0C0;
}

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

.page-contact__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 30px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.page-contact__info-section {
  padding: 60px 0;
  background-color: #0A2C4A;
}

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

.page-contact__method-card {
  background-color: #1A4D7A;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
  background-color: #2A5E8C;
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

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

.page-contact__method-text {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 15px;
}

.page-contact__method-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 8px 15px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__method-link:hover {
  background-color: #FFD700;
  color: #0A2C4A;
}

.page-contact__btn-chat {
  background-color: #FFD700;
  color: #0A2C4A;
  border: none;
}

.page-contact__btn-chat:hover {
  background-color: #e6c200;
  color: #0A2C4A;
}

.page-contact__form-section {
  padding: 60px 0;
  background-color: #0A2C4A;
}

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #0A2C4A;
  border-radius: 8px;
  background-color: #0A2C4A;
  color: #E0E0E0;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__submit-btn {
  display: block;
  width: 100%;
  padding: 15px 25px;
  background-color: #FFD700;
  color: #0A2C4A;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #0A2C4A;
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-contact__faq-item {
  background-color: #1A4D7A;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

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

.page-contact__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding-top: 15px;
}

.page-contact__cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%);
  text-align: center;
  color: #0A2C4A; /* Dark text for light background */
}

.page-contact__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__cta-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-contact__cta-title {
  font-size: 2.8em;
  color: #0A2C4A;
  margin-bottom: 20px;
}

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
}

.page-contact__cta-btn {
  display: inline-block;
  background-color: #0A2C4A;
  color: #FFD700;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-btn:hover {
  background-color: #1A4D7A;
  transform: translateY(-3px);
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-contact__form {
    padding: 30px;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__cta-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__method-title {
    font-size: 1.5em;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__faq-question {
    font-size: 1.2em;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
}