/* Mobil Arama Butonu CSS */

/* Masaüstünde butonu gizle */
@media (min-width: 1025px) {
    .mobil-arama-butonu-container {
        display: none;
    }
}

/* Tablet ve mobil için konteyner stili */
.mobil-arama-butonu-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999; /* Diğer elementlerin üzerinde görünmesi için */
}

/* Arama butonu temel stili */
.mobil-arama-butonu {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Butondaki telefon simgesi */
.mobil-arama-butonu i {
    font-size: 24px;
}

/* Hover efekti */
.mobil-arama-butonu:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Tıklama anında hafif küçültme efekti */
.mobil-arama-butonu:active {
    transform: scale(0.95);
}
