/* Testimonial Section */
.trust-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.trust-section__title {
  color: #009fe3;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  font-weight: 400;
}

.trust-section__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.trust-section__badge {
  flex-shrink: 0;
  text-align: left;
  padding-right: 40px;
  border-right: 1px solid #eee;
  width: 200px;
}

.trust-section__badge .average {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.trust-section__stars-container {
  position: relative;
  width: 150px;
  height: 28px;
  margin-bottom: 15px;
}

.trust-section__reviews-count {
  font-size: 0.85rem;
  color: #666;
}

.trust-section__logo {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 1.1rem;
}

.trust-section__logo svg {
  width: 24px;
  height: 24px;
  fill: var(--clr-trust-green);
}

/* Owl Carousel Custom Styles */
.testimonial-slider-wrapper {
  flex-grow: 1;
  min-width: 0;
  position: relative;
  padding: 0 60px;
  /* Increased padding to create a gutter for arrows */
}

.testimonial-card {
  text-align: left;
  padding: 10px;
}

.testimonial-card__stars-container {
  position: relative;
  width: 100px;
  height: 18px;
  margin-bottom: 10px;
}

.testimonial-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-card__author {
  font-size: 0.85rem;
  color: #999;
}

.testimonial-card__author span {
  margin-left: 5px;
}

/* Custom Nav Arrows for Owl */
.owl-nav {
  display: block !important;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #333 !important;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.owl-nav button:hover {
  border-color: var(--clr-primary) !important;
  color: var(--clr-primary) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.owl-prev {
  left: -50px !important;
  /* Positioned in the wrapper gutter */
}

.owl-next {
  right: -50px !important;
  /* Positioned in the wrapper gutter */
}

.owl-nav button span {
  display: none;
  /* Hide default Owl spans if they exist */
}

/* Support Banner */
.support-banner {
  background: #f0f9ff;
  padding: 60px 0;
  display: flex;
  align-items: center;
  min-height: 440px;
}

.support-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.support-banner__content {
  flex: 1;
}

.support-banner__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.support-banner__text {
  font-size: 1.1rem;
  color: var(--clr-text);
  margin-bottom: 2rem;
  max-width: 480px;
}

.support-banner__btn {
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.support-banner__btn:hover {
  background: var(--clr-primary);
  color: white;
}

.support-banner__visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.support-banner__image-container {
  width: 100%;
  max-width: 500px;
}

.support-banner__image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

@media (max-width: 991px) {
  .trust-section__grid {
    flex-direction: column;
    gap: 20px;
  }

  .trust-section__badge {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-right: 0;
    padding-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .trust-section__stars-container {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-section__logo {
    justify-content: center;
  }

  .support-banner {
    padding: 40px 0;
    text-align: center;
  }

  .support-banner__inner {
    flex-direction: column;
  }

  .support-banner__visual {
    justify-content: center;
    margin-top: 2rem;
  }
}
