/* style/support.css */

/* Base Styles */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #1a1a2e, so text is light */
  background-color: #1a1a2e; /* Inherited from shared.css, explicitly set for consistency */
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-support__section-title,
.page-support__hero-title,
.page-support__cta-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
}

.page-support__section-description,
.page-support__hero-description,
.page-support__cta-description {
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link,
.page-support__btn-text-link,
.page-support__btn-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-support__btn-primary:hover {
  background-color: #005f2c;
  border-color: #005f2c;
}

.page-support__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-support__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #005f2c;
  border-color: #005f2c;
}

.page-support__btn-link {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-support__btn-link:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-support__btn-text-link {
  color: #017439;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
}

.page-support__btn-text-link:hover {
  color: #005f2c;
}

.page-support__btn-app {
  margin: 10px;
  min-width: 180px;
}

.page-support__btn-app .page-support__icon {
  margin-right: 10px;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  padding: 120px 0 60px 0; /* Use var(--header-offset) for top padding in JS or here */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  min-height: 600px;
  background-color: #017439; /* Brand color as background */
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-support__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Overlay to ensure text readability */
}

/* Channels Section */
.page-support__channels-section {
  padding: 80px 0;
  background-color: #ffffff; /* Light background */
  color: #333333;
}

.page-support__channels-section .page-support__section-title,
.page-support__channels-section .page-support__section-description {
  color: #333333;
}

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

.page-support__channel-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-support__channel-card:hover {
  transform: translateY(-5px);
}

.page-support__channel-icon {
  width: 100%;
  max-width: 250px; /* Adjust max-width for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__channel-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-support__channel-text {
  color: #555555;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__email-link,
.page-support__phone-link {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
}

.page-support__email-link:hover,
.page-support__phone-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #1a1a2e; /* Dark background from body */
  color: #ffffff;
}

.page-support__faq-section .page-support__section-title,
.page-support__faq-section .page-support__section-description {
  color: #ffffff;
}

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

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #017439;
}

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(45deg);
  color: #ffffff;
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

/* Safety Section */
.page-support__safety-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-support__safety-section .page-support__section-title,
.page-support__safety-section .page-support__section-description {
  color: #333333;
}

.page-support__safety-section .page-support__container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-support__safety-content {
  flex: 1;
}

.page-support__safety-image {
  flex: 1;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

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

.page-support__safety-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555555;
}

.page-support__safety-features li .page-support__icon {
  margin-right: 15px;
  font-size: 1.5em;
  color: #017439;
  min-width: 24px;
}

/* App Download Section */
.page-support__app-download-section {
  padding: 80px 0;
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-support__app-download-section .page-support__section-title,
.page-support__app-download-section .page-support__section-description {
  color: #ffffff;
}

.page-support__app-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-support__app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-support__app-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-support__why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-support__why-choose-section .page-support__section-title,
.page-support__why-choose-section .page-support__section-description {
  color: #333333;
}

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

.page-support__advantage-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-support__advantage-card .page-support__icon {
  font-size: 3em;
  color: #017439;
  margin-bottom: 20px;
}

.page-support__advantage-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-support__advantage-text {
  color: #555555;
  font-size: 0.95em;
}

/* CTA Bottom Section */
.page-support__cta-bottom-section {
  padding: 60px 0;
  background-color: #017439; /* Brand color */
  color: #ffffff;
  text-align: center;
}

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

.page-support__cta-bottom-section .page-support__cta-title {
  color: #ffffff;
}

.page-support__cta-bottom-section .page-support__cta-description {
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Icons (Placeholder, assuming a font icon library or SVG inlined) */
.page-support__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* Example for specific icons, replace with actual icon font/SVG */
}

.page-support__icon--lock {
  /* Example: background-image: url('/path/to/lock-icon.svg'); */
  /* For simplicity, using a generic visual representation */
  content: '🔒';
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
  width: auto;
  height: auto;
  font-size: 1.2em;
  color: #017439;
}
.page-support__icon--shield {
  content: '🛡️';
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
  width: auto;
  height: auto;
  font-size: 1.2em;
  color: #017439;
}
.page-support__icon--responsible {
  content: '🤝';
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
  width: auto;
  height: auto;
  font-size: 1.2em;
  color: #017439;
}
.page-support__icon--fairplay {
  content: '⚖️';
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
  width: auto;
  height: auto;
  font-size: 1.2em;
  color: #017439;
}
.page-support__icon--apple {
  content: ''; /* Placeholder for Apple logo */
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
  font-size: 1.2em;
  width: auto;
  height: auto;
  color: #ffffff;
}
.page-support__icon--android {
  content: '🤖'; /* Placeholder for Android logo */
  font-family: 'Android Emoji', 'Segoe UI Emoji', sans-serif;
  font-size: 1.2em;
  width: auto;
  height: auto;
  color: #ffffff;
}
.page-support__icon--professional {
  content: '👨‍💼';
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
  width: auto;
  height: auto;
  font-size: 1.2em;
  color: #017439;
}
.page-support__icon--fast-response {
  content: '⚡';
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
  width: auto;
  height: auto;
  font-size: 1.2em;
  color: #017439;
}
.page-support__icon--effective-solution {
  content: '✅';
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
  width: auto;
  height: auto;
  font-size: 1.2em;
  color: #017439;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__safety-section .page-support__container {
    flex-direction: column;
    text-align: center;
  }
  .page-support__safety-image {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-support__safety-features li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn-primary, .page-support__btn-secondary, .page-support__btn-app {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-support__channels-section, .page-support__faq-section, .page-support__safety-section, .page-support__app-download-section, .page-support__why-choose-section, .page-support__cta-bottom-section {
    padding: 50px 0;
  }
  .page-support__section-title,
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__section-description,
  .page-support__cta-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__channels-grid {
    grid-template-columns: 1fr;
  }
  .page-support__channel-card, .page-support__advantage-card {
    padding: 25px;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-support__faq-question h3 {
    font-size: 1.1em;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px 20px 20px;
  }
  .page-support__app-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  /* Mobile image and video responsiveness */
  .page-support img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.5em;
  }
  .page-support__section-title,
  .page-support__cta-title {
    font-size: 1.5em;
  }
  .page-support__channel-title,
  .page-support__advantage-title {
    font-size: 1.3em;
  }
}