/* ========================================
   TESTIMONIALS SECTION
======================================== */

:root {
    --brand-red: #F43722;
    --brand-red-hover: #D62F1D;
    --brand-purple: #9747FF;
    --bg-dark: #0A1128;
    --bg-darker: #0D1840;
    --bg-card: #141F48;
    --bg-light: #F9FAFB;
    --bg-white: #ffffff;
    --text-white: #ffffff;
    --text-dark: #232323;
    --text-muted: #C7D0E7;
    --text-gray: #4A4A4A;
    --text-link: #9AA6E7;
}

.testimonials {
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
}

.testimonials-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/Light-background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.7;
    z-index: 0;
}

.testimonials-container * {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    margin-bottom: 60px;
}

.testimonials-header p {
    color: #232323;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #232323;
    max-width: 800px;
    margin: 0 auto;
}

/* Quote Icons */
.quote-icon {
    position: absolute;
    width: 80px;
    z-index: 0;
}

.quote-top {
    top: 0;
    left: 20px;
}

.quote-bottom {
    bottom: 0;
    right: 20px;
    transform: rotate(180deg);
}

/* Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 400;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* ========================================
   PARTNER LOGOS
======================================== */
.partner-logos {
    border-top: 1px solid #f0f0f0;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 70px;
}

.company-logos img {
    max-height: 50px;
    transition: all 0.3s ease;
}

.company-logos img:hover {
    transform: scale(1.05);
}

/* ========================================
   RESPONSIVENESS
======================================== */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    .partner-logos {
        gap: 30px;
    }

    .partner-logo {
        max-width: 120px;
    }
}