/* Testimonials Section */

.testimonials-section {
    background: #1d1d1d;
    padding: 80px 0;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-subtitle {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ddd;
    margin-bottom: 20px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.testimonials-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    font-weight: 300;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #444, #555);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.testimonial-info p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
    font-weight: 300;
}

/* Single Testimonial (Proces Współpracy) */
.single-testimonial-section {
    background: #1d1d1d;
    padding: 80px 0;
    position: relative;
}

.single-testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.single-testimonial-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.stroke-title-small {
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    display: inline-block;
    margin-right: 8px;
}

.single-testimonial-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.single-testimonial-card {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}

.single-testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
}

.single-testimonial-author {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.single-testimonial-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #444, #555);
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.single-testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.single-testimonial-info p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonials-section,
    .single-testimonial-section {
        padding: 60px 0;
    }

    .testimonials-title,
    .single-testimonial-title {
        font-size: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .testimonials-section,
    .single-testimonial-section {
        padding: 40px 0;
    }

    .testimonials-title,
    .single-testimonial-title {
        font-size: 26px;
    }

    .testimonials-description,
    .single-testimonial-description {
        font-size: 15px;
    }

    .testimonial-card,
    .single-testimonial-card {
        padding: 25px;
    }

    .testimonial-quote,
    .single-testimonial-quote {
        font-size: 15px;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .single-testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
