/* ==================== FOOTER PARKING NARANJA ==================== */

.new-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
}

.new-footer .footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

/* Brand Section */
.new-footer .brand-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new-footer .brand-logo {
    width: 180px;
    height: auto;
}

.new-footer .brand-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.new-footer .badge-aev {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
    transition: all 0.3s ease;
}

.new-footer .badge-aev:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.new-footer .badge-aev img {
    width: 150px;
    height: auto;
}

/* Links Grid */
.new-footer .links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.new-footer .link-col h4 {
    color: #ff5a00;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.new-footer .link-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.new-footer .link-col a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Contact Section */
.new-footer .contact-section {
    text-align: right;
    font-style: normal;
}

.new-footer .contact-section .title {
    color: #ff5a00;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.new-footer .contact-section .phone {
    margin-bottom: 8px;
}

.new-footer .contact-section .phone a {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.new-footer .contact-section .phone a:hover {
    color: #ff5a00;
}

.new-footer .contact-section .email {
    margin-bottom: 15px;
}

.new-footer .contact-section .email a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.new-footer .contact-section .email a:hover {
    color: #ffffff;
}

.new-footer .contact-section .schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.new-footer .contact-section .schedule .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Bottom Bar */
.new-footer .bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    text-align: center;
}

.new-footer .bottom-bar span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ==================== FOOTER RESPONSIVE ==================== */

@media (max-width: 992px) {
    .new-footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .new-footer .contact-section {
        text-align: left;
        grid-column: span 2;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .new-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 25px;
    }
    
    .new-footer .brand-section {
        text-align: center;
        align-items: center;
    }
    
    .new-footer .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .new-footer .contact-section {
        text-align: center;
        grid-column: auto;
    }
    
    .new-footer .contact-section .schedule {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .new-footer .footer-main {
        padding: 30px 20px;
    }
    
    .new-footer .links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .new-footer .link-col a:hover {
        padding-left: 0;
    }
    
    .new-footer .contact-section .phone a {
        font-size: 20px;
    }
}
