/* --- FAQ Page Styling --- */

.faq-page {
    background-color: #fff;
}

/* --- Hero Section --- */
.faq-hero {
    background: linear-gradient(rgba(17,17,17,0.72), rgba(17,17,17,0.72)),
        url('https://unsplash.com/photos/IiLVwx3e8bk/download?force=true') center/cover no-repeat;
    margin-top: calc(var(--header-height) * -1);
    padding: calc(140px + var(--header-height)) 0 110px;
    text-align: center;
    color: #fff;
}

.faq-hero .hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.faq-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #e6e6e6;
    max-width: 750px;
    margin: 0 auto;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 25px 15px;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question span {
    flex-grow: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 1.2rem;
    color: #ced4da;
    transition: transform 0.4s ease, color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust if answers are very long */
}

.faq-answer p {
    padding: 0 15px 25px 15px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-section .btn {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-section .btn:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .faq-hero .hero-title {
        font-size: 2.5rem;
    }
    .faq-question {
        font-size: 1.2rem;
        padding: 20px 10px;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
}
