/* Custom CSS for Kowagurutech */
.hero-curve {
    clip-path: ellipse(100% 90% at 50% 10%);
}
.footer-curve {
    clip-path: ellipse(100% 100% at 50% 100%);
}
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu.active {
    transform: translateX(0);
}
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Portfolio Filter */
.filter-btn {
    padding: 8px 20px;
    border-radius: 8px;
    background-color: #f3f4f6;
    transition: background-color 0.3s, color 0.3s;
}
.filter-btn.active {
    background-color: #2E8B57; /* primary color */
    color: white;
}

/* === MARKETING FEATURES STYLES === */

/* --- Promotion Marquee --- */
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.marquee-content {
    animation: marquee-scroll 30s linear infinite;
    display: inline-block;
}

/* --- Exit-Intent Popup --- */
#popup-overlay.active {
    display: flex;
}
#popup-overlay.active #exit-intent-popup {
    transform: scale(1);
    opacity: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* --- Social Proof Toast --- */
#social-proof-toast {
    transform: translateY(200%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
#social-proof-toast.show {
    transform: translateY(0);
    opacity: 1;
}