/*── Floating Buttons & Interactions ──*/
.floating-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), var(--glow-blue);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    cursor: pointer;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), var(--glow-blue);
}

.float-whatsapp {
    background: #25D366;
    border-color: rgba(37, 211, 102, 0.5);
}

.float-call {
    background: #00d4ff;
    border-color: rgba(0, 212, 255, 0.5);
}

.float-top {
    background: rgba(10, 15, 30, 0.85);
    border-color: #b000ff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    outline: none;
}

.float-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.float-top i {
    color: #b000ff;
}

@media(max-width: 768px) {
    .floating-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/*── Left Vertical Phone Label ──*/
.left-float-label {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
}

.phone-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 15, 30, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-left: none;
    backdrop-filter: blur(15px);
    padding: 15px 12px;
    border-radius: 0 0 15px 15px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.phone-tag:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-blue);
    padding-right: 18px;
    box-shadow: 8px 0 30px rgba(0, 212, 255, 0.2);
}

.phone-tag i {
    color: var(--neon-blue);
    font-size: 1rem;
    margin-bottom: 12px;
    transform: rotate(90deg);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media(max-width: 768px) {
    .left-float-label {
        display: none;
    }
}