/* style/index-mobile-experience.css */

/* Base Styles & Typography */
.page-index-mobile-experience {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for readability */
  background-color: #f8f9fa; /* Light background */
}

.page-index-mobile-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-mobile-experience__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-mobile-experience__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-index-mobile-experience__section-title {
  font-size: 2.5em;
  color: #007bff; /* Main brand color */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-index-mobile-experience__section-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Call to Action Buttons */
.page-index-mobile-experience__cta-button {
  display: inline-block;
  background-color: #007bff; /* Main brand color */
  color: #ffffff; /* White text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-mobile-experience__cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-index-mobile-experience__cta-button--secondary {
  background-color: #6c757d; /* Secondary neutral color */
  color: #ffffff;
  margin-left: 15px;
}

.page-index-mobile-experience__cta-button--secondary:hover {
  background-color: #545b62;
}

.page-index-mobile-experience__cta-button--highlight {
  background-color: #ffc107; /* Auxiliary brand color */
  color: #333333; /* Dark text for contrast */
}

.page-index-mobile-experience__cta-button--highlight:hover {
  background-color: #e0a800;
}

/* Hero Section */
.page-index-mobile-experience__hero {
  background: linear-gradient(135deg, #007bff 0%, #3399ff 100%); /* Gradient with main color */
  color: #ffffff;
  padding: 100px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-index-mobile-experience__hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.page-index-mobile-experience__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff; /* White text for contrast */
}

.page-index-mobile-experience__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #e0e0e0; /* Lighter white for readability */
}

.page-index-mobile-experience__hero-image-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 700px;
  z-index: 0;
}

.page-index-mobile-experience__hero-image {
  width: 100%;
  height: auto;
  display: block;
  transform: translateX(10%);
}

/* Features Section */
.page-index-mobile-experience__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-mobile-experience__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-index-mobile-experience__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-mobile-experience__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index-mobile-experience__feature-heading {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-mobile-experience__feature-text {
  font-size: 1em;
  color: #666666;
}

/* App Features Section */
.page-index-mobile-experience__app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-mobile-experience__app-feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
}

.page-index-mobile-experience__app-feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page-index-mobile-experience__app-feature-card h3,
.page-index-mobile-experience__app-feature-card p {
  padding: 15px 20px;
}

.page-index-mobile-experience__card-title {
  font-size: 1.4em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-mobile-experience__card-text {
  font-size: 0.95em;
  color: #666666;
}

/* Download Guide Section */
.page-index-mobile-experience__download-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-mobile-experience__download-platform {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 450px;
  text-align: left;
}

.page-index-mobile-experience__platform-heading {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 25px;
  text-align: center;
}

.page-index-mobile-experience__download-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-mobile-experience__download-steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444444;
}

.page-index-mobile-experience__step-number {
  background-color: #ffc107; /* Auxiliary color */
  color: #333333;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  min-width: 28px; /* Ensure consistent size */
  min-height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9em;
  margin-right: 15px;
}

.page-index-mobile-experience__download-qr-code {
  width: 150px;
  height: 150px;
  display: block;
  margin: 25px auto 0 auto;
  border: 5px solid #f0f0f0;
  border-radius: 5px;
}

/* Browser Experience Section */
.page-index-mobile-experience__browser-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-index-mobile-experience__browser-benefits li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444444;
  display: flex;
  align-items: center;
}

.page-index-mobile-experience__bullet-icon {
  color: #28a745; /* Green for success/check */
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 10px;
}

.page-index-mobile-experience__browser-image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.page-index-mobile-experience__browser-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Offers Section */
.page-index-mobile-experience__offer-highlight {
  background-color: #fefae0; /* Light yellow background */
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
}

.page-index-mobile-experience__offer-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-index-mobile-experience__offer-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-mobile-experience__offer-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-index-mobile-experience__offer-note {
  font-style: italic;
  color: #777777;
  margin-top: 30px;
}

/* FAQ Section */
.page-index-mobile-experience__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
  padding: 20px 25px;
  transition: border-color 0.3s ease;
}

.page-index-mobile-experience__faq-item:hover {
  border-color: #007bff;
}

.page-index-mobile-experience__faq-question {
  font-size: 1.25em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-index-mobile-experience__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-top: 0;
  margin-bottom: 0;
  display: none; /* Hidden by default, JS will toggle */
}

/* Final CTA Section */
.page-index-mobile-experience__cta-final {
  background: linear-gradient(90deg, #007bff, #0056b3); /* Darker blue gradient */
  color: #ffffff;
  padding: 80px 0;
}

.page-index-mobile-experience__cta-final-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.page-index-mobile-experience__cta-final-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index-mobile-experience__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-mobile-experience__hero-image-wrapper {
    position: static;
    transform: none;
    width: 80%;
    margin: 40px auto 0 auto;
  }

  .page-index-mobile-experience__hero-content {
    max-width: 100%;
    text-align: center;
  }

  .page-index-mobile-experience__hero-title {
    font-size: 2.8em;
  }

  .page-index-mobile-experience__hero-description {
    font-size: 1.1em;
  }

  .page-index-mobile-experience__feature-grid,
  .page-index-mobile-experience__app-features-grid {
    grid-template-columns: 1fr;
  }

  .page-index-mobile-experience__download-platforms {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-index-mobile-experience__section-title {
    font-size: 2em;
  }

  .page-index-mobile-experience__hero-title {
    font-size: 2.5em;
  }

  .page-index-mobile-experience__hero {
    padding: 60px 0;
  }

  .page-index-mobile-experience__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-mobile-experience__cta-button--secondary {
    margin-left: 0;
  }

  .page-index-mobile-experience__cta-final-title {
    font-size: 2.2em;
  }
  
  .page-index-mobile-experience__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 576px) {
  .page-index-mobile-experience__hero-title {
    font-size: 2em;
  }

  .page-index-mobile-experience__hero-description {
    font-size: 1em;
  }

  .page-index-mobile-experience__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-index-mobile-experience__feature-item,
  .page-index-mobile-experience__app-feature-card,
  .page-index-mobile-experience__download-platform {
    padding: 20px;
  }

  .page-index-mobile-experience__section-title {
    font-size: 1.8em;
  }

  .page-index-mobile-experience__offer-title {
    font-size: 1.6em;
  }
}