:root {
    --accent: #f59e0b;
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .8);
    padding: 60px 0 0;
}

.footer-brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 11px;
}

.footer-brand-name {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
}

.footer-brand-name span {
    color: var(--primary);
}

.footer-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .58);
    line-height: 1.72;
    margin-top: 10px;
    margin-bottom: 18px;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #fff;
    text-decoration: none;
    transition: transform .22s, opacity .22s, box-shadow .22s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
}

.footer-social-icon.fb {
    background: #1877f2;
}

.footer-social-icon.ig {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4);
}

.footer-social-icon.yt {
    background: #ff0000;
}

.footer-social-icon.wa {
    background: #25d366;
}

.footer-social-icon.tw {
    background: #000;
}

.no-touch .footer-social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
    opacity: .92;
}

.footer-title {
    font-family: 'Nunito', sans-serif;
    font-size: .83rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, .1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .83rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a i {
    color: var(--primary);
    font-size: .7rem;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 13px;
    font-size: .83rem;
    color: rgba(255, 255, 255, .6);
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
}

.footer-bottom-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-bottom-socials a {
    color: rgba(255, 255, 255, .4);
    font-size: .9rem;
    text-decoration: none;
    transition: color .2s, transform .2s;
    display: inline-flex;
}

.footer-bottom-socials a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ── FLOATING BUTTONS ── */
.floating-btns {
    position: fixed;
    bottom: 22px;
    right: 18px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    padding: 12px 18px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
    color: #fff;
}

.no-touch .float-btn {
    transition: transform .2s, box-shadow .2s;
}

.no-touch .float-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .32);
    color: #fff;
}

.float-wa {
    background: #25d366;
}

.float-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.float-btn i {
    font-size: 1rem;
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #fff;
    transition: transform .2s, opacity .2s;
    text-decoration: none;
}

.footer-social a:hover {
    transform: scale(1.12);
    opacity: .85;
}

.fsoc-fb {
    background: #1877f2;
}

.fsoc-insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.fsoc-yt {
    background: #ff0000;
}

.fsoc-wa {
    background: #25d366;
}

.fsoc-tw {
    background: #1da1f2;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 13px;
    font-size: .83rem;
    color: rgba(255, 255, 255, .6);
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom-socials a:hover {
    color: #fff;
    transform: translateY(-2px);
}