/* SAS Footer Enhanced Styles */
.sas-footer-enhanced {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 3rem 0 2rem;
    margin-top: 2rem;
    color: #333;
}

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

.sas-footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sas-footer-4col {
    grid-template-columns: repeat(4, 1fr);
}

.sas-footer-3col {
    grid-template-columns: repeat(3, 1fr);
}

.sas-footer-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e8e8e8;
}

.sas-footer-section h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 0.5rem;
}

/* Company Info Styles */
.sas-company-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sas-company-info .dashicons {
    color: #f39c12;
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.sas-company-info a {
    color: #333;
    text-decoration: none;
}

.sas-company-info a:hover {
    color: #f39c12;
}

.sas-company-info small {
    color: #666;
    font-size: 0.9rem;
}

/* Quick Links Styles */
.sas-quick-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sas-quick-links li {
    margin: 0.5rem 0;
}

.sas-quick-links a {
    color: #333;
    text-decoration: none;
    padding: 0.25rem 0;
    display: block;
    transition: color 0.3s, padding-left 0.3s;
}

.sas-quick-links a:hover {
    color: #f39c12;
    padding-left: 0.5rem;
}

/* Recent Vacatures Styles */
.sas-recent-vacatures ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sas-recent-vacatures li {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #f39c12;
}

.sas-recent-vacatures a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.sas-recent-vacatures a:hover {
    color: #f39c12;
}

/* Social Media Styles */
.sas-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sas-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.sas-social-link:hover {
    background-color: #f39c12;
    color: white;
}

.sas-social-link.linkedin:hover {
    background-color: #0077b5;
}

.sas-social-link.facebook:hover {
    background-color: #1877f2;
}

.sas-social-link.twitter:hover {
    background-color: #1da1f2;
}

.sas-social-link.whatsapp:hover {
    background-color: #25d366;
}

.sas-social-link .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sas-footer-4col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sas-footer-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sas-footer-enhanced {
        padding: 2rem 0 1rem;
    }
    
    .sas-footer-container {
        padding: 0 1rem;
    }
    
    .sas-footer-4col,
    .sas-footer-3col {
        grid-template-columns: 1fr;
    }
    
    .sas-footer-section {
        padding: 1rem;
    }
    
    .sas-social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sas-social-link {
        flex: 1;
        min-width: calc(50% - 0.5rem);
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sas-footer-grid {
        gap: 1rem;
    }
    
    .sas-footer-section {
        padding: 0.75rem;
    }
    
    .sas-footer-section h4 {
        font-size: 1rem;
    }
    
    .sas-social-link {
        min-width: 100%;
        margin-bottom: 0.25rem;
    }
}

/* Integration with existing theme footer */
.site-footer .sas-footer-enhanced {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .sas-footer-enhanced {
        background: #1a1a1a;
        color: #e0e0e0;
        border-top-color: #333;
    }
    
    .sas-footer-section {
        background: #2d2d2d;
        border-color: #404040;
    }
    
    .sas-footer-section h4 {
        color: #f39c12;
    }
    
    .sas-company-info a,
    .sas-quick-links a,
    .sas-recent-vacatures a {
        color: #e0e0e0;
    }
    
    .sas-recent-vacatures li {
        background: #333;
    }
    
    .sas-social-link {
        color: #e0e0e0;
    }
}
