@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: url('purple-big.png') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    color: #1A1A1A; /* Dark grey-black for elegant contrast */
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}



.invert-logo {
    filter: invert(0) !important;
    -webkit-filter: invert(0) !important;
}

/* Testimonial Card Styling */
.testimonial-card {
    padding: 5px;
}

.testimonial-card .card {
    max-width: 100%;
    border: 1px solid rgba(26, 26, 26, 0.3); /* Subtle dark grey border */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.15); /* Softer, deeper shadow */
    background: #F5F6F5; /* Arctic White for a premium base */
}

/* Image Styling */
.testimonial-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 0 0;
}

.testimonial-card .image-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.testimonial-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Base Image Label Styling */
.testimonial-card .image-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #1A1A1A; /* Dark grey-black for luxury */
    color: #FFFFFF;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(26, 26, 26, 0.3);
    z-index: 1;
    border: 1px solid #1A1A1A;
    transition: all 0.3s ease;
}

/* Hover effect for base label */
.testimonial-card .image-label:hover {
    background-color: #D9D9D9; /* Light grey for glossy hover */
    color: #1A1A1A;
    box-shadow: 0 6px 14px rgba(26, 26, 26, 0.4);
}

/* Base Image Label Styling */
.testimonial-card .image-label-left {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #40184d; /* Dark grey-black for luxury */
    color: #FFFFFF;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    z-index: 1;
    border: 1px solid #40184d;
    transition: all 0.3s ease;
}

/* Hover effect for base label */
.testimonial-card .image-label-left:hover {
    background-color: #D9D9D9; /* Light grey for glossy hover */
    color: #1A1A1A;
    box-shadow: 0 6px 14px rgba(26, 26, 26, 0.4);
}

/* Specific Label Colors */
.image-label-danger,
.image-label-success,
.image-label-warning,
.image-label-info {
    background-color: #1A1A1A !important;
    border: 1px solid #1A1A1A !important;
    box-shadow: 0 4px 10px rgba(26, 26, 26, 0.3) !important;
    color: #FFFFFF !important;
}

/* Text Styling */
.testimonial-card .card-body {
    padding: 10px;
}

.testimonial-card .card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1A1A1A; /* Dark grey-black for titles */
}

.testimonial-card .card-text {
    font-size: 12px;
    color: #666666; /* Medium grey for subtle text */
    margin-bottom: 3px;
}

/* Glider Container Adjustments */
.glider-contain {
    position: relative;
    max-width: 1700px;
    margin: 0 auto;
}

.glider {
    display: flex;
    gap: 10px;
}

.glider-prev,
.glider-next {
    background-color: #1A1A1A; /* Dark grey-black navigation */
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 -30px;
    box-shadow: 0 4px 8px rgba(26, 26, 26, 0.3);
}

/* Filters and Top Filter Section */
.filters-section,
.top-filter-section {
    background: #F5F6F5; /* Arctic White */
    padding: 1.5rem;
    border-radius: 12px;
    position: sticky;
    top: 1rem;
    border: 1px solid rgba(26, 26, 26, 0.2);
    color: #1A1A1A;
    /* box-shadow: inset -3px 3px 9px 1px rgb(96 39 124 / 52%); */
}

/* Car Card Styling */
.car-card {
    background: rgba(245, 246, 245, 0.95); /* Glossy white */
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    margin-bottom: 1.5rem;
    min-height: 400px;
    position: relative;
    z-index: 0;
    /* box-shadow: inset -3px 3px 9px 1px rgb(96 39 124 / 52%); */

}

/* Progress Bar */
.custom-progress {
    background: #D9D9D9; /* Light grey base */
    border-radius: 15px;
    overflow: hidden;
    height: 25px;
    box-shadow: 0 2px 6px rgba(26, 26, 26, 0.2);
    position: relative;
    width: 100%; /* Ensure it takes full width */
}

.progress-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 25px; /* matches height for vertical centering */
    color: #281332;
    font-weight: bold;
    font-size: 14px;
    z-index: 1;
    pointer-events: none; /* Prevents label from blocking interactions */
}

.custom-progress-bar {
    background: #7adecc; /* Progress fill color */
    height: 100%;
    transition: width 1.5s ease-in-out;
    animation: progressFill 2s ease-in-out forwards;
    position: relative;
    z-index: 0;
}

/* Keyframes */
@keyframes progressFill {
    0% { width: 0; }
    100% { width: var(--progress-width, 75%); }
}

