/* QUICK WHATSAPP BUTTON - PREMIUM CINEMATIC STYLE WITH DUAL NUMBERS */
.whatsapp-container {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFB81C;
    /* premium gold edge */
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    padding: 0;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #128c7e;
    color: #FFF;
}

/* Pulse Animation */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
    top: 0;
    left: 0;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Dropdown Menu */
.whatsapp-dropdown {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 280px;
    background: rgba(28, 22, 20, 0.96);
    /* luxury nightBrown theme */
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* gold accent */
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

/* Trigger container hover/active states to show dropdown */
.whatsapp-container:hover .whatsapp-dropdown,
.whatsapp-container.active .whatsapp-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-dropdown-title {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: #FFB81C;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 8px;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: left;
}

.whatsapp-choice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.whatsapp-choice:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.whatsapp-choice i {
    font-size: 20px;
    color: #25d366;
    transition: transform 0.2s ease;
}

.whatsapp-choice:hover i {
    transform: scale(1.15);
}

.whatsapp-choice-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.whatsapp-choice-label {
    font-size: 9px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.whatsapp-choice-val {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    font-family: 'Helvetica', sans-serif;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .whatsapp-dropdown {
        width: 250px;
        bottom: 68px;
    }
}