/*=========================================
  TESTIMONIAL SECTION
=========================================*/

.mz-testimonials {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, #1c1608 0%, transparent 35%),
        radial-gradient(circle at bottom right, #1a1305 0%, transparent 35%),
        #0b0b0b;
    overflow: hidden;
}

.mz-testimonials::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.04);
    filter: blur(120px);
    top: -250px;
    left: -250px;
    pointer-events: none;
}

.mz-testimonials::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.03);
    filter: blur(120px);
    right: -220px;
    bottom: -220px;
    pointer-events: none;
}


/*=========================================
  CONTAINER
=========================================*/

.mz-testimonials .mz-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}


/*=========================================
  SECTION HEADING
=========================================*/

.mz-testimonial-header {
    text-align: center;
    margin-bottom: 70px;
}

.mz-testimonial-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mz-testimonial-header h2 {
    margin: 25px 0 20px;
    color: #fff;
    font-size: 64px;
    line-height: 1.1;
    font-family: "Playfair Display", serif;
}

.mz-testimonial-header p {
    max-width: 760px;
    margin: 0 auto;
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.9;
}


/*=========================================
  GOOGLE RATING SUMMARY
=========================================*/

.mz-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0 auto 70px;
    padding: 35px 45px;
    width: 100%;
    max-width: 850px;
    box-sizing: border-box;
    border-radius: 28px;
    background: linear-gradient(135deg, #181818, #121212);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.mz-google-logo {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e7c85a, #c99722);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #111;
    flex-shrink: 0;
}

.mz-rating-details {
    text-align: left;
}

.mz-big-stars {
    color: #ffd54a;
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.mz-rating-details h3 {
    font-size: 58px;
    color: #fff;
    line-height: 1;
    margin: 0 0 10px;
    font-family: "Playfair Display", serif;
}

.mz-rating-details p {
    color: #bdbdbd;
    font-size: 18px;
    margin: 0;
}

.mz-rating-details strong {
    color: #d4af37;
}


/*=========================================
  SLIDER
=========================================*/

.mz-testimonial-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 15px 5px 60px;
    box-sizing: border-box;
}

.mz-testimonial-slider .swiper-wrapper {
    align-items: stretch;
}

.mz-testimonial-slider .swiper-slide {
    height: auto;
    box-sizing: border-box;
}


/*=========================================
  REVIEW CARD
=========================================*/

.mz-review-card {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 35px;
    box-sizing: border-box;
    border-radius: 28px;
    background: linear-gradient(180deg, #181818, #121212);
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: 0.45s;
    overflow: hidden;
}

.mz-review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffe89b);
    transform: scaleX(0);
    transition: 0.45s;
}

.mz-review-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
}

.mz-review-card:hover::before {
    transform: scaleX(1);
}


/*=========================================
  REVIEW TOP
=========================================*/

.mz-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.mz-review-user {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.mz-review-user img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(212, 175, 55, 0.35);
}

.mz-review-user h4 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 5px;
}

.mz-review-user span {
    color: #bdbdbd;
    font-size: 14px;
}

.mz-google-small {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: #202020;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 20px;
}


/*=========================================
  REVIEW STARS
=========================================*/

.mz-review-stars {
    color: #ffd54a;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.mz-review-stars i {
    margin-right: 4px;
}


/*=========================================
  QUOTE / REVIEW TEXT
=========================================*/

.mz-review-text {
    position: relative;
    margin-bottom: 28px;
}

.mz-review-text i {
    color: #d4af37;
    font-size: 26px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.mz-review-text p {
    color: #d2d2d2;
    line-height: 1.9;
    font-size: 17px;
    margin: 0;
}


/*=========================================
  REVIEW FOOTER
=========================================*/

.mz-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 20px;
}

.mz-review-footer span {
    color: #a9a9a9;
    font-size: 14px;
}

.mz-review-footer i {
    margin-right: 6px;
}

.mz-verified {
    color: #7cff98 !important;
    font-weight: 600;
}


/*=========================================
  TABLET
=========================================*/

