/* ========================================
   Accordion Component (FAQ)
   ======================================== */

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.faq-question:hover {
    color: #2d4a35;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    color: #2d4a35;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item:hover .faq-question i {
    background: linear-gradient(135deg, #c9a962 0%, #f0d78c 100%);
    color: #ffffff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #2d4a35 0%, #4a7c59 100%);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.75rem 1.5rem;
    color: #444444;
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid rgba(45, 74, 53, 0.1);
    padding-top: 1.25rem;
    margin-top: 0;
}

.faq-answer p strong {
    color: #2d4a35;
    font-weight: 700;
}

/* FAQ Accordion Items (Additional) */
.faq-item {
    background: var(--premium-white);
    border-radius: var(--radius-smooth);
    margin-bottom: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: rgba(201, 169, 98, 0.3);
}

.faq-item.active {
    border-color: var(--premium-gold);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.15);
}