/* ===== 0100 - AAPOKER Global Platform 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.18);
}

/* 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;
}

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

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

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #DBEAFE 100%);
}

/* Timeline styles for about page */
.timeline-line {
    position: relative;
}
.timeline-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4F46E5, #3B82F6);
    transform: translateX(-50%);
}

/* Form focus styles */
.form-input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Pulse dot */
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(79, 70, 229, 0); }
}
.pulse-dot {
    animation: pulse-dot 2s infinite;
}

/* Stats card hover */
.stat-card:hover {
    transform: scale(1.05);
}
.stat-card {
    transition: transform 0.3s ease;
}
