/* Custom styles for Real GTA Movers */

body {
    background-color: #0a0a0a;
}

.service-card {
    perspective: 1000px;
}

/* Reviews Carousel Animation */
#reviews-carousel {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    cursor: grab;
}

#reviews-carousel:active {
    cursor: grabbing;
}

.review-card {
    flex: 0 0 400px;
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #c41e3a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a01830;
}

/* Smooth transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
