@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.price-card:hover {
    transform: translateY(-10px);
}

section {
    scroll-margin-top: 120px;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s infinite;
}

/* Loading Animation */
#loader {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loader-logo {
    animation: spin-slow 3s linear infinite;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* FAQ Accordion */
.faq-item input:checked~.faq-content {
    max-height: 200px;
    padding-top: 1rem;
    opacity: 1;
}

.faq-item input:checked~div i {
    transform: rotate(180deg);
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 55;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Slider Style */
.slider-dot.active {
    background-color: white !important;
    width: 2rem !important;
}

.slider-dot {
    transition: all 0.3s ease;
}