/* Footer Styles - Compact Design */

.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 1.5rem 0 1rem;
    margin-top: auto;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 50%, #ffffff 100%);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Main Footer Content - More Compact */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2rem;
    align-items: start;
}

.footer-brand-section {
    max-width: 400px;
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.footer-description {
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Footer Links Grid - More Compact */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #333333;
    padding-bottom: 0.3rem;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-list a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-left: 3px solid transparent;
    padding-left: 0.5rem;
}

.footer-nav-list a:hover {
    color: #ffffff;
    border-left-color: #ffffff;
    transform: translateX(5px);
}

/* Social Links - Compact */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-1px);
}

.social-link i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.social-link span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Info - Compact */
.footer-contact {
    margin-top: 0.5rem;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    margin: 0;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333333;
    font-size: 0.85rem;
}

.contact-email i {
    font-size: 1rem;
    color: #ffffff;
}

.contact-email a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

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

/* Footer Bottom - Compact */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid #333333;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-copyright {
    flex: 1;
    max-width: 75%;
}

.footer-copyright p {
    margin: 0 0 0.6rem 0;
    color: #aaaaaa;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-copyright p:first-child {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-copyright p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    color: #999999 !important;
    font-style: normal;
    margin-bottom: 0.5rem !important;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.footer-legal-links a:hover {
    color: #000000;
    background: #ffffff;
    border-color: #ffffff;
}

/* Mobile Responsive - Compact */
@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 0.8rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-legal-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-legal-links a {
        padding: 0.7rem 1.5rem;
    }
}

/* Hover Effects and Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.3s;
}
