/* Dealership CTA Banner - Inside Service Column */
.service-right-col .dealership-cta-banner {
    background: linear-gradient(135deg, #00358d 0%, #0056b3 100%);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 53, 141, 0.15);
}

.service-right-col .dealership-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.service-right-col .dealership-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.service-right-col .cta-info h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.service-right-col .cta-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.service-right-col .dealership-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: white;
    color: #00358d;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.service-right-col .dealership-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-right-col .dealership-btn:hover::before {
    left: 100%;
}

.service-right-col .dealership-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-right-col .dealership-btn .btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-right-col .dealership-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design for Service Column */
@media (max-width: 768px) {
    .service-right-col .dealership-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-right-col .cta-info h3 {
        font-size: 1.3rem;
    }
    
    .service-right-col .dealership-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .service-right-col .dealership-cta-banner {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .service-right-col .cta-info h3 {
        font-size: 1.2rem;
    }
    
    .service-right-col .dealership-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-right-col .dealership-cta-banner {
    animation: fadeInUp 0.6s ease-out;
}
