/* Sekcja Opinie */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    color: #333;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    margin-bottom: 15px;
}

.separator {
    width: 80px;
    height: 2px;
    background-color: #3a3a3a;
    margin: 0 auto;
}

.testimonials-container {
    display: flex;
    position: relative;
    margin-top: 50px;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    z-index: 1;
}

.testimonials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-carousel {
    flex: 0 0 60%;
    position: relative;
    margin-left: -5%;
    z-index: 2;
}

.testimonial-items {
    position: relative;
    min-height: 320px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.5s ease;
    transform: translateX(0) scale(0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    visibility: hidden;
    z-index: 1;
}

.testimonial-item.current {
    opacity: 1;
    transform: translateX(0) scale(1);
    visibility: visible;
    z-index: 3;
}

.testimonial-item.next {
    opacity: 0.7;
    transform: translateX(40px) scale(0.95);
    filter: blur(2px);
    visibility: visible;
    z-index: 2;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.google-logo {
    font-size: 24px;
    margin-right: 10px;
    color: #3a3a3a;
}

.testimonial-date {
    color: #777;
    font-size: 14px;
    font-weight: 400;
}

.testimonial-content {
    margin-bottom: 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.testimonial-content p {
    margin-bottom: 0;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.testimonial-controls {
    position: absolute;
    bottom: -25px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: #3a3a3a;
    color: #fff;
}

.testimonials-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 4;
}

.testimonials-link {
    display: inline-flex;
    align-items: center;
    color: #3a3a3a;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #f2f2f2;
}

.testimonials-link img {
    height: 20px;
    margin-right: 10px;
}

.testimonials-link:hover {
    background-color: #e5e5e5;
}

/* Responsywność */
@media (max-width: 1200px) {
    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-image {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }

    .testimonials-image {
        flex: 0 0 100%;
        height: 400px;
        margin-bottom: 30px;
    }

    .testimonials-carousel {
        flex: 0 0 100%;
        margin-left: 0;
    }

    .testimonial-item.next {
        transform: translateX(30px) scale(0.95);
    }
}

@media (max-width: 768px) {


    .testimonials-image {
        height: 350px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .testimonials-image {
        height: 300px;
    }

    .testimonial-item {
        padding: 20px;
    }

    .testimonial-item.next {
        transform: translateX(20px) scale(0.95);
    }

    .testimonial-content {
        font-size: 14px;
    }

    .testimonial-controls {
        right: 10px;
    }
}