/* style/mobile-app-exclusive-features.css */

/* Base Styles */
.page-mobile-app-exclusive-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #121212; /* Inherited from shared.css, ensure contrast */
  padding-top: 10px; /* Fixed navigation bar spacing */
}

.page-mobile-app-exclusive-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-mobile-app-exclusive-features__section {
  padding: 60px 0;
}

.page-mobile-app-exclusive-features__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-mobile-app-exclusive-features__section-title .highlight {
  color: #ffc107; /* Highlight color for keywords */
}

.page-mobile-app-exclusive-features__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #cccccc;
}

.page-mobile-app-exclusive-features .highlight {
  color: #ffc107;
  font-weight: bold;
}

/* Buttons */
.page-mobile-app-exclusive-features__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-mobile-app-exclusive-features__btn--primary {
  background-color: #007bff;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-mobile-app-exclusive-features__btn--primary:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
  transform: translateY(-2px);
}

.page-mobile-app-exclusive-features__btn--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  margin-left: 20px;
}

.page-mobile-app-exclusive-features__btn--secondary:hover {
  background-color: #ffc107;
  color: #121212;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  transform: translateY(-2px);
}

.page-mobile-app-exclusive-features__btn--large {
  padding: 16px 32px;
  font-size: 20px;
}

.page-mobile-app-exclusive-features__btn--xlarge {
  padding: 18px 36px;
  font-size: 22px;
}

/* Hero Banner */
.page-mobile-app-exclusive-features__hero-banner {
  background: linear-gradient(135deg, #004d99, #007bff, #cc9900);
  padding: 80px 0 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-mobile-app-exclusive-features__main-title {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-mobile-app-exclusive-features__subtitle {
  font-size: 20px;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-mobile-app-exclusive-features__cta-buttons {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-mobile-app-exclusive-features__hero-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(40px);
    position: relative;
    z-index: 1;
}

.page-mobile-app-exclusive-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Grid Layout */
.page-mobile-app-exclusive-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Card Styles */
.page-mobile-app-exclusive-features__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark bg */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-mobile-app-exclusive-features__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-mobile-app-exclusive-features__card-image-wrapper {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-mobile-app-exclusive-features__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-mobile-app-exclusive-features__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-mobile-app-exclusive-features__card-text {
  font-size: 16px;
  color: #cccccc;
  flex-grow: 1;
}

/* Download Guide */
.page-mobile-app-exclusive-features__download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-mobile-app-exclusive-features__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-mobile-app-exclusive-features__step-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    background-color: rgba(255, 193, 7, 0.15); /* Light highlight background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-mobile-app-exclusive-features__step-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.page-mobile-app-exclusive-features__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-mobile-app-exclusive-features__step-text {
  font-size: 16px;
  color: #cccccc;
}

.page-mobile-app-exclusive-features__qr-code-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.page-mobile-app-exclusive-features__qr-code {
    width: 250px;
    height: 250px;
    border: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto 20px auto;
}

.page-mobile-app-exclusive-features__qr-text {
    font-size: 18px;
    color: #e0e0e0;
    font-weight: bold;
}

/* Final CTA */
.page-mobile-app-exclusive-features__final-cta {
  background: linear-gradient(90deg, #0056b3, #007bff);
  text-align: center;
  padding: 80px 0;
  border-radius: 15px;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-mobile-app-exclusive-features__final-cta .page-mobile-app-exclusive-features__section-title {
  color: #ffffff;
}

.page-mobile-app-exclusive-features__final-cta .page-mobile-app-exclusive-features__section-description {
  color: #e0e0e0;
  margin-bottom: 50px;
}

/* FAQ Section */
.page-mobile-app-exclusive-features__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-mobile-app-exclusive-features__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-mobile-app-exclusive-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-mobile-app-exclusive-features__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-mobile-app-exclusive-features__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-mobile-app-exclusive-features__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffc107;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-mobile-app-exclusive-features__faq-item.active .page-mobile-app-exclusive-features__faq-toggle {
  color: #007bff;
  transform: rotate(45deg);
}

.page-mobile-app-exclusive-features__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #cccccc;
  font-size: 16px;
}

.page-mobile-app-exclusive-features__faq-item.active .page-mobile-app-exclusive-features__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to accommodate content */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 8px 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-mobile-app-exclusive-features__main-title {
    font-size: 40px;
  }

  .page-mobile-app-exclusive-features__subtitle {
    font-size: 18px;
  }

  .page-mobile-app-exclusive-features__section-title {
    font-size: 30px;
  }

  .page-mobile-app-exclusive-features__card-title {
    font-size: 20px;
  }

  .page-mobile-app-exclusive-features__card-image-wrapper {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-mobile-app-exclusive-features {
    padding-top: 10px; /* Ensure spacing for fixed header on mobile */
  }

  .page-mobile-app-exclusive-features__hero-banner {
    padding: 60px 0 30px 0;
  }

  .page-mobile-app-exclusive-features__main-title {
    font-size: 32px;
  }

  .page-mobile-app-exclusive-features__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-mobile-app-exclusive-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .page-mobile-app-exclusive-features__btn--secondary {
    margin-left: 0;
  }

  .page-mobile-app-exclusive-features__hero-image-wrapper {
    transform: translateY(20px);
  }

  .page-mobile-app-exclusive-features__section {
    padding: 40px 0;
  }

  .page-mobile-app-exclusive-features__section-title {
    font-size: 26px;
  }

  .page-mobile-app-exclusive-features__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-mobile-app-exclusive-features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-mobile-app-exclusive-features__card {
    padding: 20px;
  }

  .page-mobile-app-exclusive-features__card-image-wrapper {
    height: 150px;
  }

  .page-mobile-app-exclusive-features__card-title {
    font-size: 18px;
  }

  .page-mobile-app-exclusive-features__card-text {
    font-size: 14px;
  }

  .page-mobile-app-exclusive-features__download-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-mobile-app-exclusive-features__step-title {
    font-size: 18px;
  }

  .page-mobile-app-exclusive-features__step-text {
    font-size: 14px;
  }

  .page-mobile-app-exclusive-features__qr-code {
    width: 200px;
    height: 200px;
  }

  .page-mobile-app-exclusive-features__qr-text {
    font-size: 16px;
  }

  .page-mobile-app-exclusive-features__btn--xlarge {
    font-size: 18px;
    padding: 15px 30px;
  }

  .page-mobile-app-exclusive-features__faq-question {
    padding: 15px 20px;
  }

  .page-mobile-app-exclusive-features__faq-question h3 {
    font-size: 16px;
  }

  .page-mobile-app-exclusive-features__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }

  .page-mobile-app-exclusive-features__faq-answer {
    padding: 0 20px;
  }

  .page-mobile-app-exclusive-features__faq-item.active .page-mobile-app-exclusive-features__faq-answer {
    padding: 15px 20px !important;
  }

  /* Image responsiveness for all images */
  .page-mobile-app-exclusive-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-mobile-app-exclusive-features__container,
  .page-mobile-app-exclusive-features__hero-banner,
  .page-mobile-app-exclusive-features__section,
  .page-mobile-app-exclusive-features__card,
  .page-mobile-app-exclusive-features__step-item,
  .page-mobile-app-exclusive-features__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-mobile-app-exclusive-features__hero-image-wrapper,
  .page-mobile-app-exclusive-features__card-image-wrapper,
  .page-mobile-app-exclusive-features__step-icon-wrapper,
  .page-mobile-app-exclusive-features__qr-code-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}