    /* Automotive Footer - Scoped CSS */
.auto-footer {
    --auto-dark: #272264;
    --auto-red: #e63946;
    --auto-blue: #457b9d;
    --auto-light: #f1faee;
    --auto-accent: #a8dadc;
    
    background: linear-gradient(135deg, var(--auto-dark) 0%, #12161a 100%);
    color: var(--auto-light);
      padding: 30px 0 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--auto-red);
}

.auto-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.auto-footer .footer-section {
    position: relative;
    z-index: 2;
}

.auto-footer .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.auto-footer .footer-logo i {
    font-size: 2rem;
    color: var(--auto-red);
    margin-right: 10px;
    animation: autoFooterPulse 2s infinite;
}

.auto-footer .footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--auto-red), var(--auto-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.auto-footer .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--auto-accent);
    position: relative;
    padding-bottom: 10px;
}

.auto-footer .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--auto-red);
}

.auto-footer .footer-links {
    list-style: none;
}

.auto-footer .footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.auto-footer .footer-links li:hover {
    transform: translateX(5px);
}

.auto-footer .footer-links a {
    color: var(--auto-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.auto-footer .footer-links a:hover {
    color: var(--auto-red);
}

.auto-footer .footer-links i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.auto-footer .contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.auto-footer .contact-info i {
    margin-right: 10px;
    color: var(--auto-accent);
    width: 20px;
    text-align: center;
}

.auto-footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.auto-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--auto-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.auto-footer .social-links a:hover {
    background: var(--auto-red);
    transform: translateY(-3px);
}

.auto-footer .footer-bottom {
    text-align: center;
 
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes autoFooterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes autoFooterMoveWheel {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Decorative Elements */
.auto-footer .footer-wheel {
    position: absolute;
    opacity: 0.03;
    font-size: 8rem;
    color: var(--auto-accent);
    animation: autoFooterMoveWheel 20s linear infinite;
    z-index: 1;
}

.auto-footer .wheel-1 {
    bottom: -50px;
    left: 10%;
    animation-delay: 0s;
}

.auto-footer .wheel-2 {
    bottom: -80px;
    right: 15%;
    animation-delay: 5s;
    animation-direction: reverse;
}


  .auto-footer .footer-links {
        padding: 0;
    }
/* Responsive */
@media (max-width: 768px) {
    
  
    .auto-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .auto-footer .footer-section h3 {
        margin-bottom: 15px;
    }
    
    .smiles-section {
    padding: 46px 20px;
    }
    
    .auto-footer .footer-wheel {
        font-size: 5rem;
    }
}
.footer{
    display: none;
}
.footer-bottom a {
    color: #da414e;
}