/* Exact Footer Design Styles */
.custom-footer {
    background: #fff !important;
    padding: 80px 0 20px !important;
    color: #333 !important;
    border-top: 1px solid #eee;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-brand-col {
    flex: 0 0 320px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 25px;
}

.subscribe-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-subscribe-form {
    position: relative;
    max-width: 320px;
    margin-bottom: 15px;
}

.footer-subscribe-form input {
    width: 100%;
    padding: 15px 120px 15px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 29px;
    background: #fff;
    font-size: 14px;
    outline: none;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.05);
}

.btn-subscribe {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: #515ada;
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #3d3dc7;
    box-shadow: 0 3px 12px rgba(255, 102, 0, 0.3);
}

.privacy-note {
    font-size: 12px;
    color: #999;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.social-links a.fb {
    background: #1877f2;
}

.social-links a.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a.yt {
    background: #ff0000;
}

.social-links a.ln {
    background: #0077b5;
}

.social-links a.tw {
    background: #000;
}

.footer-links-col {
    flex: 1;
    min-width: 160px;
    max-width: 250px;
}

.footer-links-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1e50;
    margin-bottom: 25px;
    position: relative;
    display: block;
}

.footer-links-col h3 a {
    color: inherit;
    text-decoration: none;
}

.footer-links-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #515ada;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col li {
    margin-bottom: 12px;
}

.footer-links-col a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: #515ada;
}

/* Solutions Grid */
.solutions-grid {
    display: flex;
    gap: 20px;
}

/* Skyline Graphic */
.footer-cityscape {
    width: 100vw;
    height: 120px;
    background: url('../integrio/img/skyline-original.webp') repeat-x bottom center;
    background-size: auto 100px;
    margin-top: 20px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    opacity: 0.8;
    pointer-events: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #777;
}

.legal-links a {
    color: #777;
    margin-left: 20px;
    text-decoration: none;
}

.legal-links a:hover {
    color: #333;
}

@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
    }

    .solutions-grid {
        flex-direction: column;
        gap: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links a {
        margin: 0 10px;
    }


}