/* ==== FOOTER STYLE ==== */

.bdw-footer {
    background: linear-gradient(180deg, #0d1b2a 0%, #000814 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Garis halus di atas footer */
.bdw-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, transparent, #007bff, transparent);
    transform: translateX(-50%);
}

/* Judul kolom */
.bdw-footer h3,
.bdw-footer h4 {
    color: #ffffff;
    position: relative;
}

.bdw-footer h3::after,
.bdw-footer h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 40px;
    height: 2px;
    background-color: #007bff;
    transform: translateX(-50%);
}

/* Deskripsi */
.bdw-footer p {
    font-size: 0.95rem;
    color: #bdbdbd;
}

/* Social media icons */
.bdw-footer .social-links a {
    display: inline-block;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.bdw-footer .social-links a:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

/* Menu dan kontak */
.bdw-footer ul {
    padding: 0;
    list-style: none;
}

.bdw-footer ul li {
    margin-bottom: 10px;
}

.bdw-footer a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bdw-footer a:hover {
    color: #007bff;
}

/* Ikon kontak */
.bdw-footer i {
    color: #007bff;
}

/* Garis pemisah */
.bdw-footer hr {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Copyright */
.bdw-footer .text-secondary {
    color: #bdbdbd !important;
}

.bdw-footer small {
    font-size: 0.85rem;
}

/* Responsif */
@media (max-width: 767.98px) {
    .bdw-footer h3::after,
    .bdw-footer h4::after {
        left: 0;
        transform: none;
    }

    .bdw-footer {
        text-align: center;
    }

    .bdw-footer .social-links a {
        margin: 0 5px;
    }
}
