/* Floating Contact Buttons - floating-contact-buttons.php'den taşındı (CLS düzeltmesi) */
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    pointer-events: auto;
}

.floating-contact-button {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.floating-contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    color: #ffffff !important;
}

.phone-button {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.location-button {
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.back-to-top-button {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top-button.active {
    opacity: 1;
    visibility: visible;
}

/* reCAPTCHA v3 rozeti gizle — footer'da metin bildirimi ile değiştirildi (Google kurallarına uygun) */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }

    .floating-contact-button {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
