/* ============================================
   MODERN FOOTER - CLEAN & COMPACT
   ============================================ */
.footer-new {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    margin-top: 3rem;
}

.footer-content {
    padding: 2.5rem 0 1.5rem;
}

/* Widget Title */
.widget-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #667eea, #764ba2);
}

/* Widget Text */
.widget-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Contact Items */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.contact-item i {
    width: 20px;
    text-align: center;
    color: #667eea;
}

.contact-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #fff;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '›';
    margin-right: 0.5rem;
    color: #667eea;
    font-weight: bold;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
}

.copyright {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

/* Social Links */
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.footer-social li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-social li a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .footer-content {
        padding: 2rem 0 1.25rem;
    }
    
    .footer-new {
        margin-top: 2.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .footer-content {
        padding: 1.75rem 0 1rem;
    }
    
    .footer-new {
        margin-top: 2rem;
    }
    
    .footer-widget {
        margin-bottom: 1.5rem;
    }
    
    .widget-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        text-align: center;
    }
    
    .footer-bottom .row > div {
        margin-bottom: 0.75rem;
    }
    
    .footer-bottom .row > div:last-child {
        margin-bottom: 0;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .footer-content {
        padding: 1.5rem 0 0.75rem;
    }
    
    .widget-title {
        font-size: 0.9rem;
    }
    
    .widget-text,
    .footer-links a,
    .contact-item {
        font-size: 0.85rem;
    }
    
    .footer-social li a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}
