/* style/blog-bigboss-web-features.css */

/* BEM Naming for page-blog-bigboss-web-features */
.page-blog-bigboss-web-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Default text color for dark body background */
  background-color: #08160F; /* Body background color */
}

/* Color Variables based on custom palette */
.page-blog-bigboss-web-features__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-bigboss-web-features__light-bg {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-blog-bigboss-web-features__card-bg {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-blog-bigboss-web-features__card-bg-light {
  background-color: rgba(17, 39, 27, 0.7); /* Slightly lighter card for contrast */
  color: #F2FFF6;
}

.page-blog-bigboss-web-features__text-main {
  color: #F2FFF6;
}

.page-blog-bigboss-web-features__text-secondary {
  color: #A7D9B8;
}

.page-blog-bigboss-web-features__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-blog-bigboss-web-features__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-bigboss-web-features__btn-secondary {
  background-color: transparent;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
  padding: 10px 23px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-blog-bigboss-web-features__btn-secondary:hover {
  background-color: #2E7A4E;
  color: #ffffff;
}

/* Hero Section */
.page-blog-bigboss-web-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* Small top padding */
  box-sizing: border-box;
}

.page-blog-bigboss-web-features__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-blog-bigboss-web-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-blog-bigboss-web-features__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

.page-blog-bigboss-web-features__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
  letter-spacing: -0.02em;
}

.page-blog-bigboss-web-features__hero-description {
  font-size: 1.15em;
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-bigboss-web-features__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-bigboss-web-features__cta-buttons--center {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Content Area */
.page-blog-bigboss-web-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.page-blog-bigboss-web-features__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F2FFF6;
}

.page-blog-bigboss-web-features__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-blog-bigboss-web-features__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-blog-bigboss-web-features__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-bigboss-web-features__list-item {
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-blog-bigboss-web-features__numbered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

/* Feature Card Grid */
.page-blog-bigboss-web-features__feature-card-grid,
.page-blog-bigboss-web-features__promotions-grid,
.page-blog-bigboss-web-features__security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-bigboss-web-features__card {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
  height: 100%; /* Ensure cards have equal height */
}

.page-blog-bigboss-web-features__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-bigboss-web-features__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-bigboss-web-features__card-description {
  font-size: 1em;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-bigboss-web-features__card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-bigboss-web-features__card-list-item {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-blog-bigboss-web-features__card-list-item::before {
  content: '✓';
  color: #57E38D;
  position: absolute;
  left: 0;
  top: 0;
}

/* Promotions */
.page-blog-bigboss-web-features__promotion-card {
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.page-blog-bigboss-web-features__promotion-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-bigboss-web-features__promotion-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-blog-bigboss-web-features__promotion-description {
  font-size: 0.95em;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-blog-bigboss-web-features__faq-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-bigboss-web-features__faq-list {
  margin-top: 30px;
}

.page-blog-bigboss-web-features__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-bigboss-web-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #11271B;
  border-bottom: 1px solid #1E3A2A;
}

.page-blog-bigboss-web-features__faq-question::-webkit-details-marker,
.page-blog-bigboss-web-features__faq-question::marker {
  display: none;
}

.page-blog-bigboss-web-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D;
}

.page-blog-bigboss-web-features__faq-item[open] .page-blog-bigboss-web-features__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-bigboss-web-features__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8;
  background-color: #0A4B2C;
}

/* CTA Section */
.page-blog-bigboss-web-features__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #11A84E; /* Use brand color for CTA background */
  color: #ffffff;
  border-radius: 12px;
  max-width: 1200px;
  margin: 40px auto;
  box-sizing: border-box;
}

.page-blog-bigboss-web-features__cta-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-blog-bigboss-web-features__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-bigboss-web-features__hero-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
}

@media (max-width: 768px) {
  .page-blog-bigboss-web-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-bigboss-web-features__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-bigboss-web-features__hero-title {
    font-size: clamp(1.5em, 6vw, 2.5em) !important;
  }

  .page-blog-bigboss-web-features__hero-description {
    font-size: 1em;
  }

  .page-blog-bigboss-web-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-bigboss-web-features__btn-primary,
  .page-blog-bigboss-web-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-bigboss-web-features__content-area,
  .page-blog-bigboss-web-features__faq-section,
  .page-blog-bigboss-web-features__cta-section {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-bigboss-web-features__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-bigboss-web-features__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
  }

  .page-blog-bigboss-web-features__feature-card-grid,
  .page-blog-bigboss-web-features__promotions-grid,
  .page-blog-bigboss-web-features__security-support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-bigboss-web-features__card,
  .page-blog-bigboss-web-features__promotion-card {
    padding: 20px;
  }

  .page-blog-bigboss-web-features__card-image,
  .page-blog-bigboss-web-features__promotion-image {
    height: 160px;
  }

  .page-blog-bigboss-web-features__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-bigboss-web-features__faq-answer {
    padding: 15px 20px;
  }

  .page-blog-bigboss-web-features__cta-title {
    font-size: 1.8em;
  }

  /* Image responsive adaptation */
  .page-blog-bigboss-web-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsive adaptation (if any) */
  .page-blog-bigboss-web-features video,
  .page-blog-bigboss-web-features__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-bigboss-web-features__video-section,
  .page-blog-bigboss-web-features__video-container,
  .page-blog-bigboss-web-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-bigboss-web-features__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-bigboss-web-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Ensure no image filters are used */
.page-blog-bigboss-web-features img {
  filter: none; /* Explicitly prevent any filter effects */
}

/* Global container width for content sections */
.page-blog-bigboss-web-features__hero-content,
.page-blog-bigboss-web-features__content-area,
.page-blog-bigboss-web-features__faq-section,
.page-blog-bigboss-web-features__cta-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure video container width on desktop */
.page-blog-bigboss-web-features__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}