/* ==========================================================================
   FAQ PAGE - MODERN LUXURY REDESIGN
   ========================================================================== */

:root {
    --nz-green: #0A2A20;
    --nz-gold: #C5A059;
}

.faq-hero {
    position: relative;
    padding: 160px 0 100px;
    background: #000 url('../images/scene3.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.faq-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,42,32,0.75) 0%, rgba(10,42,32,0.9) 100%);
    z-index: 1;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.faq-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Accordion Styling */
.section-faq-content {
    padding: 80px 0;
    background: #fdfdfb;
}

.maxw-900 {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px !important;
    margin-bottom: 20px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 25px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    background: #fff;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
    color: var(--nz-gold);
    background: #fff;
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: transform 0.3s;
}

.accordion-body {
    padding: 0 30px 30px;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

/* CTA */
.faq-cta {
    background: var(--nz-green);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.faq-cta h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-cta p {
    opacity: 0.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Reveal Helpers */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
