/* Testimonials Section */
.testimonials {
  background: #fff;
  padding: 64px 0 32px 0;
  position: relative;
}
.testimonials-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #23253a;
  text-align: center;
  margin-bottom: 0;
}
.testimonials-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: #585757;
  text-align: center;
  margin: 18px 0 30px 0;
  max-width: 700px;
}
.testimonial-cards {
  display: flex;
  flex-direction: row;
  gap: 36px;
  width: 100%;
  justify-content: center;
  margin-top: 32px;
}
.testimonial-card {
  background:#F9F9F9;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(44,44,44,0.10);
  border: 2px solid #ececec;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px 32px 32px;
  min-width: 320px;
  max-width: 420px;
  min-height: 260px;
  transition: box-shadow 0.2s, border 0.2s;
  text-align: left;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(44,44,44,0.16);
  border: 2px solid #23253a;
}
.testimonial-card-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.testimonial-quote {
  font-size: 40px;
  color: #7c7edc;
  font-family: serif;
  font-weight: bold;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(44,44,44,0.10);
}
.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #1F1F1F;
  margin-bottom: 32px;
  margin-top: 0;
}
.testimonial-card-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.testimonial-google {
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-logo {
  width: 100px;
  height: 45px;
  object-fit: contain;
}
.google-reviews {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #23253a;
  margin-left: 2px;
}
.google-stars {
  color: #ffc107;
  font-size: 18px;
  margin-left: 2px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.author-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #1F1F1F;
  font-weight: 500;
}
.author-stars {
  color: #FBBE21;
  font-size: 20px;
}
.sticky-side-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-90deg);
  background: #fff;
  color: #23253a;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  border: none;
  border-radius: 20px 20px 0 0;
  padding: 16px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  cursor: pointer;
  z-index: 100;
  transition: background 0.2s, color 0.2s;
}
.sticky-side-cta:hover {
  background: #f5f5f5;
  color: #000;
}
@media (max-width: 1100px) {
  .testimonials-container {
    padding: 0 16px;
  }
  .testimonials-title {
    font-size: 32px;
    text-align: start;
  }
  .testimonials-subtitle {
    font-size: 20px;
    margin: 18px 0 0px 0;
    max-width: 100%;
  }
  .testimonial-cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    position: relative;
    padding: 0 20px;
    /* Only one card visible, handled by JS */
  }
  .testimonial-swiper-wrapper {
    position: relative;
  }
  .testimonial-nav-left,
  .testimonial-nav-right {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,44,44,0.10);
  }
  .testimonial-nav-left {
    left: -1px;
  }
  .testimonial-nav-right {
    right: -1px;
  }
  .testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 8px;
    width: 100%;
  }
  .testimonial-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ececec;
    transition: background 0.2s;
    cursor: pointer;
  }
  .testimonial-card {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 16px;
  }
}

@media (min-width: 1101px) {
  .testimonial-nav-left,
  .testimonial-nav-right,
  .testimonial-pagination {
    display: none !important;
  }
} 