/* ===============================
   CUSTOMER REVIEW SECTION
================================*/

.testimonial-section-review {
    background: #f6f6f6;
    position: relative;
    padding-bottom: 80px;
}

/* swiper slider */

.testimonial-section-review .testimonial-slider {
    overflow: hidden;
    padding: 40px 10px 70px;
}

.testimonial-section-review .testimonial-slider .swiper-wrapper {
    overflow: visible;
}

.testimonial-section-review .testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
    width: auto;
}

/* review card */

.testimonial-section-review .testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid transparent;
    min-height: 300px;
}

/* hover */

.testimonial-section-review .testimonial-item:hover {
    /* transform: translateY(-8px); */
    border: 2px solid #ffc107;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* active center card */

.testimonial-section-review .swiper-slide-active .testimonial-item {
    border: 2px solid #ffc107;
    /* transform: translateY(-8px); */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* review top */

.testimonial-section-review .review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* quote icon */

.testimonial-section-review .quote-icon-review {
    font-size: 32px;
    color: #e5e5e5;
    transition: .3s;
}

.testimonial-section-review .testimonial-item:hover .quote-icon-review {
    color: #ffc107;
    transform: scale(1.1);
}

.testimonial-section-review .swiper-slide-active .quote-icon-review {
    color: #ffc107;
}

/* rating stars */

.testimonial-section-review .rating {
    display: flex;
    gap: 3px;
    color: #ffc107;
    font-size: 18px;
}

/* review text */

.testimonial-section-review .review-text {
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.7;
    color: #555;
    min-height: 80px;
}

/* divider */

.testimonial-section-review .testimonial-item hr {
    margin: 15px 0;
    opacity: .2;
}

/* client info */

.testimonial-section-review .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.testimonial-section-review .client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffc107;
}

.testimonial-section-review .client-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-section-review .client-info span {
    font-size: 13px;
    color: #777;
}

/* ride info */

.testimonial-section-review .ride-info p {
    margin: 4px 0;
    font-size: 14px;
    color: #444;
}

.testimonial-section-review .ride-info i {
    color: #ffc107;
    margin-right: 5px;
}

/* ===============================
   GOOGLE RATING BADGE
================================*/

.testimonial-section-review .google-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
}

.testimonial-section-review .google-rating img {
    width: 22px;
    height: 22px;
}

.testimonial-section-review .google-rating strong {
    font-size: 16px;
}

.testimonial-section-review .google-rating span {
    font-size: 14px;
    color: #666;
}

/* ===============================
   PAGINATION
================================*/

.testimonial-section-review .swiper-pagination-review {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    place-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.testimonial-section-review .swiper-pagination-review .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #000;
    opacity: 1;
    border-radius: 50%;
    transition: all .3s ease;
}

.testimonial-section-review .swiper-pagination-review .swiper-pagination-bullet-active {
    background: #ffc107;
    width: 28px;
    border-radius: 20px;
}

/* arrows container */

.testimonial-section-review .testimonial-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

