/* style/blog-soc99-new-features.css */

/* General styles for the page content */
.page-blog-soc99-new-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main - light color for dark background */
  background-color: #08160F; /* Background color */
}

.page-blog-soc99-new-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-soc99-new-features__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-blog-soc99-new-features__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-blog-soc99-new-features__text-block a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-soc99-new-features__text-block a:hover {
  color: #2AD16F;
  text-decoration: underline;
}

/* Hero Section */
.page-blog-soc99-new-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space below hero content */
  padding-top: 10px; /* Small top padding for visual break, body handles header offset */
}

.page-blog-soc99-new-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-blog-soc99-new-features__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-soc99-new-features__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-soc99-new-features__subtitle {
  font-size: clamp(1em, 1.5vw, 1.3em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-soc99-new-features__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-soc99-new-features__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-soc99-new-features__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
}

.page-blog-soc99-new-features__cta-button--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-blog-soc99-new-features__cta-button--final {
  margin-top: 30px;
  font-size: 1.2em;
  padding: 18px 35px;
}

/* Intro Section */
.page-blog-soc99-new-features__intro-section {
  padding: 60px 0;
  background-color: #08160F;
}

/* Features Section */
.page-blog-soc99-new-features__features-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-blog-soc99-new-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-soc99-new-features__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-soc99-new-features__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-blog-soc99-new-features__feature-title {
  font-size: 1.8em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-soc99-new-features__feature-description {
  font-size: 1em;
  color: #A7D9B8;
}

/* Guide Section */
.page-blog-soc99-new-features__guide-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-blog-soc99-new-features__guide-item {
  background-color: #11271B;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-soc99-new-features__guide-title {
  font-size: 2em;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-soc99-new-features__image-spacing {
  margin-top: 20px;
}

/* Benefits Section */
.page-blog-soc99-new-features__benefits-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-blog-soc99-new-features__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-soc99-new-features__benefit-item {
  background-color: #11271B;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-soc99-new-features__benefit-title {
  font-size: 1.6em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Video Section */
.page-blog-soc99-new-features__video-section {
  padding: 60px 0;
  background-color: #08160F;
  text-align: center;
}

.page-blog-soc99-new-features__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background-color: #11271B;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  width: 100%; /* Ensure this is present for desktop */
}

.page-blog-soc99-new-features__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  display: block;
  cursor: pointer;
}

.page-blog-soc99-new-features__video-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-blog-soc99-new-features__faq-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-blog-soc99-new-features__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-soc99-new-features__faq-item {
  background-color: #11271B;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-soc99-new-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  border-bottom: 1px solid #2E7A4E; /* Border color */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-soc99-new-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-soc99-new-features__faq-question:hover {
  background-color: #1E3A2A;
}

.page-blog-soc99-new-features__faq-item[open] .page-blog-soc99-new-features__faq-question {
  background-color: #1E3A2A;
}

.page-blog-soc99-new-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
}

.page-blog-soc99-new-features__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #A7D9B8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-soc99-new-features__faq-item[open] .page-blog-soc99-new-features__faq-answer {
  max-height: 500px; /* Arbitrary large number for expansion */
  padding-top: 15px;
}

/* Conclusion Section */
.page-blog-soc99-new-features__conclusion-section {
  padding: 60px 0;
  background-color: #08160F;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-soc99-new-features__section-title {
    font-size: 2em;
  }

  .page-blog-soc99-new-features__main-title {
    font-size: clamp(1.8em, 3.5vw, 3em);
  }

  .page-blog-soc99-new-features__feature-title,
  .page-blog-soc99-new-features__guide-title,
  .page-blog-soc99-new-features__benefit-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-soc99-new-features__container {
    padding: 0 15px;
  }

  .page-blog-soc99-new-features__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-soc99-new-features__main-title {
    font-size: clamp(1.5em, 5vw, 2.5em);
  }

  .page-blog-soc99-new-features__subtitle,
  .page-blog-soc99-new-features__text-block,
  .page-blog-soc99-new-features__feature-description,
  .page-blog-soc99-new-features__video-description,
  .page-blog-soc99-new-features__faq-answer {
    font-size: 1em;
  }

  .page-blog-soc99-new-features__hero-section,
  .page-blog-soc99-new-features__intro-section,
  .page-blog-soc99-new-features__features-section,
  .page-blog-soc99-new-features__guide-section,
  .page-blog-soc99-new-features__benefits-section,
  .page-blog-soc99-new-features__video-section,
  .page-blog-soc99-new-features__faq-section,
  .page-blog-soc99-new-features__conclusion-section {
    padding: 40px 0;
  }

  /* Images responsive */
  .page-blog-soc99-new-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-soc99-new-features__hero-image {
    margin-bottom: 20px;
  }

  /* Video responsive */
  .page-blog-soc99-new-features__video-wrapper,
  .page-blog-soc99-new-features__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-soc99-new-features__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Buttons responsive */
  .page-blog-soc99-new-features__cta-button,
  .page-blog-soc99-new-features a[class*="button"],
  .page-blog-soc99-new-features a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
  
  .page-blog-soc99-new-features__cta-button:not(:last-child) {
    margin-bottom: 15px;
  }

  .page-blog-soc99-new-features__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-soc99-new-features__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-soc99-new-features__feature-grid,
  .page-blog-soc99-new-features__benefit-list {
    grid-template-columns: 1fr;
  }

  .page-blog-soc99-new-features__main-title {
    font-size: 1.8em;
  }

  .page-blog-soc99-new-features__feature-title,
  .page-blog-soc99-new-features__guide-title,
  .page-blog-soc99-new-features__benefit-title {
    font-size: 1.3em;
  }
}