/* ============================================
   FAQ SECTION STYLES
   ============================================ */

/* FAQ Container */
.faq-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

/* FAQ Item */
.faq-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(69, 99, 125, 0.15);
    transform: translateY(-3px);
    border-color: var(--color-main);
}

/* FAQ Button */
.faq-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
    color: white;
}

.faq-button:hover {
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
    color: white;
}

.faq-button:focus {
    box-shadow: none;
}

.faq-button::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-button:not(.collapsed)::after {
    content: '\f068';
    transform: rotate(180deg);
}

/* FAQ Number */
.faq-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-button:not(.collapsed) .faq-number {
    background: white;
    color: var(--color-main);
}

/* FAQ Title */
.faq-title {
    display: flex;
    align-items: center;
    flex: 1;
}

.faq-button:not(.collapsed) .faq-title i {
    color: white !important;
}

/* FAQ Answer */
.faq-answer {
    padding: 2rem;
    background: #f8f9fa;
}

.answer-content {
    color: #4a5568;
    line-height: 1.8;
}

/* Channel Box */
.channel-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.channel-box:hover {
    border-color: var(--color-main);
    box-shadow: 0 8px 20px rgba(69, 99, 125, 0.15);
    transform: translateY(-5px);
}

.channel-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.messenger-icon {
    background: linear-gradient(135deg, #0078ff 0%, #0099ff 100%);
}

.website-icon {
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
}

/* Spec Grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.spec-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: var(--color-main);
    box-shadow: 0 5px 15px rgba(69, 99, 125, 0.1);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.spec-content h6 {
    margin-bottom: 0.25rem;
    color: #2d3748;
    font-size: 0.95rem;
}

.spec-content p {
    color: var(--color-main);
    font-weight: bold;
}

/* Quality List */
.quality-list {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    padding: 0.75rem 0;
    color: #4a5568;
    font-size: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.custom-list li:last-child {
    border-bottom: none;
}

/* Discount Box */
.discount-box {
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.discount-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-main);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.discount-text h5 {
    color: var(--color-white);
    font-weight: bold;
}

.discount-text p {
    color: var(--color-white);
    margin-bottom: 0;
    opacity: 0.9;
}

.contact-admin {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--color-main);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Shipping Info */
.shipping-info {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
}

.shipping-timeline {
    display: grid;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h6 {
    margin-bottom: 0.25rem;
    color: #2d3748;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }

    .faq-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 1rem;
    }

    .discount-box {
        flex-direction: column;
        text-align: center;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }
}