@media (max-width: 1100px) {

    .mz-testimonials {
        padding: 90px 0;
    }

    .mz-testimonial-header h2 {
        font-size: 52px;
    }

    .mz-rating-summary {
        max-width: 760px;
    }

    .mz-review-card {
        padding: 30px;
    }

}


/*=========================================
  MOBILE
=========================================*/

@media (max-width: 768px) {

    .mz-testimonials {
        padding: 70px 0;
        overflow: hidden;
    }

    .mz-testimonials .mz-container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }


    /* Heading */

    .mz-testimonial-header {
        margin-bottom: 40px;
    }

    .mz-testimonial-badge {
        padding: 8px 18px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .mz-testimonial-header h2 {
        font-size: 38px;
        line-height: 1.15;
        margin: 18px 0 15px;
    }

    .mz-testimonial-header p {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 5px;
    }


    /* Google Rating */

    .mz-rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 28px 20px;
        margin-bottom: 40px;
        border-radius: 22px;
        width: 100%;
    }

    .mz-google-logo {
        width: 72px;
        height: 72px;
        min-width: 72px;
        font-size: 32px;
    }

    .mz-rating-details {
        text-align: center;
        width: 100%;
    }

    .mz-big-stars {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .mz-rating-details h3 {
        font-size: 48px;
        margin-bottom: 8px;
    }

    .mz-rating-details p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* Slider */

    .mz-testimonial-slider {
        padding: 5px 0 45px;
        overflow: hidden;
    }

    .mz-testimonial-slider .swiper-slide {
        width: 100%;
    }


    /* Review Card */

    .mz-review-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .mz-review-card:hover {
        transform: none;
    }


    /* Review Top */

    .mz-review-top {
        gap: 12px;
        margin-bottom: 22px;
    }

    .mz-review-user {
        gap: 12px;
    }

    .mz-review-user img {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .mz-review-user h4 {
        font-size: 17px;
    }

    .mz-review-user span {
        font-size: 13px;
    }

    .mz-google-small {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 17px;
    }


    /* Stars */

    .mz-review-stars {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }


    /* Review */

    .mz-review-text {
        margin-bottom: 22px;
    }

    .mz-review-text i {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .mz-review-text p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* Footer */

    .mz-review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 17px;
        margin-top: 17px;
    }

    .mz-review-footer span {
        font-size: 12px;
        line-height: 1.5;
    }

}


/*=========================================
  SMALL MOBILE
=========================================*/

@media (max-width: 480px) {

    .mz-testimonials {
        padding: 55px 0;
    }

    .mz-testimonials .mz-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .mz-testimonial-header h2 {
        font-size: 32px;
    }

    .mz-testimonial-header p {
        font-size: 14px;
    }

    .mz-rating-summary {
        padding: 24px 16px;
    }

    .mz-rating-details h3 {
        font-size: 42px;
    }

    .mz-big-stars {
        font-size: 18px;
    }

    .mz-review-card {
        padding: 22px 17px;
        border-radius: 18px;
    }

    .mz-review-user img {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .mz-review-user h4 {
        font-size: 16px;
    }

    .mz-review-user span {
        font-size: 12px;
    }

    .mz-review-text p {
        font-size: 14px;
    }

}
/*=========================================
  TESTIMONIAL SWIPER WIDTH FIX
=========================================*/

.mz-testimonial-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.mz-testimonial-slider .swiper-slide {
    flex-shrink: 0;
    box-sizing: border-box;
}


/* Desktop - 3 Cards */

@media (min-width: 1200px) {

    .mz-testimonial-slider .swiper-slide {
        width: calc((100% - 60px) / 3) !important;
    }

}


/* Tablet - 2 Cards */

@media (min-width: 768px) and (max-width: 1199px) {

    .mz-testimonial-slider .swiper-slide {
        width: calc((100% - 30px) / 2) !important;
    }

}


/* Mobile - 1 Card */

@media (max-width: 767px) {

    .mz-testimonial-slider .swiper-slide {
        width: 100% !important;
    }

}