/* =========================================================
   VMENTORZ — TESTIMONIAL / HAPPY PATRONS
   Complete Desktop + Light/Dark Theme
========================================================= */

:root {
    --testimonial-navy: #0F1B3D;
    --testimonial-teal: #10B981;
    --testimonial-bright: #14C9A0;
    --testimonial-mint: #DDF8F0;
    --testimonial-light: #F5FBF9;
    --testimonial-muted: #718096;
    --testimonial-white: #FFFFFF;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.testimonial-section {
    position: relative;
    padding: 110px 0 100px;
    background: #F5FBF9;
    overflow: hidden;
    isolation: isolate;
}


/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.testimonial-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(100px);
}

.testimonial-glow-one {
    width: 430px;
    height: 430px;
    top: -180px;
    left: -150px;
    background: rgba(16, 185, 129, 0.10);
}

.testimonial-glow-two {
    width: 450px;
    height: 450px;
    right: -180px;
    bottom: -200px;
    background: rgba(20, 201, 160, 0.08);
}


/* =========================================================
   HEADING
========================================================= */

.testimonial-heading {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
    position: relative;
    z-index: 2;
}


/* Badge */

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;
    margin-bottom: 18px;

    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 50px;

    background: rgba(16, 185, 129, 0.08);

    color: #0F9F7D;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.testimonial-badge i {
    font-size: 11px;
}


/* Heading */

.testimonial-heading h2 {
    margin: 0 0 18px;

    color: #0F1B3D;

    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;

    letter-spacing: -0.04em;
}

.testimonial-heading h2 span {
    color: #10B981;
}


/* Description */

.testimonial-heading p {
    max-width: 690px;
    margin: 0 auto;

    color: #718096;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   MAIN SHOWCASE
========================================================= */

.testimonial-showcase {
    display: grid;
    grid-template-columns: 1fr 0.85fr;

    gap: 28px;

    max-width: 1120px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================================================
   FEATURED TESTIMONIAL
========================================================= */

.testimonial-featured {

    position: relative;

    padding: 42px;

    border-radius: 28px;

    border: 1px solid rgba(15, 27, 61, 0.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.98),
            rgba(247,252,250,0.90)
        );

    box-shadow:
        0 25px 65px rgba(15, 27, 61, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    overflow: hidden;
}


.testimonial-featured:hover {

    transform: translateY(-6px);

    border-color:
        rgba(16, 185, 129, 0.28);

    box-shadow:
        0 30px 75px rgba(15, 27, 61, 0.11),
        0 0 35px rgba(16, 185, 129, 0.06);
}


/* Top accent */

.testimonial-featured::before {

    content: "";

    position: absolute;

    top: 0;
    left: 12%;
    right: 12%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #14C9A0,
            transparent
        );
}


/* =========================================================
   QUOTE ICON
========================================================= */

.testimonial-quote-icon {

    display: grid;
    place-items: center;

    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #10B981,
            #14C9A0
        );

    color: #FFFFFF;

    font-size: 19px;

    box-shadow:
        0 12px 28px rgba(16, 185, 129, 0.22);
}


/* =========================================================
   RATING
========================================================= */

.testimonial-rating {

    display: flex;
    align-items: center;
    gap: 5px;

    margin-bottom: 22px;
}

.testimonial-rating i {

    color: #10B981;

    font-size: 13px;
}

.testimonial-rating span {

    margin-left: 7px;

    color: #0F1B3D;

    font-size: 13px;
    font-weight: 750;
}


/* =========================================================
   QUOTE
========================================================= */

.testimonial-quote {

    margin: 0 0 30px;

    color: #243453;

    font-size: clamp(19px, 2vw, 25px);

    line-height: 1.65;

    font-weight: 500;

    letter-spacing: -0.015em;
}


/* =========================================================
   AUTHOR
========================================================= */

.testimonial-author {

    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 25px;
}


.testimonial-avatar {

    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #DDF8F0,
            #C9F4E7
        );

    border: 2px solid rgba(16,185,129,0.25);

    color: #0B9272;

    font-size: 13px;
    font-weight: 800;
}


.testimonial-author-info strong {

    display: block;

    margin-bottom: 3px;

    color: #0F1B3D;

    font-size: 14px;
    font-weight: 750;
}


.testimonial-author-info span {

    display: block;

    color: #718096;

    font-size: 11px;
}


/* =========================================================
   JOURNEY TAG
========================================================= */

.testimonial-journey-tag {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

    border-radius: 50px;

    background: rgba(16,185,129,0.08);

    border: 1px solid rgba(16,185,129,0.15);

    color: #0B9272;

    font-size: 11px;
    font-weight: 700;
}


.testimonial-journey-tag i {
    font-size: 10px;
}


/* =========================================================
   RIGHT TESTIMONIAL LIST
========================================================= */

.testimonial-list {

    display: flex;

    flex-direction: column;

    gap: 16px;
}


