/* ===================================================
   ROYA PLATFORM
   FOOTER
=================================================== */

.roya-footer {
    margin-top: 0 !important;
    padding: 70px 20px 40px;
    background: linear-gradient(
        135deg,
        #0d1b3d 0%,
        #1e88e5 100%
    );
    color: #ffffff;
    text-align: center;
}

.roya-footer .footer-logo h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
}

.roya-footer .footer-slogan {
    margin-bottom: 35px;
    color: #ffd166;
    font-size: 20px;
}

.roya-footer .footer-copy p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
}

.roya-footer .footer-social {
    margin-top: 35px;
}

.roya-footer .footer-social a {
    display: inline-block;
    margin: 6px;
    padding: 11px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.roya-footer .footer-social a:hover {
    background: #ffd166;
    color: #0d1b3d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .roya-footer {
        margin-top: 0 !important;
        padding: 55px 16px 32px;
    }

    .roya-footer .footer-logo h3 {
        font-size: 29px;
    }

    .roya-footer .footer-slogan {
        font-size: 18px;
    }
}