/* FAQ Pill Design - Isolated Fix */

/* Section Setup */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a192f 0%, #003366 100%);
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Badge */
.faq-badge {
    display: inline-block;
    background: rgba(0, 191, 255, 0.15);
    color: #60A5FA;
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(96, 165, 250, 0.4);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(5px);
}

/* Typography */
.faq .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.text-yellow {
    color: #FFD700 !important;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.faq .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 64px;
    font-weight: 500;
}

/* Grid Layout */
.faq-grid.play-two-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 768px) {
    .faq-grid.play-two-columns {
        grid-template-columns: 1fr !important;
    }
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item - The Pill */
.faq-item {
    background: rgba(13, 25, 48, 0.9);
    border: 2px solid transparent;
    border-radius: 999px !important;
    margin-bottom: 0px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background-image: linear-gradient(rgba(13, 25, 48, 0.95), rgba(13, 25, 48, 0.95)),
        linear-gradient(90deg, #00C6FF, #0072FF, #FFD700);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 87, 184, 0.4);
    background-image: linear-gradient(rgba(13, 25, 48, 0.85), rgba(13, 25, 48, 0.85)),
        linear-gradient(90deg, #00C6FF, #FFD700, #00C6FF);
}

.faq-item[open] {
    border-radius: 24px !important;
    background-image: linear-gradient(rgba(13, 25, 48, 0.95), rgba(13, 25, 48, 0.95)),
        linear-gradient(to right bottom, #FFD700, #FFD700);
}

/* Accordion Internals */
.faq-item summary {
    padding: 24px 32px;
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:focus {
    outline: none;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.faq-item[open] .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 32px 24px 32px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separator */
    margin-top: -8px;
    padding-top: 16px;
}

/* Footer CTA - "Still have questions?" */
.faq-footer {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.faq-footer p {
    font-size: 1.25rem;
    color: white;
    margin: 0;
}

.faq-btn {
    background: #FFD700;
    color: #081221;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}