/* Professional Footer Styles */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 40px 0 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 25px;
    padding: 0 0 25px;
}

.footer-about {
    max-width: 320px;
}

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

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.footer-about p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact {
    margin-top: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.footer-contact i {
    color: #667eea;
    width: 18px;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-tagline {
    margin-top: 3px !important;
    font-size: 0.8rem !important;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 0;
        margin-top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 1rem;
    }

    .footer-section.footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-about p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .footer-section ul li {
        margin-bottom: 5px;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 12px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: nowrap !important;
        overflow-x: auto;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 0 0;
        margin-top: 0;
    }

    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .footer-contact {
        margin-top: 10px;
    }
    
    .footer-contact p {
        justify-content: center;
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .footer-section ul li {
        margin-bottom: 4px;
    }
    
    .footer-section ul li a {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        padding: 10px 0;
    }
    
    .footer-bottom-content {
        gap: 10px;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }
    
    .footer-tagline {
        font-size: 0.7rem !important;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
    
    .footer-badges {
        gap: 8px;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        justify-content: center;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}
