/* FAQ Page - Sin City Seats
   Accordion, Bebas Neue / Montserrat / Rajdhani
   Background #000, cards #1a1a1a, accent #00E5FF
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

.faq-page {
    background: #000000;
    min-height: 100vh;
    color: #fff;
}

/* Page header */
.faq-header {
    background: #1a1a1a;
    border-bottom: 2px solid #00E5FF;
    padding: 3rem 2rem;
    text-align: center;
}

.faq-header__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 0.2em;
    margin: 0 0 0.5rem 0;
}

.faq-header__subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.125rem;
    color: #888;
    margin: 0;
}

/* Content container */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Section heading */
.faq-section__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00E5FF;
    margin-bottom: 1.5rem;
}

.faq-section {
    margin-bottom: 2.5rem;
}

/* Accordion item */
.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: #00E5FF;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.faq-item.is-open {
    border-left: 3px solid #00E5FF;
}

.faq-item__question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item__question {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-align: left;
}

.faq-item__arrow {
    color: #00E5FF;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__arrow {
    transform: rotate(90deg);
}

.faq-item__answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-item__answer-wrap {
    max-height: 500px;
}

.faq-item__answer {
    padding-top: 1rem;
    border-top: 1px solid #333;
    margin-top: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #888;
}

.faq-item__answer a {
    color: #00E5FF;
    text-decoration: none;
}

.faq-item__answer a:hover {
    text-decoration: underline;
}

/* Contact section */
.faq-contact {
    background: #1a1a1a;
    border: 1px solid #00E5FF;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.faq-contact__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
}

.faq-contact__details {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.faq-contact__cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #ffff00;
    color: #000;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-contact__cta:hover {
    background: #e6e600;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-header__title {
        font-size: 2.5rem;
        letter-spacing: 0.15em;
    }

    .faq-header {
        padding: 2rem 1.5rem;
    }

    .faq-content {
        padding: 2rem 1rem;
    }

    .faq-section__heading {
        font-size: 1.25rem;
    }

    .faq-item {
        padding: 1rem 1.25rem;
        margin-bottom: 0.75rem;
    }

    .faq-item__question {
        font-size: 1rem;
    }

    .faq-contact {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}
