/* =========================
   FOOTER ONLY (ISOLATED)
   ========================= */

.footer {
    background-color: #6CA651;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 60px;
    margin-top: 0;
}

/* Layout kolom */
.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* LEFT */
.footer .footer-left {
    width: 30%;
}

.footer h3 {
    color: #f5f5f5;
    margin: 0;
    padding-bottom: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.footer .credit-cards img {
    width: 25%;
    vertical-align: middle;
}
.credit-cards{
    display:flex;
    align-items:center;
    gap:15px;          /* jarak antar logo */
    flex-wrap:nowrap;  /* supaya tidak turun ke bawah */
}

.credit-cards img{
    height:80px;       /* samakan tinggi logo */
    width:auto;
    object-fit:contain;
}
.footer .footer-copyright {
    color: #ececec;
    font-size: 14px;
    font-weight: normal;
    padding-top: 5%;
}

/* CENTER */
.footer .footer-center {
    width: 30%;
}

.footer .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer .footer-center p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
}

.footer .footer-center p span {
    display: block;
    font-size: 14px;
    line-height: 1.6;
}

.footer .footer-center a {
    color: #fff;
    /* warna normal */
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer .footer-center a:hover,
.footer .footer-center a:focus,
.footer .footer-center a:active {
    color: rgb(22, 255, 177);
    /* warna saat cursor / klik */
}
/* RIGHT */
.footer .footer-right {
    width: 30%;
}

.footer .footer-about {
    color: #ececec;
    font-size: 13px;
    line-height: 20px;
}

.footer .footer-about span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer .footer-media a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #33383b;
    border-radius: 50%;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    margin-right: 5px;
}

.footer .footer-media a:hover {
    background-color: rgb(0, 122, 82);
}

/* =========================
   RESPONSIVE FOOTER ONLY
   ========================= */
@media (max-width: 880px) {

    .footer .footer-left,
    .footer .footer-center,
    .footer .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
    }

    .footer .footer-center i {
        margin-left: 0;
    }
}
.subscribe-box {
    margin-top: 15px;
}

.subscribe-box h4 {
    margin-bottom: 8px;
    font-size: 14px;
}

.subscribe-box input {
    width: 80%;
    padding: 8px;
    margin-bottom: 6px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.subscribe-box button {
    width: 100%;
    padding: 8px;
    border: none;
    background: #c40000;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.subscribe-box button:hover {
    background: #900000;
}
.footer-follow{
    text-align:center;
}

.follow-text{
    font-size:14px;
    margin-bottom:10px;
    position:relative;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#000000; /* warna teks */
}

.follow-text:before,
.follow-text:after{
    content:"";
    position:absolute;
    top:50%;
    width:40px;
    height:1px;
    background:#ccc; /* warna garis tetap abu */
}

.follow-text:before{
    left:-50px;
}

.follow-text:after{
    right:-50px;
}