/* ══════════════════ FOOTER ══════════════════ */

footer { background: #111; color: #aaa; padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.5fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid #222; }
.footer-logo img { max-height: 46px; background: #fff; padding: 6px 10px; border-radius: 4px; margin-bottom: 18px; }
.footer-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: #fff; text-transform: uppercase; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 12px; color: #aaa; transition: all 0.2s; display: inline-block; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #333; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #aaa; transition: all 0.3s; }
.social-icon:hover { transform: translateY(-3px); }
.social-icon.fb:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-icon.ig:hover { background: #e1306c; border-color: #e1306c; color: #fff; }
.social-icon.tw:hover { background: #1DA1F2; border-color: #1DA1F2; color: #fff; }
.social-icon.yt:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.footer-contact-info { margin-top: 15px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: #aaa; }
.contact-item i { color: #8bc34a; margin-top: 4px; font-size: 14px; width: 20px; text-align: center; }
.contact-item a { color: #aaa; transition: color 0.2s; }
.contact-item a:hover { color: #8bc34a; }
.contact-item span { line-height: 1.5; }

.social-icon-circle { width: 36px; height: 36px; border-radius: 50%; background: #8bc34a; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; color: #fff !important; margin-right: 8px; transition: all 0.3s; text-decoration: none; }
.social-icon-circle:hover { transform: translateY(-3px); background: #7cb342; }

.footer-map { border-radius: 8px; overflow: hidden; background: #222; }
.seo-text { padding: 24px 0; border-top: 1px solid #1a1a1a; font-size: 11px; color: #555; line-height: 1.9; }
.seo-text strong { color: #777; }
.popular-links { display: flex; flex-wrap: wrap; gap: 2px 6px; margin-top: 10px; font-size: 11px; }
.popular-links a { color: #666; }
.popular-links a:hover { color: var(--primary); }
.popular-links span { color: #444; }
.footer-bottom { border-top: 1px solid #1a1a1a; padding: 16px 0; text-align: center; font-size: 11px; color: #444; }

/* ── Cookie Consent ── */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 3px solid var(--primary); box-shadow: 0 -4px 20px rgba(0,0,0,0.12); z-index: 9999; padding: 14px 20px; display: none; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-text { display: flex; align-items: center; gap: 12px; flex: 1; font-size: 13px; color: #444; }
.cookie-text i { font-size: 20px; color: var(--primary); flex-shrink: 0; }
.cookie-text p { margin: 0; }
.cookie-text a { color: var(--primary); }
.cookie-actions { display: flex; gap: 8px; }
.ck-btn { padding: 8px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 2px solid var(--primary); font-family: inherit; transition: var(--transition); }
.ck-accept { background: var(--primary); color: #fff; }
.ck-accept:hover { background: var(--primary-dark); }
.ck-reject { background: #fff; color: var(--primary); }
.ck-reject:hover { background: #f0f9ee; }

/* ── Floating Buttons ── */
.floating-actions { position: fixed; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 9999; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s, visibility 0.3s; }
.floating-actions.show { opacity: 1; visibility: visible; pointer-events: auto; }
.float-btn { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; border: none; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.25); color: #fff; }
.f-wa { background: #25D366; }
.f-top { background: var(--primary); }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-actions { bottom: 75px; } /* 20px + 55px */
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .floating-actions { right: 12px; bottom: 67px; } /* 12px + 55px */
    .float-btn { width: 42px; height: 42px; font-size: 18px; }
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .cookie-actions { width: 100%; }
    .ck-btn { flex: 1; text-align: center; }
}

/* ── Mobile Bottom Nav ── */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: -100px; /* Hidden initially */
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9998;
    padding: 10px 0;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 1px solid #eee;
}
.mobile-bottom-nav.show {
    bottom: 0;
}
.mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 11px;
    gap: 4px;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px;
}
.mobile-bottom-nav .nav-item:hover, .mobile-bottom-nav .nav-item.active {
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
}
