.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(243, 112, 34, 0.05) 0%, rgba(243, 112, 34, 0.1) 100%);
    z-index: 1;
}

.reviews::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F37022' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

.reviews-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
}

.reviews-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #F37022;
    display: inline-block;
}

.reviews-heading p {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:nth-child(1) { 
    animation: fadeInUp 0.5s ease forwards;
}

.review-card:nth-child(2) { 
    animation: fadeInUp 0.5s ease forwards 0.2s;
}

.review-card:nth-child(3) { 
    animation: fadeInUp 0.5s ease forwards 0.4s;
}

.review-card:nth-child(4) { 
    animation: fadeInUp 0.5s ease forwards 0.6s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 112, 34, 0.15);
    border-color: rgba(243, 112, 34, 0.3);
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid rgba(243, 112, 34, 0.3);
    transition: transform 0.3s ease;
}

.review-card:hover .review-avatar {
    transform: scale(1.1);
}

.review-name {
    color: #F37022;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.review-rating {
    color: #F37022;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.reviews-cta h3,
.reviews-cta p {
    color: #ffffff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-heading h2 {
        font-size: 2rem;
    }
    
    .reviews {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .reviews-heading h2 {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 25px;
    }
}
