/* Enhanced Footer Styles */

.footer-modern {
    background: #1f2937 !important;
    color: rgba(255, 255, 255, 0.95);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-modern .footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background: transparent !important;
}

/* Footer logo - use original colored logo, no filters */
.footer-modern .footer-brand img,
.footer-modern .footer-brand .servyn-logo,
footer img[src*="log_servyn.png"],
footer .servyn-logo {
    height: 120px !important;
    width: auto !important;
    max-width: 450px !important;
    object-fit: contain;
    filter: none !important; /* Use original logo colors */
    background: transparent !important;
    mix-blend-mode: normal !important;
    transition: all 0.3s ease;
}

.footer-modern .footer-brand img:hover,
footer .servyn-logo:hover {
    transform: scale(1.05);
}

.footer-modern .footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-modern .footer-section-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.footer-modern .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-modern .footer-links li {
    margin-bottom: 0.5rem;
}

.footer-modern .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-modern .footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-modern .footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.footer-modern .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-modern .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-modern .footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-modern .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-modern .footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer-modern .footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-modern .footer-bottom a:hover {
    color: white;
}

/* Quick Stats in Footer */
.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-stats-item {
    text-align: center;
}

.footer-stats-item .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.footer-stats-item .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-modern {
        padding: 2rem 0 1rem;
        margin-top: 3rem;
    }
    
    /* Logo sizes handled in logo-master.css for consistency */
}

@media (max-width: 576px) {
    /* Logo sizes handled in logo-master.css for consistency */
    
    .footer-modern .footer-section-title {
        margin-top: 1.5rem;
    }
    
    .footer-stats {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Admin/Executive Footer Variants */
.footer-modern.admin-footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.footer-modern.executive-footer {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

