/* ===================================
   FAQ PAGE STYLES
   =================================== */

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #2C2416 0%, #1a1410 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,140,66,0.1)"/></svg>');
    opacity: 0.3;
}

.faq-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #F5F1E8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.faq-hero-subtitle {
    font-size: 1.25rem;
    color: #D4A574;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #F5F1E8;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-contact-link {
    color: #FF8C42;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-contact-link:hover {
    color: #E67A30;
    text-decoration: underline;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Category */
.faq-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2C2416;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #FF8C42;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid rgba(44, 36, 22, 0.1);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C2416;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #FF8C42;
}

.faq-icon {
    font-size: 1.5rem;
    color: #FF8C42;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 1rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: #2C2416;
    display: block;
    margin-top: 0.5rem;
}

.faq-answer br {
    margin-bottom: 0.5rem;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #FF8C42 0%, #E67A30 100%);
    border-radius: 15px;
    color: white;
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta .btn {
    min-width: 200px;
}

.faq-cta .btn-outline {
    background: white;
    color: #FF8C42;
    border-color: white;
}

.faq-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 6rem 0 3rem;
    }

    .faq-hero-title {
        font-size: 2.5rem;
    }

    .faq-hero-subtitle {
        font-size: 1.1rem;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .faq-grid {
        gap: 2rem;
    }

    .faq-category {
        padding: 1.5rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }

    .faq-cta h2 {
        font-size: 1.75rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .faq-cta .btn {
        width: 100%;
    }
}