/**
 * Client Footer Styles
 * 
 * @package Singer Vielle Utilities
 * @since 1.3.2
 */

/* Elementor Global Colors */
:root {
    --e-global-color-primary: #86b2d1;
    --e-global-color-accent: #6b9bc3;
}

/* Footer Container */
.sv-client-footer {
    background: #002540;
    color: #ffffff;
    margin-top: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sv-footer-container {
    width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* Main Footer Content */
.sv-footer-main {
    padding: 60px 0 40px;
}

.sv-footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Footer Columns */
.sv-footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Company Info Column */
.sv-footer-logo {
    margin-bottom: 20px;
    /* Debug: ensure logo container is visible */
    min-height: 60px;
    display: flex;
    align-items: center;
}

.sv-footer-logo img {
    max-width: 150px;
    height: auto;
    display: block;
    /* SVG already has white fill, no filter needed */
}

.sv-footer-about {
    margin-bottom: 30px;
}

.sv-footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.sv-footer-network {
    margin-top: 20px;
}

.sv-footer-network svg {
    max-width: 150px;
    height: auto;
    /* SVG elements should have their own fill colors */
}

/* Navigation Links */
.sv-footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sv-footer-nav li {
    margin-bottom: 12px;
}

.sv-footer-nav a {
    color: #86b2d1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sv-footer-nav a:hover {
    color: #ffffff;
}

/* Social Media */
.sv-footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.sv-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sv-footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.sv-footer-social img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(20%) saturate(200%) hue-rotate(180deg) brightness(1.1) contrast(1);
    transition: filter 0.3s ease;
}

.sv-footer-social a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1) contrast(1);
}

/* Contact Information */
.sv-footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sv-footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.sv-footer-contact svg {
    width: 16px;
    height: 16px;
    fill: #86b2d1;
    margin-right: 10px;
    flex-shrink: 0;
    /* Using fill color directly, no filter needed */
}

.sv-footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sv-footer-contact a:hover {
    color: #86b2d1;
}

/* Subscribe Button */
.sv-footer-subscribe {
    margin-top: 20px;
}

.sv-subscribe-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #86b2d1 0%, #6b9bc3 100%);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sv-subscribe-btn:hover {
    background: linear-gradient(135deg, #6b9bc3 0%, #5a8ab2 100%);
    transform: translateY(-1px);
}

.sv-subscribe-btn svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

/* Footer Disclaimer */
.sv-footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sv-footer-disclaimer p {
    margin: 0;
    font-size: 12px;
    color: #999999;
}

/* Footer Bottom */
.sv-footer-bottom {
    background-image: linear-gradient(270deg, #002540 0%, #33aaff 400%);
    padding: 20px 0;
    width: 100%;
    margin: 0;
}

.sv-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 20px;
    text-align: left;
}

.sv-footer-bottom-content > div {
    flex: 1;
    min-width: 200px;
}

/* Desktop-specific bottom content styling */
.sv-footer-bottom-content .sv-footer-partners {
    flex: 2;
}

.sv-footer-bottom-content .sv-footer-copyright {
    flex: 1;
    text-align: end;
    justify-content: flex-end;
}

.sv-footer-copyright {
    display: flex;

}
.sv-footer-bottom-content .sv-footer-partner-logos {
    flex: 1;
    justify-content: flex-end;
}

/* Partners Section */
.sv-footer-partners {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sv-footer-partners p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.sv-footer-partners-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    flex-wrap: wrap;
}

.sv-footer-partners-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sv-footer-partners-nav a:hover {
    color: #86b2d1;
}

/* Copyright */
.sv-footer-copyright {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.sv-footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

/* Partner Logos */
.sv-footer-partner-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sv-footer-partner-logos a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sv-footer-partner-logos a:hover {
    color: #86b2d1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sv-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .sv-footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .sv-footer-container {
        padding: 0 15px;
    }
    
    .sv-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .sv-footer-column:first-child {
        grid-column: 1 / -1;
    }
    
    .sv-footer-column:last-child {
        grid-column: 1 / -1;
    }
    
    .sv-footer-main {
        padding: 30px 0 20px;
    }
    
    .sv-footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .sv-footer-nav li {
        margin-bottom: 10px;
    }
    
    .sv-footer-nav a {
        font-size: 13px;
    }
    
    .sv-footer-about p {
        font-size: 13px;
    }
    
    .sv-footer-social {
        gap: 12px;
    }
    
    .sv-footer-social a {
        width: 45px;
        height: 45px;
    }
    
    .sv-footer-social img {
        width: 25px;
        height: 25px;
    }
    
    .sv-footer-contact li {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .sv-footer-contact svg {
        width: 14px;
        height: 14px;
    }
    
    .sv-footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        align-items: start;
    }
    
    .sv-footer-bottom-content .sv-footer-partners {
        flex: none;
        flex-direction: column;
        gap: 15px;
        justify-content: flex-start;
    }
    
    .sv-footer-bottom-content .sv-footer-copyright {
        flex: none;
        display: flex;
        gap: 10px;
        text-align: center;
    }
    
    .sv-footer-bottom-content .sv-footer-partner-logos {
        flex: none;
        justify-content: center;
    }
    
    .sv-footer-partners p {
        font-size: 13px;
    }
    
    .sv-footer-partners-nav ul {
        justify-content: center;
        gap: 15px;
    }
    
    .sv-footer-partners-nav a {
        font-size: 13px;
    }
    
    .sv-footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sv-footer-container {
        padding: 0 10px;
    }
    
    .sv-footer-main {
        padding: 25px 0 15px;
    }
    
    .sv-footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sv-footer-column:first-child,
    .sv-footer-column:last-child {
        grid-column: 1;
    }
    
    .sv-footer-column h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .sv-footer-nav li {
        margin-bottom: 8px;
    }
    
    .sv-footer-nav a {
        font-size: 12px;
    }
    
    .sv-footer-about p {
        font-size: 12px;
    }
    
    .sv-footer-social {
        gap: 10px;
    }
    
    .sv-footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .sv-footer-social img {
        width: 22px;
        height: 22px;
    }
    
    .sv-footer-contact li {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .sv-footer-contact svg {
        width: 12px;
        height: 12px;
        margin-right: 8px;
    }
    
    .sv-footer-bottom {
        padding: 15px 0;
    }
    
    .sv-footer-bottom-content {
        gap: 12px;
    }
    
    .sv-footer-partners p {
        font-size: 12px;
    }
    
    .sv-footer-partners-nav ul {
        flex-direction: column;
        gap: 8px;
    }
    
    .sv-footer-partners-nav a {
        font-size: 12px;
    }
    
    .sv-footer-copyright p {
        font-size: 11px;
    }
    
    .sv-footer-disclaimer p {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .sv-footer-container {
        padding: 0 8px;
    }
    
    .sv-footer-main {
        padding: 20px 0 12px;
    }
    
    .sv-footer-content {
        gap: 20px;
    }
    
    .sv-footer-column h3 {
        font-size: 14px;
    }
    
    .sv-footer-nav a,
    .sv-footer-about p,
    .sv-footer-contact li,
    .sv-footer-partners p,
    .sv-footer-partners-nav a {
        font-size: 11px;
    }
    
    .sv-footer-social a {
        width: 35px;
        height: 35px;
    }
    
    .sv-footer-social img {
        width: 20px;
        height: 20px;
    }
    
    .sv-footer-contact svg {
        width: 10px;
        height: 10px;
    }
} 