/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #000B2E 100%);
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.text-gradient {
    background: linear-gradient(45deg, var(--gold) 0%, #FFF5C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Icons Animation */
.floating-icons-container {
    height: 400px;
    position: relative;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.icon-3 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.icon-4 {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1) !important;
}

.category-card i {
    transition: all 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
        padding: 3rem 0;
    }

    .floating-icons-container {
        height: 300px;
        margin-top: 2rem;
    }

    .category-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .floating-icon {
        width: 60px;
        height: 60px;
    }

    .floating-icon i {
        font-size: 1.5rem !important;
    }
}