/* ===========================================
       TESTIMONIALS SECTION - Main Container
       =========================================== */
.lm-testimonials-container {
  padding: 120px 24px;
  background: var(--logicmind-white);
  position: relative;
  overflow: hidden;
}

.lm-testimonials-container::before {
  content: "";
  width: 60% !important;
  height: 60% !important;
  position: absolute !important;
  top: 50 !important;
  left: 50 !important;
  background-image: url("../../assets/backgrounds/service-b.png") !important;
  background-repeat: no-repeat !important;
  background-size: 60% !important;
  background-position: 10% 30% !important;
  opacity: 0.2 !important;
  pointer-events: none !important;
}

/* ===========================================
       TESTIMONIALS SECTION - Grid Layout
       =========================================== */
.lm-testimonials__main-grid {
  align-items: center;
}

/* ===========================================
       TESTIMONIALS SECTION - Intro Section
       =========================================== */
.lm-testimonials__intro-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.lm-testimonials__title-text {
  color: var(--logicmind-black) !important;
  font-weight: 700 !important;
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

.lm-testimonials__title-text b {
  color: var(--logicmind-accent) !important;
  font-weight: 800 !important;
}

.lm-testimonials__description-text {
  color: #555 !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}

/* ===========================================
       TESTIMONIALS SECTION - Carousel
       =========================================== */
.lm-testimonials__carousel-item {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lm-testimonials__carousel-paper {
  background: transparent !important;
  width: 100%;
  box-shadow: none !important;
}

.lm-testimonials__carousel-stack {
  width: 100%;
  gap: 24px;
}

/* ===========================================
       TESTIMONIALS SECTION - Controls
       =========================================== */
.lm-testimonials__controls-stack {
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  gap: 16px !important;
  margin-top: 24px;
}

/* Navigation Buttons */
.lm-testimonials__nav-btn {
  background: transparent !important;
  border: 2px solid var(--logicmind-black) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  color: var(--logicmind-black) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.lm-testimonials__nav-btn:hover:not(:disabled) {
  background: var(--logicmind-black) !important;
  transform: scale(1.1) !important;
  color: var(--logicmind-white) !important;
}

.lm-testimonials__nav-btn--prev:disabled,
.lm-testimonials__nav-btn--next:disabled {
  opacity: 0.3 !important;
  border-color: #cccccc !important;
  cursor: not-allowed !important;
  background: transparent !important;
  color: #cccccc !important;
}

/* Indicators Stack */
.lm-testimonials__indicators-stack {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  flex: 1;
}

/* Indicator Buttons */
.lm-testimonials__indicator-btn {
  text-transform: none !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  border: 2px solid var(--logicmind-black) !important;
  color: var(--logicmind-black) !important;
  background: var(--logicmind-white) !important;
  box-shadow: none !important;
  font-size: 0.9rem !important;
}

.lm-testimonials__indicator-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
  background: var(--logicmind-black) !important;
  color: var(--logicmind-white) !important;
}

/* Active Indicator Button */
.lm-testimonials__indicator-btn--active {
  background: var(--logicmind-accent) !important;
  color: var(--logicmind-white) !important;
  border-color: var(--logicmind-accent) !important;
}

.lm-testimonials__indicator-btn--active:hover {
  background: var(--logicmind-accent) !important;
  border-color: var(--logicmind-accent) !important;
  color: var(--logicmind-white) !important;
  transform: translateY(-2px) !important;
}

/* ===========================================
       RESPONSIVE ADJUSTMENTS - Tablet Large
       =========================================== */
@media (max-width: 1280px) {
  .lm-testimonials-container {
    padding: 100px 24px;
  }

  .lm-testimonials__title-text {
    font-size: 2.2rem !important;
  }

  .lm-testimonials__description-text {
    font-size: 1rem !important;
  }

  .lm-testimonials__main-grid {
    gap: 32px;
  }
}

/* ===========================================
       RESPONSIVE ADJUSTMENTS - Tablet
       =========================================== */
@media (max-width: 960px) {
  .lm-testimonials-container {
    padding: 60px 20px;
  }

  .lm-testimonials-container::before {
    background-size: 80% !important;
    background-position: 50% 50% !important;
  }

  .lm-testimonials__main-grid {
    gap: 24px;
  }

  .lm-testimonials__title-text {
    font-size: 2rem !important;
  }

  .lm-testimonials__description-text {
    font-size: 0.95rem !important;
  }

  .lm-testimonials__intro-item {
    gap: 20px;
  }

  .lm-testimonials__controls-stack {
    flex-direction: column;
    gap: 20px !important;
  }

  .lm-testimonials__indicators-stack {
    order: -1;
    justify-content: space-between;
  }

  .lm-testimonials__nav-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

/* ===========================================
       RESPONSIVE ADJUSTMENTS - Mobile
       =========================================== */
@media (max-width: 600px) {
  .lm-testimonials-container {
    padding: 50px 16px;
  }

  .lm-testimonials-container::before {
    display: none;
  }

  .lm-testimonials__title-text {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }

  .lm-testimonials__description-text {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .lm-testimonials__intro-item {
    gap: 16px;
  }

  .lm-testimonials__controls-stack {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px !important;
    margin-top: 16px;
  }

  .lm-testimonials__indicators-stack {
    order: 0;
    flex: 1;
    justify-content: center;
    gap: 8px;
  }

  .lm-testimonials__nav-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }

  .lm-testimonials__indicator-btn {
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
    border-radius: 4px !important;
  }
}
