/* =========================================
   1. FOOTER STYLING (Matching Header Vibe)
   ========================================= */

.site-footer {
    background-color: #000000 !important;
    border-top: none !important;
    margin-top: 0;
    padding: 15px 0 10px;
}

.footer-inner {
    max-width: 1400px !important;
    margin: 0 auto;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

/* =========================================
   2. FOOTER TOP SECTION
   ========================================= */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

/* Footer Brand/Logo */
.footer-brand {
    flex-shrink: 0;
}

.footer-brand-name {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-brand-name:hover {
    color: #b5ff00 !important;
    transform: translateY(-2px);
}

/* =========================================
   3. FOOTER MENU STYLING
   ========================================= */

.footer-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-navigation ul li a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect - matches header menu */
.footer-navigation ul li a:hover {
    color: #b5ff00 !important;
    transform: translateY(-2px);
}

/* Remove any default underline effects */
.footer-navigation ul li a::after {
    display: none !important;
}

/* =========================================
   4. FOOTER BOTTOM SECTION
   ========================================= */

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom p:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   5. RESPONSIVE ADJUSTMENTS
   ========================================= */

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    
    .footer-brand-name {
        font-size: 18px;
    }
    
    .site-footer {
        padding: 20px 0 15px;
    }
}

@media (max-width: 480px) {
    .footer-navigation ul {
        gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .footer-navigation ul li a {
        padding: 5px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* =========================================
   6. ADDITIONAL POLISH
   ========================================= */

/* Remove any default footer borders or shadows */
.site-footer::before,
.site-footer::after {
    display: none !important;
}

/* Smooth transition for all interactive elements */
.footer-brand-name,
.footer-navigation ul li a,
.footer-bottom p {
    transition: all 0.3s ease;
}