/* Yangın Algılama & Acil Anons Sistemleri - Özel Stiller */
body {
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}
.hero-gradient {
    background: linear-gradient(135deg, #f0f4ff 0%, #e2e8f0 100%);
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Kayan Referanslar Bandı Animasyonu */
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-logo-scroll {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}
.animate-logo-scroll:hover {
    animation-play-state: paused;
}