/* =========================================================
   MINI CARD
========================================================= */

.testimonial-mini-card {

    position: relative;

    padding: 23px 24px;

    border-radius: 21px;

    border: 1px solid rgba(15, 27, 61, 0.075);

    background:
        rgba(255,255,255,0.86);

    box-shadow:
        0 15px 40px rgba(15,27,61,0.055);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.testimonial-mini-card:hover {

    transform: translateX(6px);

    border-color:
        rgba(16,185,129,0.25);

    box-shadow:
        0 18px 45px rgba(15,27,61,0.09);
}


/* =========================================================
   MINI TOP
========================================================= */

.testimonial-mini-top {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 15px;
}


/* =========================================================
   MINI USER
========================================================= */

.testimonial-mini-user {

    display: flex;

    align-items: center;

    gap: 10px;
}


.testimonial-mini-avatar {

    display: grid;
    place-items: center;

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    border-radius: 50%;

    background: #DDF8F0;

    border: 1px solid rgba(16,185,129,0.18);

    color: #0B9272;

    font-size: 10px;
    font-weight: 800;
}


.testimonial-mini-user strong {

    display: block;

    color: #0F1B3D;

    font-size: 12px;

    margin-bottom: 2px;
}


.testimonial-mini-user span {

    display: block;

    color: #8A96A8;

    font-size: 10px;
}


/* =========================================================
   MINI RATING
========================================================= */

.testimonial-mini-rating {

    display: flex;

    align-items: center;

    gap: 5px;

    white-space: nowrap;
}


.testimonial-mini-rating i {

    color: #10B981;

    font-size: 10px;
}


.testimonial-mini-rating span {

    color: #536177;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   MINI QUOTE
========================================================= */

.testimonial-mini-card > p {

    margin: 0 0 18px;

    color: #64748B;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   MINI FOOTER
========================================================= */

.testimonial-mini-footer {

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 13px;

    border-top:
        1px solid rgba(15,27,61,0.06);
}


.testimonial-mini-footer span {

    color: #0F9F7D;

    font-size: 10px;

    font-weight: 700;
}


.testimonial-mini-footer i {

    color: #10B981;

    font-size: 11px;

    transition: transform 0.25s ease;
}


.testimonial-mini-card:hover
.testimonial-mini-footer i {

    transform: translate(2px,-2px);
}


/* =========================================================
   TRUST BAR
========================================================= */

.testimonial-trust-bar {

    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;

    max-width: 1120px;

    margin: 28px auto 0;

    padding: 22px 28px;

    border-radius: 20px;

    border: 1px solid rgba(15,27,61,0.07);

    background:
        rgba(255,255,255,0.72);

    box-shadow:
        0 12px 35px rgba(15,27,61,0.045);

    backdrop-filter: blur(12px);
}


/* Trust item */

.testimonial-trust-item {

    display: flex;

    align-items: center;

    gap: 12px;

}


.testimonial-trust-icon {

    display: grid;
    place-items: center;

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    border-radius: 11px;

    background: #DDF8F0;

    color: #10B981;

    font-size: 14px;
}


.testimonial-trust-item strong {

    display: block;

    color: #0F1B3D;

    font-size: 11px;

    margin-bottom: 3px;
}


.testimonial-trust-item span {

    display: block;

    color: #8995A7;

    font-size: 9px;

    line-height: 1.4;
}


/* Divider */

.testimonial-trust-divider {

    width: 1px;

    height: 35px;

    background:
        rgba(15,27,61,0.08);

}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.testimonial-bottom-note {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    max-width: 700px;

    margin: 24px auto 0;

    color: #718096;

    font-size: 11px;

    line-height: 1.6;

    text-align: center;
}


.testimonial-bottom-note i {

    color: #10B981;

    font-size: 14px;
}


/* =========================================================
   DARK THEME
========================================================= */

body.dark-theme .testimonial-section,
[data-theme="dark"] .testimonial-section {

    background: #0F1B3D;
}


body.dark-theme .testimonial-glow-one,
[data-theme="dark"] .testimonial-glow-one {

    background: rgba(16,185,129,0.14);
}


body.dark-theme .testimonial-glow-two,
[data-theme="dark"] .testimonial-glow-two {

    background: rgba(20,201,160,0.10);
}


/* Heading */

body.dark-theme .testimonial-heading h2,
[data-theme="dark"] .testimonial-heading h2 {

    color: #FFFFFF;
}


body.dark-theme .testimonial-heading p,
[data-theme="dark"] .testimonial-heading p {

    color: #B7C3D5;
}


body.dark-theme .testimonial-badge,
[data-theme="dark"] .testimonial-badge {

    color: #57E0BF;

    background:
        rgba(16,185,129,0.10);

    border-color:
        rgba(20,201,160,0.18);
}


/* Featured */

body.dark-theme .testimonial-featured,
[data-theme="dark"] .testimonial-featured {

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.035)
        );

    border-color:
        rgba(255,255,255,0.10);

    box-shadow:
        0 25px 65px rgba(0,0,0,0.20);
}


body.dark-theme .testimonial-featured:hover,
[data-theme="dark"] .testimonial-featured:hover {

    border-color:
        rgba(20,201,160,0.40);

    box-shadow:
        0 30px 75px rgba(0,0,0,0.27),
        0 0 35px rgba(16,185,129,0.10);
}


/* Quote */

body.dark-theme .testimonial-quote,
[data-theme="dark"] .testimonial-quote {

    color: #E7EDF5;
}


body.dark-theme .testimonial-rating span,
[data-theme="dark"] .testimonial-rating span {

    color: #FFFFFF;
}


body.dark-theme .testimonial-author-info strong,
[data-theme="dark"] .testimonial-author-info strong {

    color: #FFFFFF;
}


body.dark-theme .testimonial-author-info span,
[data-theme="dark"] .testimonial-author-info span {

    color: #AEBBCD;
}


/* Mini cards */

body.dark-theme .testimonial-mini-card,
[data-theme="dark"] .testimonial-mini-card {

    background:
        rgba(255,255,255,0.055);

    border-color:
        rgba(255,255,255,0.09);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.14);
}


