/* Animated Background */
.animated-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
        background: linear-gradient(45deg, #f6f8ff 0%, #f0f4ff 100%);
    }
    
    .bubble {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        opacity: 0.1;
        animation: float 15s infinite;
    }
    
    .bubble:nth-child(1) {
        width: 100px;
        height: 100px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }
    
    .bubble:nth-child(2) {
        width: 150px;
        height: 150px;
        top: 60%;
        right: 15%;
        animation-delay: -3s;
    }
    
    .bubble:nth-child(3) {
        width: 80px;
        height: 80px;
        top: 40%;
        left: 50%;
        animation-delay: -6s;
    }
    
    .bubble:nth-child(4) {
        width: 120px;
        height: 120px;
        top: 80%;
        left: 30%;
        animation-delay: -9s;
    }
    
    .bubble:nth-child(5) {
        width: 90px;
        height: 90px;
        top: 10%;
        right: 30%;
        animation-delay: -12s;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translate(0, 0) rotate(0deg);
        }
        25% {
            transform: translate(15px, -15px) rotate(5deg);
        }
        50% {
            transform: translate(0, -30px) rotate(0deg);
        }
        75% {
            transform: translate(-15px, -15px) rotate(-5deg);
        }
    }
    
    /* Reviews Section */
    .reviews-container {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
    }
    
    .page-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: var(--dark-color);
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .page-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }
    
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 20px 0;
    }
    
    .review-card {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeIn 0.5s ease forwards;
        opacity: 0;
    }
    
    .review-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    
    .reviewer-info {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .reviewer-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-right: 15px;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .reviewer-details {
        flex: 1;
    }
    
    .reviewer-name {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 5px;
    }
    
    .review-date {
        font-size: 0.9rem;
        color: var(--text-light);
    }
    
    .review-rating {
        display: flex;
        gap: 5px;
        color: #ffd700;
        margin-bottom: 15px;
    }
    
    .review-text {
        color: var(--text-color);
        line-height: 1.6;
        margin-bottom: 20px;
        position: relative;
    }
    
    .review-text::before {
        content: '"';
        font-size: 4rem;
        color: var(--primary-color);
        opacity: 0.2;
        position: absolute;
        top: -20px;
        left: -10px;
        font-family: serif;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .reviews-container {
            margin: 40px auto;
        }
    
        .page-title {
            font-size: 2rem;
            margin-bottom: 30px;
        }
    
        .reviews-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .review-card {
            padding: 20px;
        }
    
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
    
        .reviewer-name {
            font-size: 1.1rem;
        }
    }