.bling-footer {
    background: linear-gradient(135deg, #0b1222, #121b34);
    color: #fff;
    padding: 60px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #1f2537;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
}
.footer-logo span {
    color: #00d4ff;
}

.footer-social a {
    color: #fff;
    background: #1f2537;
    padding: 10px;
    border-radius: 50%;
    margin-left: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #1f2537;
    padding-bottom: 6px;
}

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

.footer-col ul li {
    margin: 8px 0;
    font-size: 14px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #00d4ff;
}

.footer-contact li {
    font-size: 14px;
    margin: 6px 0;
}

.footer-btn {
    display: inline-block;
    margin-top: 10px;
    background: #00d4ff;
    color: #000;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.footer-btn:hover {
    background: #00a0c8;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #999;
    border-top: 1px solid #1f2537;
    padding-top: 15px;
}
