/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(208, 143, 168, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.testimonials__header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(208, 143, 168, 0.3);
}

.testimonials__badge svg {
    flex-shrink: 0;
}

.testimonials__title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials__title-accent {
    display: block;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials__subtitle {
    font-size: 1.125rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid */
.testimonials__slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2rem;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials__slider-track {
    display: flex;
    gap: 1.5rem;
    transition: none;
    will-change: transform;
}

.testimonials__slider-track:hover {
    animation-play-state: paused;
}

/* Card */
.testimonials__card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 380px;
    flex-shrink: 0;
}

.testimonials__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(208, 143, 168, 0.15);
}

.testimonials__card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(208, 143, 168, 0.15);
    line-height: 1;
}

.testimonials__card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonials__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonials__user {
    flex: 1;
}

.testimonials__user-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials__verified {
    flex-shrink: 0;
}

.testimonials__user-location {
    font-size: 0.875rem;
    color: #999999;
}

.testimonials__date {
    font-size: 0.75rem;
    color: #CCCCCC;
}

.testimonials__rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonials__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #333333;
    font-style: italic;
}

/* CTA */
.testimonials__cta {
    text-align: center;
    padding-top: 2rem;
}

.testimonials__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(208, 143, 168, 0.3);
}

.testimonials__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(208, 143, 168, 0.4);
}

.testimonials__guarantee {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 1rem;
}

/* Iframe Responsive Steuerung */
.testimonials__iframe--mobile {
    display: none !important;
    margin: 0 auto;
}

.testimonials__iframe--desktop {
    display: block !important;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials {
        padding: 2.5rem 1.5rem;
    }

    .testimonials__title {
        font-size: 2.25rem;
    }

    .testimonials__card {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonials__title {
        font-size: 1.75rem;
    }

    .testimonials__card {
        width: calc(100% - 2rem);
        padding: 1.5rem;
    }

    .testimonials__slider-track {
        gap: 1rem;
    }

    .testimonials__slider-wrapper {
        padding: 1rem;
    }

    .testimonials__button {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    /* Iframe Umschaltung für Mobile */
    .testimonials__iframe--mobile {
        display: block !important;
    }

    .testimonials__iframe--desktop {
        display: none !important;
    }
}
