/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #1A1A1A; /* Deep black background */
  line-height: 1.6;
}

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

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

.page-contact-heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  text-align: center;
  margin: 60px 0 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #CC0000; /* Red accent */
  border-radius: 2px;
}

.page-contact-subheading {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-contact-text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-contact-description {
  font-size: 1.2em;
  color: #F0F0F0;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-contact-link:hover {
  color: #CC0000;
  text-decoration: underline;
}

.page-contact-cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 18px 45px;
  background: linear-gradient(90deg, #FFD700, #CC0000);
  color: #1A1A1A;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-contact-cta-button:hover {
  background: linear-gradient(90deg, #CC0000, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  color: #FFFFFF; /* White text on hover for better contrast */
}

/* Hero Section */
.page-contact.hero-section {
  background: linear-gradient(135deg, #1A1A1A, #333333);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

/* Why Contact Section */
.page-contact.why-contact-section {
  padding: 60px 20px;
  background-color: #222222;
}

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

.page-contact-feature-item {
  background-color: #2C2C2C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-contact-feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 5px;
}

/* Official Channels Section */
.page-contact.official-channels-section {
  padding: 60px 20px;
  background-color: #1A1A1A;
}

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

.page-contact-channel-item {
  background-color: #2C2C2C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact-channel-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: cover;
  border-radius: 5px;
}

.page-contact-channel-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact-channel-button:hover {
  background-color: #CC0000;
  color: #FFFFFF;
}

/* When to Contact Section */
.page-contact.when-to-contact-section {
  padding: 60px 20px;
  background-color: #222222;
}

.page-contact-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-contact-list li {
  background-color: #2C2C2C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact-list-heading {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Support Process Section */
.page-contact.support-process-section {
  padding: 60px 20px;
  background-color: #1A1A1A;
}

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

.page-contact-step-item {
  background-color: #2C2C2C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact-step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-contact.faq-section {
  padding: 60px 20px;
  background-color: #222222;
}

.page-contact-faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #2C2C2C;
  color: #FFD700;
  border: 1px solid #3A3A3A;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background-color: #3A3A3A;
  color: #FFD700;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: inherit;
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #CC0000;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #3A3A3A;
  border-radius: 0 0 8px 8px;
  color: #E0E0E0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 1.1em;
}

/* Commitment Section */
.page-contact.commitment-section {
  padding: 60px 20px;
  background-color: #1A1A1A;
}

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

.page-contact-commitment-list li {
  background-color: #2C2C2C;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-contact-commitment-list li h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 5px;
}

/* Call to Action Section */
.page-contact.call-to-action-section {
  padding: 80px 20px;
  background: linear-gradient(45deg, #1A1A1A, #333333);
  text-align: center;
  border-top: 5px solid #CC0000;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact-title {
    font-size: 2.8em;
  }
  .page-contact-heading {
    font-size: 2em;
  }
  .page-contact-subheading {
    font-size: 1.5em;
  }
  .page-contact-cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-contact-features-grid, .page-contact-channels-grid, .page-contact-process-steps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact-title {
    font-size: 2.2em;
  }
  .page-contact-heading {
    font-size: 1.8em;
    margin: 40px 0 20px;
  }
  .page-contact-subheading {
    font-size: 1.3em;
  }
  .page-contact-text, .page-contact-description, .faq-answer p {
    font-size: 1em;
  }
  .page-contact-cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-contact.hero-section, .page-contact.why-contact-section, .page-contact.official-channels-section, .page-contact.when-to-contact-section, .page-contact.support-process-section, .page-contact.faq-section, .page-contact.commitment-section, .page-contact.call-to-action-section {
    padding: 40px 15px;
  }
  .page-contact-features-grid, .page-contact-channels-grid, .page-contact-process-steps {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.8em;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-contact-feature-icon, .page-contact-channel-icon {
    width: 70px;
    height: 70px;
  }
  .page-contact-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}