/* ---------------- FLOATING CONTACTS (PREMIUM) ---------------- */
.floating-contact-wrapper {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 8px 16px 8px 8px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fc-right {
    padding: 8px 8px 8px 16px;
}

.floating-contact-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.95);
}

.fc-left { left: 30px; }
.fc-right { right: 30px; }

.fc-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main, #1D1D1F);
    letter-spacing: -0.3px;
    margin: 0 4px;
}

.fc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-btn:hover {
    transform: scale(1.15) rotate(-5deg);
    color: #fff;
}

.fc-wa { 
    background: #25D366; 
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); 
    animation: subtlePulse 2.5s infinite;
}

.fc-phone { 
    background: var(--brand-primary, #FF6B00); 
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3); 
}

@keyframes subtlePulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-contact-wrapper {
        bottom: 20px;
        padding: 6px;
        gap: 8px;
    }
    .fc-right { padding: 6px; }
    .fc-number { display: none; } /* Mobilde ekranı daraltmamak için numarayı gizler, sadece ikonlar kalır */
    .fc-left { left: 15px; }
    .fc-right { right: 15px; }
    .fc-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
