/* ================= FOOTER RSUD ================= */

.footer-rsud{
    background:#f8fafc;
    border-top:1px solid #e5e7eb;
    position:relative;
}


/* FOOTER CONTENT */
.footer-container{
    max-width:1400px;
    margin:auto;
    padding:30px 20px;
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1.4fr;
    gap:30px;
}


/* TITLE */
.footer-block h4{
    font-size:18px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:15px;
    position:relative;
}


/* RED ACCENT */
.footer-block h4::after{
    content:"";
    display:block;
    width:40px;
    height:3px;
    background:#e60012;
    margin-top:8px;
}

/* TEXT */
.footer-block p{
    color:#475569;
    line-height:1.8;
    font-size:15px;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    padding:15px;
    background:#eef2f7;
    color:#64748b;
    font-size:14px;
}

/* HOVER */
.footer-block{
    transition:.3s ease;
}

.footer-block:hover{
    transform:translateY(-3px);
}

/* BRAND */
.footer-brand{
    display:flex;
    align-items:center;
    gap:20px;
}

.footer-brand img{
    width:55px;
    height:auto;
}

.footer-social{
    margin-top:20px;
    display:flex;
    gap:12px;
}

.footer-social a{
    border-radius:50%;
    background:#e60012;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
    width:42px;
    height:42px;
    font-size:18px;
}

.footer-social a:hover{
    transform:translateY(-5px);
    background:#9f0712;
    text-decoration:none;
}

.footer-social a i{
    color:white;
}

.footer-block p i{
    color:#e60012;
    width:20px;
}

/* ================= MAP ================= */
.footer-map iframe{
    width:100%;
    height:230px;
    border:0;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

/* RESPONSIVE */
@media(max-width:768px){
    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
    }
}