.site-footer { background: var(--footer-bg); color: #fff; }
.footer-main { padding: 80px 0 32px; border-bottom: 1px solid rgba(255,255,255,.2); }
.footer-main .row { display: flex; flex-wrap: wrap; }
.footer-col { padding: 0 15px; }
.footer-col h4 { font-size: 18px; margin-bottom: 20px; color: #fff; font-family: 'MontserratBold', sans-serif; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-light); font-size: 14px; transition: color .3s; }
.footer-col ul li a:hover { color: var(--site-color); }
.footer-col p { color: var(--text-light); font-size: 14px; line-height: 1.8; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a, .footer-contact-item span { color: var(--text-light); font-size: 14px; }
.footer-contact-item a:hover { color: var(--site-color); }

/* Footer Form */
.footer-form p { color: var(--text-light); font-size: 14px; margin-bottom: 15px; }
.footer-form .form-group { margin-bottom: 10px; position: relative; }
.footer-form input, .footer-form textarea {
    width: 100%; padding: 10px 15px 10px 40px; background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2); border-radius: 4px; color: #fff; font-size: 14px;
}
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(255,255,255,.5); }
.footer-form textarea { height: 80px; resize: none; }
.footer-form .form-icon { position: absolute; left: 12px; top: 12px; }
.footer-form .form-icon img { width: 18px; filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(135deg); }
.footer-form .form-required { position: absolute; right: 10px; top: 10px; color: var(--site-color); }
.footer-form button {
    background: var(--site-color); color: #fff; border: none; padding: 10px 30px;
    border-radius: 4px; cursor: pointer; font-size: 14px; transition: all .3s;
}
.footer-form button:hover { opacity: .9; }

/* Copyright */
.footer-copyright { padding: 20px 0; text-align: center; }
.footer-copyright p { color: var(--text-light); font-size: 13px; }
.footer-copyright a { color: var(--text-light); }
.footer-copyright a:hover { color: var(--site-color); }

@media (max-width: 991px) {
    .footer-main .footer-col { flex: 0 0 50%; max-width: 50%; margin-bottom: 30px; }
}
@media (max-width: 767px) {
    .footer-main { padding: 40px 0 20px; }
    .footer-main .footer-col { flex: 0 0 100%; max-width: 100%; }
}

/* Footer Social Icons */
.footer-social { margin-top: 15px; display: flex; gap: 12px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.15); color: #fff; font-size: 16px;
    transition: all .3s;
}
.footer-social a:hover { background: var(--site-color); transform: scale(1.1); }

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #0B3D92; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transition: transform .3s, box-shadow .3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,.3); color: #fff; }
