/* =========================================================
   MAKORO FOOTER
   Dedicated stylesheet: assets/css/footer.css
   ========================================================= */

.makoro-footer {
    margin-top: 0;
    padding: 62px 0 0;
    background: linear-gradient(135deg, #0b3027 0%, #0f3a30 55%, #0a2b24 100%);
    color: #dbe8e1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.makoro-footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-main-row {
    row-gap: 34px;
}

.footer-brand {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.4px;
}

.footer-desc {
    max-width: 365px;
    margin: 0 0 13px;
    color: #c5d8ce;
    font-size: 14px;
    line-height: 1.75;
}

.footer-tagline {
    margin: 0;
    color: #e2c46f;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.55;
}

.footer-heading {
    position: relative;
    margin: 0 0 19px;
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c5a24a, #e0c36e);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-address {
    color: #c5d8ce;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.55;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 3px;
    text-decoration: none;
}

.footer-address {
    display: inline-block;
}

/* =========================================================
   FOOTER BOTTOM / DEVELOPER CREDIT
   ========================================================= */

.footer-bottom {
    margin-top: 50px;
    background: #08251f;
    border-top: 1px solid rgba(224, 195, 110, 0.20);
}

.footer-bottom-inner {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.footer-developer-credit {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #d8e5df;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.footer-developer-credit strong {
    color: #e0bd62;
    font-weight: 700;
}

.footer-developer-credit a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-developer-credit a:hover {
    color: #e0bd62;
    text-decoration: none;
}

.footer-developer-credit .fa-phone {
    color: #e261a8;
    font-size: 12px;
}

.footer-developer-credit .fa-whatsapp {
    color: #25d366;
    font-size: 16px;
}

.footer-credit-divider {
    color: #789288;
}

/* =========================================================
   FLOATING ACTIONS
   ========================================================= */

.makoro-floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.makoro-floating-actions.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.makoro-float-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;
    color: #ffffff !important;
    text-decoration: none !important;
    cursor: pointer;

    box-shadow: 0 7px 20px rgba(6, 33, 27, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.makoro-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(6, 33, 27, 0.28);
    text-decoration: none !important;
}

.makoro-scroll-top {
    background: #d5b65c;
    color: #0b3027 !important;
    border: 1px solid rgba(11, 48, 39, 0.12);
    font-size: 14px;
}

.makoro-scroll-top:hover {
    background: #e0c46f;
    color: #08251f !important;
}

.makoro-whatsapp-float {
    background: #25d366;
    border: 1px solid rgba(255,255,255,0.28);
    font-size: 20px;
}

.makoro-whatsapp-float:hover {
    background: #20bd5a;
    color: #ffffff !important;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
    .makoro-footer {
        padding-top: 48px;
    }

    .footer-brand {
        font-size: 1.9rem;
    }

    .footer-bottom {
        margin-top: 38px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
    .makoro-footer {
        padding-top: 38px;
    }

    .makoro-footer .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-main-row {
        row-gap: 26px;
    }

    .footer-brand {
        font-size: 1.7rem;
    }

    .footer-desc {
        max-width: none;
        font-size: 13px;
        line-height: 1.65;
    }

    .footer-heading {
        margin-bottom: 14px;
        font-size: 14px;
    }

    .footer-links a,
    .footer-address {
        font-size: 13px;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-bottom-inner {
        min-height: 105px;
        padding: 18px 0;
        gap: 7px;
    }

    .footer-copyright {
        font-size: 14px;
    }

    .footer-developer-credit {
        font-size: 12.5px;
        gap: 5px;
    }

    .makoro-floating-actions {
        right: 16px;
        bottom: 18px;
        gap: 10px;
    }

    .makoro-float-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }

    .makoro-scroll-top {
        font-size: 13px;
    }

    .makoro-whatsapp-float {
        font-size: 20px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
    .footer-bottom-inner {
        min-height: 118px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-developer-credit {
        max-width: 320px;
        font-size: 11.5px;
    }

    .footer-credit-divider {
        display: none;
    }

    .makoro-floating-actions {
        right: 12px;
        bottom: 14px;
    }

    .makoro-float-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .makoro-scroll-top {
        font-size: 12px;
    }

    .makoro-whatsapp-float {
        font-size: 19px;
    }
}