/* WorkOn Footer Styles - Dark Theme */
footer.workon-footer {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333333 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer.workon-footer .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Ensure full width coverage */
body {
    overflow-x: hidden;
}

/* Company Information Section */
.company-info {
    margin-bottom: 2rem;
}

.company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.company-details {
    margin-top: 1.5rem;
}

.company-name {
    color: #333333 !important;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.company-title {
    color: #666666 !important;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.company-description {
    color: #666666 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 315px;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 2rem;
}

.section-title {
    color: #333333 !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}

.footer-links li {
    margin-bottom: 0.75rem !important;
}

.footer-links a {
    color: #666666 !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 8px;
}

.footer-links a:hover::before {
    content: "→";
    position: absolute;
    left: -8px;
    color: #667eea;
    font-weight: 600;
}


/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.copyright p {
    color: #666666 !important;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.social-media {
    text-align: right;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: #1a1a1a !important;
    border: 2px solid #dee2e6 !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: transparent;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-icon.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Footer adjustments when bottom navigation menu appears */
    .workon-footer {
        padding: 2rem 0 6rem !important; /* Appropriate bottom padding for fixed bottom menu */
        width: 100vw;
        max-width: 100vw;
    }
    
    .workon-footer .container {
        padding: 0 1.5rem;
    }
    
    /* Adjust footer layout for mobile */
    .footer-top .row {
        flex-direction: column;
    }
    
    .footer-top .col-lg-5,
    .footer-top .col-lg-3,
    .footer-top .col-lg-4 {
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .company-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-company-logo {
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        margin-bottom: 1rem !important;
    }
    
    .company-details {
        text-align: center;
        margin-top: 1rem;
    }
    
    .company-description {
        max-width: none;
        margin: 0 auto;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Footer bottom section adjustments */
    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .social-media {
        text-align: center;
        margin-top: 0;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1rem;
    }
    
    .copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .workon-footer {
        padding: 2rem 0 6rem !important;
        width: 100vw;
        max-width: 100vw;
    }
    
    .workon-footer .container {
        padding: 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .social-icons {
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .workon-footer {
        padding: 2rem 0 6rem !important; /* Appropriate bottom padding for fixed bottom menu */
        width: 100vw;
        max-width: 100vw;
    }
    
    .workon-footer .container {
        padding: 0 1rem;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
        margin-right: 12px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 0.5rem;
    }
    
    .section-title {
        font-size: 0.95rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
}
