/* FAQ Page - Premium Design */

:root {
    --rg-blue-primary: #00465c;
    --rg-blue-secondary: #008eb0;
    --rg-azure: #00aff0;
    --rg-orange: #ff9d00;
    --rg-background: #fdfdfd;
}

body {
    font-family: "Inter", "Outfit", sans-serif;
    background: var(--rg-background);
    color: #333333;
}

/* Hero Section */
.faq-hero {
    background: linear-gradient(165deg, var(--rg-blue-primary) 0%, var(--rg-blue-secondary) 100%);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.shape {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    border-radius: 50%;
}
.shape-1 { width: 400px; height: 400px; background: #fbbf24; top: -100px; right: -50px; }
.shape-2 { width: 300px; height: 300px; background: #ec4899; bottom: -50px; left: -50px; }

.faq-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0 80px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: white;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    color: #64748b;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px;
    opacity: 1;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--rg-orange);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }

    .faq-hero p {
        font-size: 1.1rem;
    }
}
