/* Custom CSS */

/* Fade In Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Range Slider Customization */
input[type=range] {
    -webkit-appearance: none;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #eab308;
    /* yellow-500 */
    cursor: pointer;
    margin-top: -4px;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.5);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #1e293b;
    /* slate-800 */
    border-radius: 4px;
}

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

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

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

/* Drag and Drop Styles */
.date-item {
    transition: all 0.2s ease;
}

.date-item.dragging {
    opacity: 0.5;
    transform: scale(0.98);
}

.date-item.drag-over-top {
    border-top: 2px solid #eab308 !important;
}

.date-item.drag-over-bottom {
    border-bottom: 2px solid #eab308 !important;
}

/* Service Card Hover Effect */
.service-card {
    position: relative;
}

.service-card:hover {
    border-color: rgba(202, 138, 4, 0.3) !important;
    box-shadow: 0 0 30px rgba(202, 138, 4, 0.05);
}