/* Desktop Sabit "Hemen Ara" Butonu Animasyonları */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes redFlash {
    0% {
        background: linear-gradient(135deg, #ff6600, #ff8533) !important;
        box-shadow: 0 6px 30px rgba(255, 102, 0, 0.5);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    25% {
        background: linear-gradient(135deg, #ff0000, #cc0000) !important;
        box-shadow: 0 15px 80px rgba(255, 0, 0, 1.5);
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
    50% {
        background: linear-gradient(135deg, #ff6600, #ff8533) !important;
        box-shadow: 0 6px 30px rgba(255, 102, 0, 0.5);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    75% {
        background: linear-gradient(135deg, #ff0000, #cc0000) !important;
        box-shadow: 0 15px 80px rgba(255, 0, 0, 1.5);
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
    100% {
        background: linear-gradient(135deg, #ff6600, #ff8533) !important;
        box-shadow: 0 6px 30px rgba(255, 102, 0, 0.5);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* Desktop Sabit "Hemen Ara" Butonu Stili */
.fixed-phone-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 70px;
    height: 70px;
    border-radius: 35px 0 0 35px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    border: none;
    box-shadow: 0 6px 30px rgba(255, 102, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: redFlash 1s ease-in-out infinite !important;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 10px;
}

.fixed-phone-btn .phone-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
    margin-left: 15px;
    font-size: 16px;
    font-weight: bold;
    color: white !important;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.fixed-phone-btn i {
    color: white !important;
}

.fixed-phone-btn:hover {
    width: 260px;
    padding-left: 25px;
    border-radius: 35px 0 0 35px;
    justify-content: flex-start;
    transform: translateY(-50%) scale(1);
    box-shadow: 0 8px 40px rgba(255, 102, 0, 0.7);
    color: white !important;
    animation: none !important; /* Hover'da animasyonu durdur */
}

.fixed-phone-btn:hover i {
    color: white !important;
}

.fixed-phone-btn:hover .phone-text {
    opacity: 1;
    width: auto;
    margin-left: 15px;
    display: inline-block;
    animation: slideIn 0.3s ease;
    color: white !important;
}

/* Mobilde gizle */
@media (max-width: 768px) {
    .fixed-phone-btn {
        display: none !important;
    }
}

