/* FOOTER MODULE CSS */
.bottom-action-bar {
    display: flex; 
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
}
.bottom-action-bar a {
    flex: 1; text-align: center; padding: 15px; color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.bottom-action-bar a:hover {
    filter: brightness(1.1);
}
.bottom-action-bar a i, .bottom-action-bar a img {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bottom-action-bar a:hover i, .bottom-action-bar a:hover img {
    transform: scale(1.2) translateY(-2px);
}
.action-hotline { background: #fff; color: var(--clr-primary) !important; border-top: 1px solid var(--clr-border); }
.action-hotline:hover { background: #f8f9fa; }
.action-zalo { background: linear-gradient(135deg, #0084FF, #0066cc); }
.action-testdrive { background: linear-gradient(135deg, #333, #111); }
.action-quote { background: linear-gradient(135deg, var(--clr-primary), #0c2a5e); }

/* LEFT DOCK (Hotline, Zalo) */
.floating-dock {
    position: fixed; left: 20px; bottom: 60px; z-index: 100;
    display: flex; flex-direction: column; gap: 10px;
}

.back-to-top {
    position: fixed; right: 20px; bottom: 130px; z-index: 100;
    transition: 0.3s; opacity: 0; visibility: hidden; pointer-events: none;
}

.telegram-gift-dock {
    position: fixed; right: 20px; bottom: 60px; z-index: 100;
}

.telegram-gift-btn {
    display: flex;
    align-items: center;
    background: #ff6600;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    gap: 8px;
    animation: pulse-orange 2s infinite;
    transition: 0.3s;
}

.telegram-gift-btn:hover {
    background: #e65c00;
    transform: scale(1.05);
}

.telegram-gift-btn i {
    font-size: 18px;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}
.back-to-top.is-visible {
    opacity: 1; visibility: visible; pointer-events: auto;
}

.btn-scroll-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-scroll-top i {
    font-size: 18px;
    color: var(--clr-primary, #14397B);
    z-index: 2;
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    z-index: 1;
}

.progress-circle path {
    fill: none;
    stroke: var(--clr-primary, #14397B);
    stroke-width: 4;
}

.floating-btn {
    width: 60px; height: 60px; border-radius: 50%; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; cursor: pointer; border: none;
}
.floating-btn i { font-size: 24px; color: var(--clr-primary); margin-bottom: 2px;}

