/* ===== 0097 - WPK Official Website Styles ===== */
html { scroll-behavior: smooth; }

/* FAQ Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-content.open {
    max-height: 600px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-icon.rotate {
    transform: rotate(180deg);
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.mobile-menu.open {
    max-height: 450px;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(79, 70, 229, 0.15);
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.35);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #4F46E5, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero badge animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.hero-badge {
    animation: float 3s ease-in-out infinite;
}

/* Stats counter */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.stat-item {
    animation: countUp 0.6s ease forwards;
}

/* Navbar scroll effect */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Smooth section reveal */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
section.revealed {
    opacity: 1;
    transform: translateY(0);
}
