/* =========================================
   MODERN TESTIMONIALS SLIDER
   ========================================= */

.modern-testimonials-section {
    padding: 60px 20px;
    max-width: 1280px;
    margin: 0 auto;
    background: transparent;
}

.modern-testimonials-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
}

.modern-testimonials-header h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 40px 0;
    text-align: left;
    max-width: none;
}

.modern-testimonials-nav {
    display: flex;
    gap: 12px;
}

.modern-testimonials-scroll {
    overflow: hidden;
    position: relative;
}

.modern-testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-testimonial-card {
    min-width: calc(50% - 12px);
    background: #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.modern-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.modern-testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 24px 0;
    flex: 1;
}

.modern-testimonial-footer {
    border-top: 1px solid #cbd5e1;
    padding-top: 20px;
}

.modern-testimonial-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #0f172a;
}

.modern-testimonial-location {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Nav Buttons */
.modern-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modern-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #64748b;
    fill: none;
    stroke-width: 2;
}

.modern-nav-btn:hover {
    background: #f8fafc;
}

/* Responsive */
@media (max-width: 1024px) {
    .modern-testimonials-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modern-testimonials-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .modern-testimonials-header h2 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 24px;
    }

    .modern-testimonials-nav {
        /* Hide arrows on mobile/tablet if swipeable */
        display: none;
    }

    .modern-testimonials-track {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        /* Scroll snap for cards */
        scroll-snap-type: x mandatory;
        /* Disable JS transform on mobile */
        transform: none !important;
    }

    .modern-testimonial-card {
        min-width: 85%;
        /* Show a peek of next card */
        scroll-snap-align: center;
    }
}

@media (max-width: 768px) {
    .modern-testimonials-layout {
        gap: 20px;
    }

    .modern-testimonial-card {
        min-width: 90%;
        /* Peek of next card */
        padding: 32px 24px;
        margin-right: 0;
    }
}