
/* =========================================================
   CLIENT REVIEWS SECTION (COVERFLOW DESIGN)
========================================================= */

.mn-reviews-section {
    padding: 100px 20px;
    background: #F8FAFC; /* Very light subtle blue/gray background */
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.mn-reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* --- HEADER --- */
.mn-reviews-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mn-reviews-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mn-reviews-quote-icon::before,
.mn-reviews-quote-icon::after {
    content: "";
    height: 2px;
    width: 30px;
    background: #1655c5;
    display: inline-block;
    margin: 0 15px;
}

.mn-reviews-quote-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #1655c5;
    border-radius: 50%;
    color: #F5A623;
    font-size: 32px;
    font-family: serif;
    line-height: 1;
    padding-top: 10px;
}

.mn-reviews-label {
    color: #F5A623;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.mn-reviews-header h2 {
    font-size: 42px;
    color: #1B3A6B;
    font-weight: 800;
    margin-bottom: 25px;
}

/* Hide the old orange line since the new design doesn't have it */
.mn-reviews-heading-line {
    display: none; 
}

.mn-reviews-header p {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.6;
}

/* --- CAROUSEL --- */
.mn-reviews-carousel {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.mn-reviews-viewport {
    overflow: hidden;
    margin: 0 auto;
    padding: 30px 0;
    flex-grow: 1;
    max-width: 1200px;
}

.mn-reviews-track {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- ARROWS --- */
.mn-review-arrow {
    background: #ffffff;
    border: 2px solid #E2E8F0;
    color: #1655c5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    margin: 0 20px;
}

.mn-review-arrow:hover {
    border-color: #1655c5;
    background: #F4F6F8;
}

/* --- REVIEW CARD --- */
.mn-review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 0 0 280px;
    max-width: 280px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* Coverflow default state (far) */
    opacity: 0.2;
    transform: scale(0.65);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, box-shadow 0.6s ease, border 0.3s ease;
    border-bottom: 4px solid transparent;
}

.mn-review-card.mn-review-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border-bottom: 4px solid #1655c5;
}

.mn-review-card.mn-review-near {
    opacity: 0.5;
    transform: scale(0.85);
    z-index: 2;
}

/* Card Elements */
.mn-review-stars {
    color: #1655c5; /* Blue stars for active */
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.mn-review-card:not(.mn-review-active) .mn-review-stars {
    color: #A0AEC0; /* Gray stars for inactive */
}

.mn-review-card-quote {
    font-size: 60px;
    color: #1655c5;
    line-height: 0;
    margin: 30px 0 20px 0;
    font-family: serif;
    font-weight: 900;
}

.mn-review-content {
    color: #4A5568;
    font-size: 14px;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 30px;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.mn-review-content::-webkit-scrollbar {
    display: none;
}

/* Hide divider since design 2 doesn't use it heavily */
.mn-review-divider {
    width: 30px;
    height: 2px;
    background: #E2E8F0;
    margin-bottom: 20px;
}

.mn-reviewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.mn-reviewer-image {
    display: none; /* Reference 2 doesn't show avatar inside card */
}

.mn-reviewer-name {
    font-size: 15px;
    color: #0D1B2A;
    font-weight: 800;
}

.mn-reviewer-designation {
    font-size: 13px;
    color: #718096;
}

.mn-reviewer-location {
    font-size: 12px;
    color: #1655c5;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- PAGINATION DOTS --- */
.mn-review-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.mn-review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E2E8F0;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.mn-review-dot.active {
    background: #1655c5;
}

/* --- TRUST BAR --- */
.mn-review-trust-bar {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 10px 30px 10px 10px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.mn-trust-avatars {
    display: flex;
    align-items: center;
}

.mn-trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1655c5;
    margin-left: -15px;
    position: relative;
    background: #fff;
}

.mn-trust-avatar:first-child {
    margin-left: 0;
}

.mn-trust-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.mn-trust-rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mn-trust-stars {
    color: #F5A623;
    font-size: 16px;
    margin-bottom: 2px;
}

.mn-trust-text {
    font-size: 14px;
    color: #4A5568;
    font-weight: 600;
}

.mn-trust-text strong {
    color: #1655c5;
    font-weight: 800;
}

.mn-trust-text a {
    color: #1655c5;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .mn-review-card {
        flex: 0 0 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .mn-reviews-section {
        padding: 50px 20px 40px;
    }
    .mn-reviews-header {
        margin-bottom: 25px;
    }
    .mn-reviews-header h2 {
        font-size: 32px;
    }
    .mn-review-card {
        flex: 0 0 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
        padding: 20px 15px;
    }
    .mn-review-card-quote {
        font-size: 40px;
        margin: 15px 0 10px 0;
    }
    .mn-review-content {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .mn-review-arrow {
        display: none;
    }
    .mn-reviews-carousel {
        padding: 0;
    }
    .mn-reviews-viewport {
        padding: 10px 0;
    }
    .mn-review-pagination {
        margin-top: 5px;
        margin-bottom: 25px;
    }
    .mn-review-trust-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }
}
