/* Custom styles for transfer booking system */

/* Vertical line in price section */
.border-start {
    position: relative;
    border-left: none !important;
}

.border-start::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, #dee2e6 15%, #dee2e6 100%);
}

/* Discount badge styles */
.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: #333;
    font-weight: 500;
    text-align: right;
    padding: 0.5rem 1rem;
    z-index: 2;
}

.discount-badge .price-animation {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc3545;
}

.discount-badge .small {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.2rem;
}

/* Price animation styles */
.price-animation {
    animation: pulseFade 2s infinite;
}

@keyframes pulseFade {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Filter sidebar styles */
.filter-sidebar {
    background: var(--bs-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.filter-sidebar .form-label {
    font-weight: 500;
    color: var(--bs-gray-700);
}

/* Card effects */
.vehicle-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

/* Shine animation */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
} 