/* Sticky Action Buttons - Desktop */
.sticky-action-buttons {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999;
    flex-direction: column;
    gap: 6px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.sticky-btn i {
    font-size: 18px;
    width: auto;
    text-align: center;
}

.sticky-btn span {
    display: none;
}

.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.sticky-btn-call {
    background: #ff6b35;
    color: #ffffff;
}

.sticky-btn-call:hover {
    background: #e55a2b;
}

.sticky-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.sticky-btn-whatsapp:hover {
    background: #20ba5a;
}

.sticky-btn-location {
    background: #4285f4;
    color: #ffffff;
}

.sticky-btn-location:hover {
    background: #3367d6;
}

/* Floating Action Buttons - Mobile */
.floating-action-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    pointer-events: auto;
    text-decoration: none;
}

.floating-btn i {
    font-size: 24px;
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn-maps {
    background: #4285f4;
    color: #ffffff;
}

.floating-btn-maps:hover {
    background: #3367d6;
    color: #ffffff;
}

.floating-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.floating-btn-whatsapp:hover {
    background: #20ba5a;
    color: #ffffff;
}

/* Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-action-buttons .sticky-btn {
    animation: slideInLeft 0.5s ease forwards;
}

.sticky-action-buttons .sticky-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.sticky-action-buttons .sticky-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.sticky-action-buttons .sticky-btn:nth-child(3) {
    animation-delay: 0.3s;
}

.floating-action-buttons .floating-btn {
    animation: fadeInUp 0.5s ease forwards;
}

.floating-action-buttons .floating-btn:first-child {
    animation-delay: 0.1s;
}

.floating-action-buttons .floating-btn:last-child {
    animation-delay: 0.2s;
}

/* Responsive adjustments */
@media (max-width: 575px) {
    .floating-action-buttons {
        padding: 0 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 22px;
    }
}

/* Ensure it doesn't overlap with scroll-to-top button */
.scroll-to-top {
    bottom: 30px !important;
    right: 30px !important;
}

@media (max-width: 991px) {
    .scroll-to-top {
        display: none !important;
    }
}
