/* FAQ Modern Styles - Sleek & Minimalistic */

.faq-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

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

/* Category Styling */
.faq-category {
    margin-bottom: 4rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #D97000;
    display: inline-block;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4A6E1A;
    box-shadow: 0 4px 12px rgba(74, 110, 26, 0.1);
}

.faq-item.active {
    border-color: #4A6E1A;
    box-shadow: 0 6px 20px rgba(74, 110, 26, 0.15);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f5f9f0 0%, #ffffff 100%);
}

/* Question Icon */
.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A6E1A 0%, #5A7E2A 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #D97000 0%, #FF8C00 100%);
}

/* Question Text */
.faq-question-text {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

/* Chevron Icon */
.faq-chevron {
    font-size: 1.5rem;
    color: #4A6E1A;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-weight: 300;
}

.faq-item.active .faq-chevron {
    transform: rotate(90deg);
    color: #D97000;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 5.5rem;
    margin: 0;
    color: #495057;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-answer a {
    color: #4A6E1A;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #D97000;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-category {
        margin-bottom: 3rem;
    }

    .faq-category-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1rem;
        gap: 0.75rem;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1.25rem 4rem;
        font-size: 0.95rem;
    }

    .faq-chevron {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem 3.5rem;
        font-size: 0.9rem;
    }

    .faq-item {
        border-radius: 10px;
    }
}

/* Smooth Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeIn 0.4s ease-out;
    animation-fill-mode: both;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
