/* Site Footer Manager Styles */
.sfm-footer-section {
    background-color: #2c2c2c;
    /* Dark Grey match */
    color: #fff;
    padding: 60px 0 0 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.sfm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sfm-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    /* 5 Columns, outer ones wider */
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Columns with Borders */
.sfm-col {
    position: relative;
    padding-right: 20px;
}

.sfm-col:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .sfm-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .sfm-col:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 600px) {
    .sfm-footer-grid {
        grid-template-columns: 1fr;
    }
}

.sfm-title {
    color: var(--sfm-text, #fff);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.sfm-logo {
    max-width: 150px;
    margin-bottom: 15px;
    display: block;
}

.sfm-desc p {
    color: #aaa;
    margin: 0;
}

.sfm-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sfm-col ul li {
    margin-bottom: 10px;
}

.sfm-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.sfm-col ul li a:hover {
    color: var(--sfm-text, #fff);
    opacity: 1;
}

/* Subscribe Section */
.sfm-col-connect .sfm-subscribe-wrapper {
    margin-bottom: 20px;
}

/* Override Site Subscribe Plugin Styles within Footer to match Image */
.sfm-footer-section .site-subscribe-form {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    max-width: 100% !important;
}

.sfm-footer-section .site-subscribe-form input[type="email"] {
    background: #444 !important;
    border: 1px solid #555 !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 12px !important;
    width: 100% !important;
    margin-bottom: 10px !important;
}

.sfm-footer-section .site-subscribe-form button {
    background: #3498db !important;
    /* Blue from image */
    color: #fff !important;
    border-radius: 4px !important;
    width: 100% !important;
    padding: 12px !important;
    font-weight: 600 !important;
}

/* Social Icons */
.sfm-social-icons {
    display: flex;
    gap: 10px;
}

.sfm-social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #2c2c2c;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s;
}

.sfm-social-icons a:hover {
    background: #3498db;
    color: #fff;
}

/* Bottom Bar */
.sfm-bottom-bar {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Just in case */
    text-align: center;
}

.sfm-bottom-desc {
    color: #888;
    margin-bottom: 15px;
    font-size: 13px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sfm-copyright {
    color: #666;
    font-size: 12px;
}