/* ==========================================================================
   AESTHETIC & MODERN COMPACT FLOATING CONTACT WIDGET
   ========================================================================== */

.floating-contact-widget {
    position: fixed;
    right: 20px;
    bottom: 85px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.floating-contact-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 8px 24px rgba(12, 35, 64, 0.22);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-contact-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(12, 35, 64, 0.35);
}

/* WhatsApp Button */
.floating-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5) !important;
}

/* Phone Button */
.floating-phone {
    background: linear-gradient(135deg, #0c2340 0%, #153258 100%) !important;
    color: #c9933b !important; /* Gold Icon in Navy Button */
    border-color: rgba(201, 147, 59, 0.4) !important;
}

.floating-phone:hover {
    background: linear-gradient(135deg, #153258 0%, #071629 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(12, 35, 64, 0.5) !important;
}

/* Email Button - Crisp Gold Accent with Navy Icon */
.floating-email {
    background: linear-gradient(135deg, #c9933b 0%, #e5ab48 100%) !important;
    color: #071629 !important; /* Rich Dark Navy Icon for Crisp High Contrast */
    border-color: rgba(201, 147, 59, 0.5) !important;
}

.floating-email:hover {
    background: linear-gradient(135deg, #e5ab48 0%, #c9933b 100%) !important;
    color: #071629 !important;
    box-shadow: 0 10px 25px rgba(201, 147, 59, 0.5) !important;
}

/* Glassmorphism Floating Tooltip */
.floating-contact-btn .tooltip-text {
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: rgba(12, 35, 64, 0.94) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(201, 147, 59, 0.35) !important;
}

.floating-contact-btn .tooltip-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: rgba(12, 35, 64, 0.94);
    border-top: 1px solid rgba(201, 147, 59, 0.35);
    border-right: 1px solid rgba(201, 147, 59, 0.35);
}

.floating-contact-btn:hover .tooltip-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .floating-contact-widget {
        right: 14px;
        bottom: 75px;
        gap: 8px;
    }
    
    .floating-contact-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-contact-btn .tooltip-text {
        display: none !important;
    }
}
