/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Floating Container */
.floating-container {
    position: fixed;
    bottom: 60px; /* Daha aşağıda */
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Butonlar arası boşluk */
}

/* Genel Floating Buton Stili - DAHA KÜÇÜK */
.floating-btn {
    width: 50px; /* 65px yerine 50px */
    height: 50px; /* 65px yerine 50px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.3), /* Daha hafif shadow */
        0 0 0 1.5px rgba(255, 255, 255, 0.1), /* Daha ince border */
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* ANİMASYON KALDIRILDI - SABİT DURACAK */
    border: none;
    cursor: pointer;
    opacity: 1; /* Sabit görünür */
}

/* WhatsApp Butonu */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #34e674, #25D366);
    transform: scale(1.1); /* Sadece scale */
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* Telefon Butonu */
.phone-btn {
    background: linear-gradient(135deg, #000000, #2c3e50);
    color: #ffffff;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    transform: scale(1.1); /* Sadece scale */
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* İkonlar - DAHA KÜÇÜK */
.floating-btn i {
    font-size: 1.4rem; /* 1.8rem yerine 1.4rem */
    transition: transform 0.3s ease;
}

.floating-btn:hover i {
    transform: scale(1.15); /* Daha az büyüsün */
}

/* Tooltip */
.floating-tooltip {
    position: absolute;
    right: 60px; /* 75px yerine 60px */
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 6px 12px; /* Daha küçük padding */
    border-radius: 15px;
    font-size: 0.75rem; /* Daha küçük font */
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px) scale(0.9);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Pulse Effect KALDIRILDI - SABİT DURACAK */

/* Responsive */
@media screen and (max-width: 768px) {
    .floating-container {
        bottom: 50px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 45px; /* Daha küçük */
        height: 45px;
    }
    
    .floating-btn i {
        font-size: 1.3rem;
    }
    
    .floating-tooltip {
        right: 50px;
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media screen and (max-width: 480px) {
    .floating-container {
        bottom: 40px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 40px; /* En küçük */
        height: 40px;
    }
    
    .floating-btn i {
        font-size: 1.2rem;
    }
    
    .floating-tooltip {
        display: none; /* Mobilde tooltip gösterme */
    }
}