* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.car_reviews-section {
    background: #f5f5f5;
    padding: 50px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

.car_reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.car_section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
    position: relative;
    opacity: 0;
    animation: slideInFromTop 1s ease-out 0.2s forwards;
}

.car_section-title .car_highlight {
    color: #b8860b;
    font-weight: 600;
    display: inline-block;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.car_carousel-container {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	position: relative;
    margin-bottom: 40px;
    perspective: 1000px;
}

.car_carousel-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.car_review-card {
    min-width: 33.333%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
}

.car_review-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(184, 134, 11, 0.1);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(184, 134, 11, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.car_review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.8s;
    z-index: 1;
}

.car_review-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car_review-item:hover {
    transform: translateY(-8px) rotateX(5deg) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 5px 20px rgba(184, 134, 11, 0.2);
}

.car_review-item:hover::before {
    left: 100%;
}

.car_review-item:hover::after {
    opacity: 1;
}

.car_review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.car_reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.car_reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8860b, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4); }
}

.car_reviewer-name {
    font-weight: 600;
    color: #333;
    font-size: 1.5rem;
}

.car_stars {
    color: #ffc107;
    font-size: 1.2rem;
    display: flex;
    gap: 2px;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 8px #ffc107); }
}


.car_review-text {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.5;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.car_review-date {
    color: #888;
    font-size: 0.85rem;
    margin-top: 12px;
    text-align: right;
    position: relative;
    z-index: 2;
}

.car_carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 2px solid rgba(184, 134, 11, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    backdrop-filter: blur(10px);
}

.car_carousel-nav:hover {
    background: linear-gradient(145deg, #b8860b, #ffd700);
    color: white;
    transform: translateY(-50%) scale(1.15);
    border-color: #b8860b;
    opacity: 1;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.car_prev { left: -20px; }
.car_next { right: -20px; }

.car_add-review-container {
	
    text-align: center;
    animation: slideInFromBottom 1s ease-out 0.5s both;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.car_add-review-btn {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(66, 133, 244, 0.3),
        0 0 0 0 rgba(66, 133, 244, 0.5);
    position: relative;
    overflow: hidden;
}

.car_add-review-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.car_add-review-btn:hover {
    background: linear-gradient(135deg, #3367d6, #1557b0);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(66, 133, 244, 0.4),
        0 0 0 8px rgba(66, 133, 244, 0.1);
}

.car_add-review-btn:hover::before {
    width: 300px;
    height: 300px;
}

.car_google-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(0deg); }
    40% { transform: translateY(-4px) rotate(-5deg); }
    60% { transform: translateY(-2px) rotate(5deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .car_review-card {
        min-width: 100%;
        padding: 0 5px;
    }

    .car_review-item {
        height: 180px;
        padding: 20px;
    }

    .car_section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .car_carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .car_prev { left: -15px; }
    .car_next { right: -15px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .car_review-card {
        min-width: 50%;
    }
}