body.dark-theme .testimonial-mini-card:hover,
[data-theme="dark"] .testimonial-mini-card:hover {

    border-color:
        rgba(20,201,160,0.35);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.20);
}


body.dark-theme .testimonial-mini-user strong,
[data-theme="dark"] .testimonial-mini-user strong {

    color: #FFFFFF;
}


body.dark-theme .testimonial-mini-user span,
[data-theme="dark"] .testimonial-mini-user span {

    color: #94A3B8;
}


body.dark-theme .testimonial-mini-card > p,
[data-theme="dark"] .testimonial-mini-card > p {

    color: #B4C0D0;
}


body.dark-theme .testimonial-mini-rating span,
[data-theme="dark"] .testimonial-mini-rating span {

    color: #B4C0D0;
}


body.dark-theme .testimonial-mini-footer,
[data-theme="dark"] .testimonial-mini-footer {

    border-color:
        rgba(255,255,255,0.07);
}


/* Trust */

body.dark-theme .testimonial-trust-bar,
[data-theme="dark"] .testimonial-trust-bar {

    background:
        rgba(255,255,255,0.045);

    border-color:
        rgba(255,255,255,0.08);

    box-shadow:
        0 15px 45px rgba(0,0,0,0.15);
}


body.dark-theme .testimonial-trust-item strong,
[data-theme="dark"] .testimonial-trust-item strong {

    color: #FFFFFF;
}


body.dark-theme .testimonial-trust-item span,
[data-theme="dark"] .testimonial-trust-item span {

    color: #94A3B8;
}


body.dark-theme .testimonial-trust-divider,
[data-theme="dark"] .testimonial-trust-divider {

    background:
        rgba(255,255,255,0.09);
}


body.dark-theme .testimonial-bottom-note,
[data-theme="dark"] .testimonial-bottom-note {

    color: #AEBBCD;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .testimonial-section {
        padding: 90px 24px;
    }

    .testimonial-showcase {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .testimonial-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-mini-card {
        height: 100%;
    }

    .testimonial-trust-bar {
        max-width: 760px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .testimonial-section {
        padding: 75px 18px 70px;
    }

    .testimonial-heading {
        margin-bottom: 40px;
    }

    .testimonial-heading h2 {
        font-size: 34px;
    }

    .testimonial-heading p {
        font-size: 13px;
    }

    .testimonial-showcase {
        gap: 20px;
    }

    .testimonial-featured {
        padding: 28px 23px;
        border-radius: 22px;
    }

    .testimonial-quote {
        font-size: 18px;
        line-height: 1.6;
    }

    .testimonial-list {
        display: flex;
        flex-direction: column;
    }

    .testimonial-mini-card {
        padding: 20px;
    }

    .testimonial-trust-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 17px;

        padding: 20px;
    }

    .testimonial-trust-divider {
        width: 100%;
        height: 1px;
    }

    .testimonial-bottom-note {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .testimonial-section {
        padding: 65px 14px 60px;
    }

    .testimonial-heading h2 {
        font-size: 30px;
    }

    .testimonial-heading p {
        font-size: 12px;
    }

    .testimonial-badge {
        font-size: 9px;
        letter-spacing: 1.3px;
        padding: 7px 11px;
    }

    .testimonial-featured {
        padding: 24px 19px;
    }

    .testimonial-quote-icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    .testimonial-quote {
        font-size: 17px;
    }

    .testimonial-mini-card {
        padding: 18px;
    }

    .testimonial-mini-card > p {
        font-size: 11px;
    }

    .testimonial-trust-bar {
        padding: 17px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .testimonial-featured,
    .testimonial-mini-card,
    .testimonial-mini-footer i {

        transition: none;

    }

}