﻿.faq-page {
    min-height: 100vh;
    background: var(--dark);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* ==================== HEADER ==================== */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--green);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* ==================== FAQ LIST ==================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

/* ==================== QUESTION ==================== */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
    font-family: inherit;
}

    .faq-question:hover {
        background: rgba(102, 126, 234, 0.05);
    }

    .faq-question.active {
        background: rgba(102, 126, 234, 0.08);
    }

.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    padding-right: 1rem;
    line-height: 1.5;
}

.question-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--green);
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 50%;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* ==================== ANSWER ==================== */
.faq-answer {
    height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}

.answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.answer-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

/* ==================== VIDEO ==================== */
.video-container {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

.watch-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    font-family: inherit;
}

    .watch-video-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    }

    .watch-video-btn:active {
        transform: translateY(0);
    }

.play-icon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .play-icon svg {
        width: 16px;
        height: 16px;
        fill: #ff0000;
        margin-left: 2px;
    }

/* ==================== FOOTER ==================== */
.faq-footer {
    text-align: center;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-link {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

    .contact-link:hover {
        opacity: 0.8;
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .faq-page {
        padding: 1.5rem 1rem;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .question-icon {
        width: 28px;
        height: 28px;
        font-size: 1.25rem;
    }

    .answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .answer-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .watch-video-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-footer {
        margin-top: 2rem;
        font-size: 0.9rem;
    }
}