/* Custom styles for modern design */
:root {
    --primary-color: #7d1918;
    --primary-hover: #7d1918;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --border-radius-sm: 0.5rem;
    --border-radius: 1rem;
    --border-radius-lg: 1.5rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 1rem 2rem rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--box-shadow-hover);
}

.card-rounded-4 {
    border-radius: var(--border-radius);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Button Styles */
.btn {
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.15);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
}

.btn-rounded {
    border-radius: 50px;
}

/* Form Styles */
.form-control {
    border: 1px solid #dee2e6;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.form-control.rounded-pill {
    border-radius: 50px;
    padding-left: 1.25rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

/* Hover Effects */
.hover-up {
    transition: var(--transition);
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

/* List group */
.list-group-item {
    border-left: none;
    border-right: none;
    padding: 1rem 0;
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Badge Styles */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.badge.rounded-pill {
    padding: 0.5rem 1rem;
}

/* Currency Buttons */
.currency-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    min-width: 70px;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-sm);
    background-color: #f8f9fa;
    transition: var(--transition);
}

.currency-btn:hover {
    border-color: #adb5bd;
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.currency-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0.25rem 0.75rem rgba(13, 110, 253, 0.15);
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.price-symbol {
    font-size: 1rem;
    opacity: 0.8;
}

/* Vehicle Feature Badges */
.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.badge-feature {
    background-color: rgba(125, 25, 24, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(125, 25, 24, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    transition: var(--transition);
}

.badge-feature:hover {
    background-color: rgba(125, 25, 24, 0.15);
    transform: translateY(-1px);
}

/* Vehicle Card Enhancements */
.cardFleet {
    transition: var(--transition);
}

.cardFleet:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.cardFleet .cardImage img {
    transition: var(--transition);
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.cardFleet:hover .cardImage img {
    transform: scale(1.05);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        border-radius: 0.75rem;
    }

    .btn-lg {
        padding: 0.625rem 1.25rem;
    }

    .vehicle-features {
        gap: 0.3rem;
    }

    .badge-feature {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Whatsapp Chat Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

.whatsapp-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 360px;
    display: none;
    z-index: 1000;
}

.whatsapp-widget.widget-show {
    display: block;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
}

.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
}

.chat-content {
    height: 300px;
    overflow-y: auto;
    background-color: #ece5dd;
}

/* Whatsapp Chat Button */