.custom-footer {
    width: 100%;
    position: relative;
    background: #0b1220;
    color: #e5e7eb;
    padding: 20px 0 8px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}
.custom-footer .container {
    width: min(1200px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.custom-footer h3 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.custom-footer h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 28px;
    background: #3b82f6;
    margin-top: 8px;
}
.custom-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-footer ul li {
    margin-bottom: 6px;
}
.custom-footer ul li a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 0.92rem;
}
.custom-footer ul li a:hover {
    color: #ffffff;
}
.col-1, .col-2, .col-3, .col-3-f, .col-4 {
    padding: 0 4px;
}
.custom-footer .social-icons {
    margin-top: 6px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.custom-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.custom-footer .social-icons a:hover {
    background: #3b82f6;
    transform: translateY(-1px);
}
.custom-footer .footer-2 {
    width: 100%;
    color: #94a3b8;
    padding-top: 4px;
    padding-bottom: -4px;
    text-align: center;
    font-size: 0.85rem;
}

