.site-footer {
    background: linear-gradient(180deg, #16224a 0%, #0d1224 100%);
    color: #aab2c8;
    padding: 60px 0 0;
    font-family: 'Poppins', sans-serif;
}
.site-footer .footer-logo img { max-width: 180px; margin-bottom: 16px; }
.site-footer .footer-contact li {
    list-style: none;
    font-size: 13px;
    color: #9aa4c2;
    margin-bottom: 6px;
}
.site-footer .footer-contact li a { color: #c7cfe6; text-decoration: none; }
.site-footer .footer-contact li a:hover { color: #3dd6c8; }
.site-footer h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #1683c6 0%, #3dd6c8 100%);
    border-radius: 2px;
}
.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer .footer-links li { margin-bottom: 9px; }
.site-footer .footer-links li a {
    color: #9aa4c2;
    text-decoration: none;
    font-size: 13px;
    transition: color .2s, padding-left .2s;
}
.site-footer .footer-links li a:hover { color: #3dd6c8; padding-left: 4px; }
.footer-newsletter-text {
    font-size: 13px;
    line-height: 1.6;
    color: #cdd4ea;
}
.footer-newsletter-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 14px;
}
.footer-newsletter-form input {
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 13px;
    flex: 1;
    min-width: 0;
    color: #1c1f26;
    background: transparent;
}
.footer-newsletter-form button {
    background: linear-gradient(135deg, #1683c6 0%, #3dd6c8 100%);
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    transition: opacity .2s;
    flex-shrink: 0;
}
.footer-newsletter-form button:hover { opacity: 0.88; }
.footer-newsletter-form button i { color: #0d1224; font-size: 14px; }
.footer-stats {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding: 30px 0;
}
.footer-stat-item { text-align: center; }
.footer-stat-item .stat-value {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(90deg, #2f5bcf 0%, #6f9bea 60%, #3dd6c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3dd6c8; /* fallback */
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.footer-stat-item .stat-label {
    font-size: 12px;
    color: #9aa4c2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-bottom {
    background: #0a0e1c;
    padding: 16px 0;
}
.footer-bottom p {
    margin: 0;
    font-size: 12.5px;
    color: #7c85a0;
}
.footer-bottom a { color: #3dd6c8; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 900px) {
    .site-footer {
        padding: 48px 0 0;
        text-align: center;
    }
    .site-footer .footer-logo { display: flex; justify-content: center; }
    .site-footer .footer-contact { display: inline-block; text-align: left; margin: 0 auto; }
    .site-footer h4::after { left: 50%; transform: translateX(-50%); }
    .site-footer .row.g-4 { row-gap: 36px !important; }
    .footer-newsletter-form { max-width: 340px; margin-left: auto; margin-right: auto; }
    .footer-stats { margin-top: 36px; padding: 24px 0; }
    .footer-stat-item .stat-value { font-size: 22px; }
    .footer-stat-item .stat-label { font-size: 11px; }
    .footer-bottom .d-flex {
        flex-direction: column !important;
        text-align: center !important;
        gap: 6px !important;
    }
}
@media (max-width: 480px) {
    .site-footer { padding: 40px 0 0; }
    .site-footer .footer-logo img { max-width: 150px; }
    .footer-stats .row.g-3 > div { margin-bottom: 14px; }
    .footer-stat-item .stat-value { font-size: 20px; }
    .footer-bottom p { font-size: 11.5px; }
}