/* style/index-pbv88-features.css */

/* Root variables for colors */
:root {
  --pbv88-primary-color: #11A84E;
  --pbv88-secondary-color: #22C768;
  --pbv88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --pbv88-card-bg: #11271B;
  --pbv88-background-color: #08160F;
  --pbv88-text-main: #F2FFF6;
  --pbv88-text-secondary: #A7D9B8;
  --pbv88-border-color: #2E7A4E;
  --pbv88-glow-color: #57E38D;
  --pbv88-gold-color: #F2C14E;
  --pbv88-divider-color: #1E3A2A;
  --pbv88-deep-green: #0A4B2C;
}

.page-index-pbv88-features {
  font-family: Arial, sans-serif;
  color: var(--pbv88-text-main); /* Default text color for the main content area */
  background-color: var(--pbv88-background-color); /* Matches body background */
  line-height: 1.6;
}

.page-index-pbv88-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-pbv88-features__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-pbv88-features__dark-section {
  background-color: var(--pbv88-background-color);
  color: var(--pbv88-text-main);
}

.page-index-pbv88-features__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-index-pbv88-features__dark-bg {
  background-color: var(--pbv88-deep-green);
  color: var(--pbv88-text-main);
}

.page-index-pbv88-features__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  color: var(--pbv88-text-main);
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-index-pbv88-features__section-description {
  font-size: 18px;
  color: var(--pbv88-text-secondary);
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Hero Section */
.page-index-pbv88-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--pbv88-background-color);
  overflow: hidden;
}

.page-index-pbv88-features__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
}

.page-index-pbv88-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-pbv88-features__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 60px 20px;
  text-align: center;
  background-color: var(--pbv88-background-color);
  margin-top: -100px; /* Overlap slightly with image for visual flow */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.page-index-pbv88-features__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: bold;
  color: var(--pbv88-gold-color);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-index-pbv88-features__hero-description {
  font-size: 20px;
  color: var(--pbv88-text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-pbv88-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-pbv88-features__btn-primary,
.page-index-pbv88-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-index-pbv88-features__btn-primary {
  background: var(--pbv88-button-gradient);
  color: var(--pbv88-text-main);
  border: 2px solid transparent;
}

.page-index-pbv88-features__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--pbv88-primary-color), 0.4);
}

.page-index-pbv88-features__btn-secondary {
  background: transparent;
  color: var(--pbv88-primary-color);
  border: 2px solid var(--pbv88-primary-color);
}

.page-index-pbv88-features__btn-secondary:hover {
  background: var(--pbv88-primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-index-pbv88-features__btn-large {
  padding: 18px 40px;
  font-size: 20px;
}

/* Why Choose Us Section */
.page-index-pbv88-features__why-choose-us .page-index-pbv88-features__section-title {
  color: var(--pbv88-text-main);
}

.page-index-pbv88-features__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-pbv88-features__card {
  background-color: var(--pbv88-card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-align: left;
  color: var(--pbv88-text-main);
  border: 1px solid var(--pbv88-border-color);
}

.page-index-pbv88-features__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--pbv88-gold-color);
  margin-bottom: 15px;
}

.page-index-pbv88-features__card-text {
  font-size: 16px;
  color: var(--pbv88-text-secondary);
}

/* Promotions Highlight Section */
.page-index-pbv88-features__promotions-highlight .page-index-pbv88-features__section-title {
  color: var(--pbv88-text-main);
}

.page-index-pbv88-features__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-pbv88-features__promo-card {
  background-color: var(--pbv88-card-bg);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: var(--pbv88-text-main);
  border: 1px solid var(--pbv88-border-color);
}

.page-index-pbv88-features__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-index-pbv88-features__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--pbv88-gold-color);
  margin-bottom: 10px;
}

