/* ===================================
   MODERN TESTIMONIALS SECTION
   Wide carousel left + Daisy photo right
   =================================== */

.testimonials-section-modern {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Layout: review left, Daisy photo right wider */
.testimonials-modern-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 3rem;
}

/* ===================================
   CAROUSEL SIDE (LEFT)
   =================================== */
.testimonials-section-modern .testimonials-carousel-side {
    position: relative;
    min-width: 0;
}

.testimonials-section-modern .carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.testimonials-section-modern .testimonials-carousel {
    overflow: hidden;
    border-radius: 16px;
    flex: 1;
    min-width: 0;
}

.testimonials-section-modern .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials-section-modern .testimonial-card-carousel {
    flex: 0 0 100%;
    min-width: 100%;
    background: #ffffff;
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.testimonials-section-modern .testimonial-card-carousel:hover {
    box-shadow: 0 8px 32px rgba(214, 0, 156, 0.12);
}

.testimonials-section-modern .testimonial-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.testimonials-section-modern .testimonial-quote-icon {
    color: #d6009c;
    flex-shrink: 0;
}

.testimonials-section-modern .stars {
    color: #f5a623;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.testimonials-section-modern .testimonial-text {
    font-style: italic;
    color: #555555;
    margin-bottom: 1.75rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonials-section-modern .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonials-section-modern .testimonial-author strong {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.testimonials-section-modern .testimonial-location {
    font-size: 0.875rem;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.testimonials-section-modern .testimonial-location svg {
    flex-shrink: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(214, 0, 156, 0.2);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(214, 0, 156, 0.4);
}

.carousel-dot.active {
    background: #d6009c;
    transform: scale(1.2);
}

/* Carousel Nav Buttons */
.testimonials-section-modern .carousel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d6009c;
    background: #ffffff;
    color: #d6009c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.testimonials-section-modern .carousel-nav:hover {
    background: #d6009c;
    color: #ffffff;
}

.testimonials-section-modern .carousel-nav:hover svg {
    stroke: #ffffff;
}

.testimonials-section-modern .carousel-nav svg {
    stroke: #d6009c;
    transition: stroke 0.3s ease;
}

/* ===================================
   DAISY PHOTO SIDE (RIGHT) - Elegant Circle
   =================================== */
.testimonials-daisy-side {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonials-daisy-side .daisy-image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.daisy-circle-frame {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.daisy-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.daisy-ring-outer {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(214, 0, 156, 0.15);
    top: 0;
    left: 0;
    animation: daisy-spin-slow 30s linear infinite;
    background: conic-gradient(
        from 0deg,
        rgba(214, 0, 156, 0.08),
        transparent 25%,
        rgba(214, 0, 156, 0.06),
        transparent 50%,
        rgba(214, 0, 156, 0.08),
        transparent 75%,
        rgba(214, 0, 156, 0.06),
        transparent 100%
    );
    -webkit-mask: radial-gradient(transparent 68%, black 69%);
    mask: radial-gradient(transparent 68%, black 69%);
}

.daisy-ring-inner {
    width: 90%;
    height: 90%;
    border: 1.5px dashed rgba(214, 0, 156, 0.12);
    animation: daisy-spin-slow 25s linear infinite reverse;
}

@keyframes daisy-spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.daisy-glow {
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 0, 156, 0.1) 0%, rgba(214, 0, 156, 0.04) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(25px);
    transition: all 0.8s ease;
}

.daisy-circle-frame:hover .daisy-glow {
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(214, 0, 156, 0.14) 0%, rgba(214, 0, 156, 0.06) 40%, transparent 70%);
}

.daisy-circle-clip {
    width: 78%;
    height: 78%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(214, 0, 156, 0.08), inset 0 0 0 3px rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.daisy-circle-frame:hover .daisy-circle-clip {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12), 0 6px 24px rgba(214, 0, 156, 0.12), inset 0 0 0 3px rgba(255, 255, 255, 0.8);
    transform: scale(1.03);
}

.daisy-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.daisy-circle-frame:hover .daisy-image {
    transform: scale(1.05);
}

.daisy-accent {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.daisy-accent-dot-1 {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #d6009c, #e84393);
    top: 8%;
    right: 12%;
    box-shadow: 0 2px 8px rgba(214, 0, 156, 0.3);
    animation: daisy-float 4s ease-in-out infinite;
}

.daisy-accent-dot-2 {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #f5a623, #f7c948);
    bottom: 12%;
    left: 8%;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
    animation: daisy-float 5s ease-in-out infinite 1s;
}

.daisy-accent-dot-3 {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #d6009c, #ff6b9d);
    top: 50%;
    left: 2%;
    box-shadow: 0 2px 6px rgba(214, 0, 156, 0.2);
    animation: daisy-float 3.5s ease-in-out infinite 0.5s;
}

@keyframes daisy-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

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

    .daisy-circle-frame {
        width: 320px;
        height: 320px;
    }

    .testimonials-section-modern .testimonial-card-carousel {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section-modern {
        padding: 4rem 0;
    }

    .testimonials-modern-layout {
        grid-template-columns: minmax(0, 1.35fr) minmax(120px, 0.65fr);
        gap: 1rem;
        align-items: center;
    }

    .testimonials-section-modern .carousel-wrapper {
        gap: 0.75rem;
    }

    .testimonials-daisy-side {
        order: 0;
        justify-content: flex-end;
    }

    .daisy-circle-frame {
        width: 190px;
        height: 190px;
    }

    .daisy-circle-clip {
        width: 92%;
        height: 92%;
    }

    .daisy-image {
        transform: scale(1.45);
        transform-origin: center center;
    }

    .testimonials-daisy-side .daisy-image-wrapper {
        padding: 1rem;
    }

    .daisy-glow {
        filter: blur(18px);
    }

    .testimonials-section-modern .testimonial-card-carousel {
        padding: 1.5rem 1.1rem 1.35rem;
        border-radius: 20px;
    }

    .testimonials-section-modern .testimonial-card-header {
        margin-bottom: 1rem;
    }

    .testimonials-section-modern .testimonial-quote-icon {
        width: 24px;
        height: 24px;
    }

    .testimonials-section-modern .stars {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .testimonials-section-modern .testimonial-text {
        font-size: 0.94rem;
        line-height: 1.65;
        margin-bottom: 1.1rem;
    }

    .testimonials-section-modern .testimonial-author {
        padding-top: 0.9rem;
    }

    .testimonials-section-modern .carousel-nav {
        width: 42px;
        height: 42px;
        box-shadow: 0 8px 20px rgba(214, 0, 156, 0.12);
    }

    .carousel-dots {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section-modern {
        padding: 3rem 0;
    }

    .testimonials-modern-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
        align-items: center;
    }

    .testimonials-section-modern .testimonials-carousel-side {
        order: 2;
    }

    .testimonials-daisy-side {
        order: 1;
        justify-content: center;
    }

    .testimonials-section-modern .carousel-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .testimonials-section-modern .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.96);
    }

    .testimonials-section-modern .carousel-prev {
        left: 0.75rem;
    }

    .testimonials-section-modern .carousel-next {
        right: 0.75rem;
    }

    .daisy-circle-frame {
        width: 336px;
        height: 336px;
        background: transparent;
    }

    .daisy-circle-clip {
        width: 100%;
        height: 100%;
        box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
    }

    .daisy-image {
        transform: scale(1.9);
        transform-origin: center center;
    }

    .daisy-ring {
        display: none;
    }

    .daisy-glow {
        display: none;
    }

    .daisy-accent {
        display: none;
    }

    .testimonials-section-modern .carousel-nav {
        width: 42px;
        height: 42px;
    }

    .testimonials-section-modern .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .testimonials-section-modern .testimonial-card-carousel {
        padding: 1.5rem 1.1rem 1.25rem;
        box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    }

    .testimonials-section-modern .testimonial-text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .testimonials-daisy-side .daisy-image-wrapper {
        padding: 0;
    }

    .carousel-dots {
        margin-top: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .daisy-image,
    .daisy-glow,
    .daisy-ring,
    .daisy-accent,
    .daisy-circle-clip,
    .testimonials-section-modern .carousel-nav,
    .testimonials-section-modern .testimonial-card-carousel {
        transition: none;
        animation: none;
    }
    .daisy-circle-frame:hover .daisy-image,
    .daisy-circle-frame:hover .daisy-circle-clip {
        transform: none;
    }
}