@keyframes stripeMove {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

/* Buttons */
.btn-special {
    background: #60277c; /* White gradient */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #60277c;
    box-shadow: 0 4px 8px rgba(26, 26, 26, 0.2);
}

.btn-special:hover {
    background: linear-gradient(45deg, #FFFFFF, #F5F6F5);
    box-shadow: 0 6px 14px rgba(26, 26, 26, 0.3);
}

.btn-outline-special {
    background: #60277c;
    color: white;
    border: 1px solid #60277c;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(26, 26, 26, 0.2);
}

.btn-outline-special:hover {
    background: linear-gradient(45deg, #F5F6F5, #FFFFFF);
    color: #1A1A1A !important;
    box-shadow: 0 6px 14px rgba(26, 26, 26, 0.3);
}

/* Additional Elements */
.car-card-title {
    color: #1A1A1A;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(26, 26, 26, 0.2);
    margin-bottom: 1rem;
}

.form-select {
    background: linear-gradient(135deg, #F5F6F5, #FFFFFF);
    color: #1A1A1A;
    border-radius: 12px;
    border: 1px solid #9f9e9e;
    padding: 0.5rem;
    font-size: 14px;
    margin-right: 1rem;
    transition: background 0.3s ease-in-out;
    position: relative;
    appearance: none; /* Optional */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%231A1A1A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 25px; /* Space for the arrow */
}

.form-select::-ms-expand {
    display: none; /* Hides the default arrow in IE/Edge */
}

/* Badge Styling for card-text */
.testimonial-card .card-text {
    font-size: 12px;
    font-weight: 500; /* Slightly bold for prominence */
    color: #281332 !important;
    background-color: #cfd0d0; /* Dark grey-black badge background */
    padding: 4px 10px; /* Compact padding for badge shape */
    margin: 3px 0; /* Spacing between badges */
    border-radius: 12px; /* Pill-shaped corners */
    box-shadow: 0 2px 4px rgba(26, 26, 26, 0.2); /* Subtle glossy shadow */
    text-transform: uppercase; /* Uppercase for a premium feel */
    transition: all 0.3s ease; /* Smooth hover effect */
    font-weight: bolder;
}


.form-check-input:checked {
    background-color: #60277c; /* Solid #281332 for a luxurious check */
    border-color: #60277c;
    margin-right: 6px !important;
    box-shadow: 0 0 2px rgba(64, 13, 53, 0.3); /* More visible #281332 shadow */
}

.form-check-input {
    background-color: #ffffff; /* Dark grey for unchecked state */
    border-color: #281332; /* Solid #281332 border for a clear, elegant accent */
    margin-right: 6px !important;
    box-shadow: 0 0 2px rgba(64, 13, 53, 0.2); /* Subtle #281332 shadow */
}

.main-section {
    background: rgba(255, 255, 255, 0.739); /* Glossy Arctic White overlay */
    padding-top: 15px;
}

.main-image {
    width: 100%;
    height: 222px;
    object-fit: cover;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.action-buttons .btn {
    flex: 1;
    min-width: 100px;
}

/* Table Cell (replaced for elegance) */
td {
    background: none !important; /* Deep dark grey for a modern look */
    border: none; /* More visible #281332 border */
    border-bottom: solid 1px #281332 !important; /* Solid #281332 for a premium touch */
}

table {
    border-bottom:rgb(0, 0, 0);
    border-collapse: collapse;
}

/* Checklist Item as Button */
.checklist-item.btn-model {
    display: flex;
    align-items: center;
    justify-content: center; /* Center text horizontally */
    background-color: #F5F6F5; /* Glossy white background */
    color: #1A1A1A; /* Dark grey-black text */
    border: none; /* Dark purple border */
    border-radius: 8px; /* Slightly rounded for elegance */
    padding: 8px 12px; /* Comfortable padding */
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: inset -3px 3px 9px 1px rgb(96 39 124 / 52%); */

}

/* Hover Effect */
.checklist-item.btn-model:hover {
    background-color: #FFFFFF; /* Brighter white on hover */
    box-shadow: 0 4px 10px rgba(26, 26, 26, 0.25); /* Deeper shadow */
    transform: translateY(-1px); /* Slight lift */
    border-color: #60277c;
}

/* Active (Selected) State */
.checklist-item.btn-model.active {
    background-color: #60277c; /* Dark grey-black when active */
    color: #FFFFFF; /* White text for contrast */
    border-color: #1A1A1A;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3); /* Pronounced shadow */
}

/* Remove default checklist-item styles that might conflict */
.checklist-item {
    border-bottom: none; /* Remove border-bottom from original checklist-item */
    box-shadow: none; /* Remove inset shadow */
}

/* Ensure checklist-container fits the new button layout */
.checklist-container {
    background-color: transparent;
    border: none;
    padding: 0;
}