.page-index-pbv88-features__promo-description {
  font-size: 15px;
  color: var(--pbv88-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-pbv88-features__promo-card .page-index-pbv88-features__btn-primary,
.page-index-pbv88-features__promo-card .page-index-pbv88-features__btn-secondary {
  margin-top: auto; /* Push button to bottom */
  align-self: flex-start;
  width: auto;
  padding: 10px 20px;
  font-size: 16px;
}

/* Guide Section */
.page-index-pbv88-features__guide-section .page-index-pbv88-features__section-title {
  color: var(--pbv88-text-main);
}

.page-index-pbv88-features__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-pbv88-features__guide-item {
  background-color: var(--pbv88-card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-align: left;
  position: relative;
  border: 1px solid var(--pbv88-border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-pbv88-features__guide-step-num {
  font-size: 48px;
  font-weight: bold;
  color: var(--pbv88-primary-color);
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.2;
}

.page-index-pbv88-features__guide-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--pbv88-gold-color);
  margin-bottom: 10px;
  margin-top: 0;
}

.page-index-pbv88-features__guide-text {
  font-size: 16px;
  color: var(--pbv88-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-pbv88-features__guide-item .page-index-pbv88-features__btn-primary,
.page-index-pbv88-features__guide-item .page-index-pbv88-features__btn-secondary {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 16px;
}

/* Products Section */
.page-index-pbv88-features__products-section .page-index-pbv88-features__section-title {
  color: var(--pbv88-text-main);
}

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

.page-index-pbv88-features__product-card {
  background-color: var(--pbv88-card-bg);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: var(--pbv88-text-main);
  border: 1px solid var(--pbv88-border-color);
}

.page-index-pbv88-features__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-index-pbv88-features__product-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--pbv88-gold-color);
  margin-bottom: 10px;
}

.page-index-pbv88-features__product-text {
  font-size: 15px;
  color: var(--pbv88-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-pbv88-features__product-card .page-index-pbv88-features__btn-primary {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 16px;
}

/* FAQ Section */
.page-index-pbv88-features__faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-index-pbv88-features__faq-section .page-index-pbv88-features__section-title {
  color: #333333;
}

.page-index-pbv88-features__faq-list {
  max-width: 800px;
  width: 100%;
  margin-top: 50px;
  text-align: left;
}

.page-index-pbv88-features__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-pbv88-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #f0f0f0;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  list-style: none;
}

.page-index-pbv88-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-pbv88-features__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--pbv88-primary-color);
  transition: transform 0.3s ease;
}

.page-index-pbv88-features__faq-item[open] .page-index-pbv88-features__faq-toggle {
  transform: rotate(45deg);
}

.page-index-pbv88-features__faq-answer {
  padding: 15px 25px 20px;
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

.page-index-pbv88-features__faq-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Conclusion Section */
.page-index-pbv88-features__conclusion-section .page-index-pbv88-features__section-title {
  color: var(--pbv88-text-main);
}

.page-index-pbv88-features__conclusion-section .page-index-pbv88-features__section-description {
  color: var(--pbv88-text-secondary);
}

.page-index-pbv88-features__text-center {
  text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-index-pbv88-features__container {
    padding: 0 15px;
  }

  .page-index-pbv88-features__section {
    padding: 40px 0;
  }

  .page-index-pbv88-features__hero-content {
    padding: 40px 15px;
    margin-top: -60px;
  }

  .page-index-pbv88-features__main-title {
    font-size: 32px;
  }

  .page-index-pbv88-features__hero-description {
    font-size: 16px;
  }

  .page-index-pbv88-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-index-pbv88-features__btn-primary,
  .page-index-pbv88-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-index-pbv88-features__btn-large {
    font-size: 18px;
    padding: 15px 30px;
  }

  .page-index-pbv88-features__grid-2-cols,
  .page-index-pbv88-features__grid-3-cols,
  .page-index-pbv88-features__guide-steps,
  .page-index-pbv88-features__product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-pbv88-features__card,
  .page-index-pbv88-features__promo-card,
  .page-index-pbv88-features__guide-item,
  .page-index-pbv88-features__product-card,
  .page-index-pbv88-features__faq-item {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-pbv88-features__promo-image,
  .page-index-pbv88-features__product-image,
  .page-index-pbv88-features__faq-image,
  .page-index-pbv88-features__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-pbv88-features__faq-section .page-index-pbv88-features__container {
    padding: 0 15px;
  }

  .page-index-pbv88-features__faq-list {
    padding: 0 15px;
  }

  .page-index-pbv88-features__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-index-pbv88-features__faq-answer {
    font-size: 15px;
    padding: 10px 20px 15px;
  }

  .page-index-pbv88-features__faq-image {
    max-width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-index-pbv88-features__section-title {
    font-size: 24px;
  }

  .page-index-pbv88-features__hero-section {
    padding-top: 10px !important;
  }
}