.faq-luxury-section {
    padding: 100px 0;
    background: #000;
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    cursor: pointer;
    transition: 0.4s;
}

.faq-item:hover {
    border-bottom: 1px solid var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Hidden Answer Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.4s;
    opacity: 0;
}

.faq-answer p {
    padding-top: 20px;
    font-weight: 200;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 750px;
}

/* Active State (Controlled by JS) */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Plus becomes an X */
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .faq-question h3 { font-size: 1rem; padding-right: 20px; }
    .faq-luxury-section { padding: 60px 0; }
}