.reviews-section {
    font-family: 'Roboto', sans-serif;
    background: white;
    padding: 20px;
}

.reviews-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.reviews-section .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.reviews-section .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.reviews-section h3 {
    color: #333;
    font-size: 20px;
    margin: 0;
}

.reviews-section .trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #00b67a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 182, 122, 0.2);
}

.reviews-section .trustpilot-badge:hover {
    background: #00a568;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 182, 122, 0.3);
}

.reviews-section .trustpilot-logo {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.reviews-section .carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f9fa;
}

.reviews-section .carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-section .review {
    background: white;
    padding: 35px;
    min-width: 100%;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.reviews-section .review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.reviews-section .stars {
    color: #00b67a;
    font-size: 20px;
    margin-bottom: 18px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 182, 122, 0.1);
}

.reviews-section .quote {
    font-style: italic;
    color: #495057;
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: center;
    font-size: 18px;
    position: relative;
    padding: 20px 30px;
}

.reviews-section .quote:before {
    content: '"';
    font-size: 48px;
    color: #00b67a;
    position: absolute;
    top: -5px;
    left: 5px;
    opacity: 0.7;
    line-height: 1;
    font-family: serif;
}

.reviews-section .quote:after {
    content: '"';
    font-size: 48px;
    color: #00b67a;
    position: absolute;
    bottom: -25px;
    right: 5px;
    opacity: 0.7;
    line-height: 1;
    font-family: serif;
}

.reviews-section .customer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviews-section .avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b67a, #00a568);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 182, 122, 0.3);
    transition: transform 0.3s ease;
}

.reviews-section .avatar:hover {
    transform: scale(1.05);
}

.reviews-section .customer-info {
    text-align: left;
}

.reviews-section .name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-bottom: 2px;
}

.reviews-section .location {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews-section .verified-badge {
    background: #00b67a;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.reviews-section .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00b67a;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 182, 122, 0.3);
    z-index: 10;
}

.reviews-section .nav:hover {
    background: #00a568;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 182, 122, 0.4);
}

.reviews-section .nav:active {
    transform: translateY(-50%) scale(0.95);
}

.reviews-section .prev {
    left: -55px;
}

.reviews-section .next {
    right: -55px;
}

.reviews-section .dots {
    text-align: center;
    margin-top: 25px;
}

.reviews-section .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-section .dot:hover {
    background: #adb5bd;
    transform: scale(1.2);
}

.reviews-section .dot.active {
    background: #00b67a;
    transform: scale(1.3);
    box-shadow: 0 2px 4px rgba(0, 182, 122, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .reviews-section {
        padding: 15px;
    }
    
    .reviews-section .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .reviews-section .trustpilot-badge {
        align-self: center;
    }
    
    .reviews-section .review {
        padding: 25px 20px;
    }
    
    .reviews-section .quote {
        font-size: 16px;
        padding: 15px 25px;
    }
    
    .reviews-section .customer {
        flex-direction: column;
        gap: 10px;
    }
    
    .reviews-section .customer-info {
        text-align: center;
    }
    
    .reviews-section .nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .reviews-section .prev {
        left: -45px;
    }
    
    .reviews-section .next {
        right: -45px;
    }
}

@media (max-width: 480px) {
    .reviews-section .prev {
        left: 10px;
    }
    
    .reviews-section .next {
        right: 10px;
    }
    
    .reviews-section .nav {
        background: rgba(0, 182, 122, 0.9);
        backdrop-filter: blur(10px);
    }
}

/* Touch device improvements */
@media (hover: none) {
    .reviews-section .review:hover {
        transform: none;
    }
    
    .reviews-section .nav:hover {
        transform: translateY(-50%);
    }
}