﻿/* Style cho phần Customer Feedback */
.feedback {
    background: url('/Design/img/MaximusTravel/Destin/F.png') no-repeat center/cover;
    padding: 80px 0;
    color: #fff;
}

.feedback-bg {
}

    .feedback-bg h2 {
        font-size: 30px;
        font-weight: 700;
        text-align: left;
        margin-bottom: 50px;
        color: #fff;
        font-family: 'Montserrat-Bold';
    }

.feedback-slider {
    position: relative;
}

.feedback-card {
    position: relative;
    border-radius: 20px;
    text-align: center;
    padding: 26px 16px;
    color: #333;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .feedback-card:before {
        content: "";
        position: absolute;
        background: #fff;
        width: 100%;
        height: 83%;
        left: 0;
        bottom: 0;
        border-radius: 20px;
        z-index: -1;
        opacity: .9;
    }

    .feedback-card img {
        width: 148px;
        height: 148px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 20px !important;
    }

    .feedback-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        margin-top: 0;
        color: #000000;
        font-family: Montserrat-ExtraBold;
    }

    .feedback-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #000000;
        margin-top: 0;
        font-family: 'Montserrat-SemiBold';
        overflow: hidden;
    }

        .feedback-card h4 span {
            font-size: 14px;
            font-weight: 400;
            color: #000000;
            display: block;
            margin-top: 5px;
            font-family: 'Montserrat-Medium';
        }

    .feedback-card p {
        font-size: 16px;
        font-weight: 400;
        color: #383838;
        line-height: 1.5;
        margin-bottom: 20px;
        flex-grow: 1;
        font-family: 'Montserrat-Regular';
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .feedback-card a {
        font-size: 14px;
        color: #757575;
        text-decoration: none;
        word-break: break-all;
        font-family: 'Montserrat-Regular';
    }

        .feedback-card a:hover {
            text-decoration: underline;
        }

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #ffcc00;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-bg h2 {
        font-size: 23px;
        margin-bottom: 15px;
    }

    .feedback-card {
        padding: 20px;
    }

        .feedback-card img {
            width: 100px;
            height: 100px;
        }

        .feedback-card h3 {
            font-size: 18px;
        }

        .feedback-card h4 {
            font-size: 15px;
        }

        .feedback-card p {
            font-size: 14px;
        }
}

@media (max-width: 480px) {
    .feedback-bg h2 {
        font-size: 23px;
    }

    .feedback {
        padding: 50px 0;
    }
}