/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #f8f8f8;
}

.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000080; /* Dark blue background for hero section */
  color: #ffffff;
  padding: 0;
}

.page-contact__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  filter: brightness(0.7); /* Dims the image slightly to make text more readable, NOT changing color */
}

.page-contact__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

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

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__info-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.page-contact__info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__info-title {
  font-size: 2.2em;
  color: #000080;
  margin-bottom: 20px;
}

.page-contact__info-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
}

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

.page-contact__channel-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-contact__channel-icon {
  width: 250px; /* Ensures minimum 200px width */
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-contact__channel-name {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
}

.page-contact__channel-description {
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__channel-button {
  display: inline-block;
  background-color: #000080; /* Dark blue button */
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-contact__channel-button:hover {
  background-color: #000066;
}

.page-contact__form-section {
  padding: 60px 20px;
  background-color: #000080; /* Dark blue background for form section */
  color: #ffffff;
}

.page-contact__form-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-contact__form-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-contact__form-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-contact__contact-form {
  background-color: #1a1a90; /* Slightly lighter blue for form background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #FFD700;
  border-radius: 6px;
  background-color: #000066;
  color: #ffffff;
  font-size: 1em;
}

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

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

.page-contact__form-submit-button {
  display: block;
  width: 100%;
  background-color: #FFD700;
  color: #000080;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__faq-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-contact__faq-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-contact__faq-title {
  font-size: 2.2em;
  color: #000080;
  margin-bottom: 20px;
}

.page-contact__faq-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
}

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

.page-contact__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-contact__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  padding: 10px 0;
}

.page-contact__faq-answer a {
  color: #000080;
  text-decoration: underline;
}

.page-contact__faq-answer a:hover {
  color: #FFD700;
}

.page-contact__faq-action {
  margin-top: 40px;
}

.page-contact__faq-action-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-contact__faq-action-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__faq-action-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

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

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

  .page-contact__info-title,
  .page-contact__form-title,
  .page-contact__faq-title {
    font-size: 1.8em;
  }

  .page-contact__contact-form {
    padding: 30px;
  }

  .page-contact__hero-image {
    max-height: 300px;
  }
  
  .page-contact__channel-icon {
    width: 200px; /* Ensure min 200px on mobile too */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.6em;
  }

  .page-contact__hero-description {
    font-size: 0.9em;
  }

  .page-contact__hero-button,
  .page-contact__channel-button,
  .page-contact__form-submit-button,
  .page-contact__faq-action-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-contact__contact-form {
    padding: 20px;
  }
}