/* Custom Testimonials Section Styles */

.custom-testimonial-section {
    padding: 30px 0 60px 0;
    width: 100%;
    /*background-color: #ffffff;*/
    position: relative;
}

.testimonial-swiper-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-swiper {
    padding: 20px 0 40px 0 !important;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-card {
    background-color: #ffffffaa;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    transition: transform 0.3s ease;
}

.testimonial-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 10px 0;
    text-transform: none;
    letter-spacing: 0.5px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 20px;
    color: #d1a67a;
    /* warm gold color matching theme */
    font-size: 14px;
}

.testimonial-rating .fa-star {
    font-size: 14px;
}

.testimonial-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    line-height: 1.05;
    color: #4a4a4a;
    margin: 0 0 25px 0;
    font-style: normal;
    font-weight: 400;
    max-width: 95%;
    display: -webkit-box;
    /* -webkit-line-clamp: 6; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 145px;
    /* fixed height to keep dividers aligned */
}

.testimonial-divider {
    width: 120px;
    height: 1px;
    background-color: #d1c7bd;
    /* matching separator line */
    margin: 0 auto 25px auto;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

/* Swiper Navigation Custom Styles */
.testimonial-swiper-wrapper .swiper-button-prev,
.testimonial-swiper-wrapper .swiper-button-next {
    color: #111111 !important;
    width: 44px;
    height: 44px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-swiper-wrapper .swiper-button-prev {
    left: 10px !important;
}

.testimonial-swiper-wrapper .swiper-button-next {
    right: 10px !important;
}

.testimonial-swiper-wrapper .swiper-button-prev::after,
.testimonial-swiper-wrapper .swiper-button-next::after {
    display: none;
    /* Hide default icon font arrow */
}

.testimonial-swiper-wrapper .swiper-button-prev svg,
.testimonial-swiper-wrapper .swiper-button-next svg {
    width: 36px;
    height: 36px;
    fill: #111111;
    transition: fill 0.3s ease;
}

.testimonial-swiper-wrapper .swiper-button-prev:hover svg,
.testimonial-swiper-wrapper .swiper-button-next:hover svg {
    fill: #84756e;
}

/* Swiper Pagination Custom Styles */
.testimonial-swiper .swiper-pagination {
    bottom: 0px !important;
}

.testimonial-swiper .swiper-pagination-bullet {
    background-color: #c4c4c4 !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background-color: #84756e !important;
    /* theme active color */
}

/* Responsiveness Settings */
@media (max-width: 991px) {
    .testimonial-swiper-wrapper {
        padding: 0 40px;
    }

    .testimonial-text {
        height: auto;
        min-height: 120px;
        -webkit-line-clamp: unset;
    }

    .testimonial-swiper-wrapper .swiper-button-prev {
        left: 0px !important;
    }

    .testimonial-swiper-wrapper .swiper-button-next {
        right: 0px !important;
    }
}

@media (max-width: 767px) {
    .custom-testimonial-section {
        padding: 20px 0 40px 0;
    }

    .testimonial-swiper-wrapper {
        padding: 0;
    }

    .testimonial-card-title {
        font-size: 16px;
    }

    .testimonial-swiper-wrapper .swiper-button-prev,
    .testimonial-swiper-wrapper .swiper-button-next {
        display: none !important;
        /* hide navigation arrows on small screens */
    }
}