/* Compact Professional Footer - Minimal Space Usage */
/* Override all conflicting styles from saaspik theme and other CSS files */

#footer,
#footer.footer-two,
footer#footer,
footer.footer-two {
    width: 100% !important;
    background: #ffffff !important;
    border-top: 1px solid #e1dfdd !important;
    margin-top: 0 !important; /* Reset to original position */
    margin-bottom: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
    z-index: 1;
}

#footer .container,
#footer.footer-two .container,
footer#footer .container,
footer.footer-two .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px 80px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.footer-inner,
#footer .footer-inner,
.footer-two .footer-inner {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Horizontal Footer Layout - Single Line */
.footer-horizontal {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

/* Footer Links - Compact */
.footer-links,
.footer-horizontal .footer-links {
    display: flex !important;
    align-items: center;
    gap: 0 !important;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #605e5c;
    text-decoration: none;
    padding: 4px 12px;
    transition: color 0.15s ease;
    position: relative;
}

.footer-links a:hover {
    color: #0078d4;
}

.footer-links a:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -2px;
    color: #c8c6c4;
    font-weight: normal;
}

/* Social Media Icons - Smaller */
.footer-social-link,
.footer-horizontal .footer-social-link {
    display: flex !important;
    gap: 12px !important;
    align-items: center;
}

.footer-social-link a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #605e5c;
    font-size: 14px;
    transition: color 0.15s ease;
    text-decoration: none;
}

.footer-social-link a:hover {
    color: #0078d4;
}

/* Site Info Section - Inline with Footer */
.site-info {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px !important;
    border-top: 1px solid #e1dfdd !important;
    margin-top: 16px !important;
}

.copyright,
.site-info .copyright,
.footer-two .copyright {
    font-size: 12px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    color: #605e5c !important;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
}

.copyright p,
.site-info .copyright p,
.footer-two .copyright p {
    margin: 0 !important;
    margin-bottom: 0 !important;
}

.copyright a {
    color: #0078d4;
    text-decoration: none;
    transition: color 0.15s ease;
}

.copyright a:hover {
    color: #005a9e;
    text-decoration: underline;
}

.site-info-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #605e5c;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
}

.site-info-menu li {
    position: relative;
}

.site-info-menu li:not(:last-child)::after {
    content: '·';
    margin: 0 8px;
    color: #c8c6c4;
}

.site-info-menu a {
    color: #605e5c;
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-info-menu a:hover {
    color: #0078d4;
}

/* Override saaspik theme footer styles */
#footer .footer-inner {
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#footer .widget.footer-widget,
#footer .footer-menu,
#footer .footer-logo {
    display: none !important; /* Hide old footer widgets */
}

/* Responsive Design */
@media (max-width: 1024px) {
    #footer .container,
    #footer.footer-two .container {
        padding: 18px 40px !important;
    }
}

@media (max-width: 768px) {
    #footer .container {
        padding: 16px 24px;
    }
    
    .footer-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .site-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .site-info-menu {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #footer .container {
        padding: 14px 16px;
    }
    
    .footer-links a {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .copyright {
        font-size: 11px;
    }
    
    .site-info-menu {
        font-size: 11px;
    }
}

