/* ============================================
   Akturan Temizlik - Ana Stil Dosyası
   ============================================ */

body {
    font-family: 'Public Sans', sans-serif;
}
.logo{height:50px;width:auto;}
/* Glass Effect - Header */
.glass-effect {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Service Card Hover */
.service-card {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-6px);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
/* Phone Button Pulse */
@keyframes phone-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 43, 70, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(15, 43, 70, 0); }
}

.phone-btn {
    animation: phone-pulse 2s infinite;
}

.phone-btn:hover {
    animation: none;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
/* WhatsApp Button Pulse */
@keyframes wp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
    animation: wp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    animation: none;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Hero Badge Ping Animation */
@keyframes badge-ping {
    0% { transform: scale(1); opacity: 1; }
    75%, 100% { transform: scale(2); opacity: 0; }
}

.badge-ping {
    animation: badge-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Star Fill for Testimonials */
.material-symbols-outlined.fill-1 {
    font-variation-settings: 'FILL' 1;
}

/* Trust Box Counter Animation */
.trust-counter {
    transition: all 0.3s ease;
}

.trust-counter:hover {
    transform: scale(1.03);
}

/* CTA Section Glow */
.cta-glow {
    position: relative;
    overflow: hidden;
}

.cta-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(43, 179, 192, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

/* Before/After Slider */
.ba-slider {
    position: relative;
    overflow: hidden;
}

.ba-handle {
    cursor: ew-resize;
    transition: transform 0.15s ease;
}

.ba-handle:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Footer Link Hover */
footer a {
    transition: color 0.2s ease;
}

/* Responsive Typography */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
}
