/* =========================================
   Detailing Page Custom Styles
========================================= */

/* Section Background */
.bg-dark-custom {
    background-color: #1b1b1b;
}

/* Detailing Cards */
.detailing-card-wrapper {
    height: 100%;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.detailing-card {
    background: #222;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.detailing-card-wrapper:hover .detailing-card {
    background: #2a2a2a;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: #a80909;
    transform: translateY(-10px);
}

.detailing-card .icon {
    font-size: 50px;
    color: #a80909;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.detailing-card-wrapper:hover .icon {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
    text-shadow: 0 0 15px rgba(168, 9, 9, 0.6);
}

.detailing-card h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 2;
}

.detailing-card-wrapper:hover h4 {
    color: #a80909;
}

.detailing-card p {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 300;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.detailing-card-wrapper:hover p {
    color: #bbb;
}

/* Background Number Effect */
.detailing-card .bg-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    /* z-index: 0; */
    transition: all 0.5s ease;
    line-height: 1;
}

.detailing-card-wrapper:hover .bg-number {
    color: rgba(168, 9, 9, 0.05);
    transform: scale(1.1);
}

/* Hover glow effect scan */
.detailing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 100%);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
    z-index: 1;
}

.detailing-card-wrapper:hover .detailing-card::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}


/* =========================================
   Used Cars Page Custom Styles
========================================= */

.used-cars-hero {
    margin-bottom: 50px;
}

.used-cars-hero h3 {
    color: #a80909;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 20px;
}

.used-cars-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
}

.used-cars-hero p {
    font-size: 18px;
    font-weight: 300;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature List Styles */
.feature-list-check {
    padding-left: 0;
    list-style: none;
}

.feature-list-check li {
    font-size: 17px;
    color: #bbb;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.feature-list-check li:hover {
    padding-left: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.feature-list-check li:last-child {
    border-bottom: none;
}

.feature-list-check li i {
    color: #417323;
    font-size: 18px;
    margin-right: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Contact Highlight Box (Right Side) */
.contact-highlight-box {
    background: #1b1b1b;
    padding: 40px 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

.contact-highlight-box:hover {
    border-color: #a80909;
    transform: translateY(-5px);
}

.contact-highlight-box h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 26px;
}

.contact-highlight-box p.subtitle {
    color: #999;
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-highlight-info {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-highlight-info:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-highlight-info strong {
    display: block;
    color: #a80909;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-highlight-info a,
.contact-highlight-info span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.contact-highlight-info a:hover {
    color: #a80909;
}

.pulse-button {
    animation: shadow-pulse 2s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(168, 9, 9, 0.5);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(168, 9, 9, 0);
    }
}