:root {
    /* Hollywood Textiles Theme Colors */
    --primary-color: #333;
    --secondary-color: #555;
    --accent-color: #f7f6f1;
    --text-dark: #333;
    --text-light: #9ca3af;
    --glass-bg: rgba(247, 246, 241, 0.9);
    --glass-border: rgba(51, 51, 51, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

.testimonials-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow-light);
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    position: relative;
}

.section-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'TheanoDidot', serif;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    margin: 0 1rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.quote-icon {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--glass-border);
    object-fit: cover;
    transition: all 0.3s ease;
}

.client-avatar:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.client-details h5 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.client-details small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px;
    filter: brightness(0) invert(0.3);
}

.carousel-indicators {
    margin-bottom: -2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    background: var(--text-light);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: var(--glass-border);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: -20px;
    }

    .carousel-control-next {
        right: -20px;
    }
}