/* Секция вопросов */


/* Заголовок секции */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-main-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #e9d8fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-main-title i {
    margin-right: 15px;
    color: #9f7aea;
}

.faq-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Контейнер FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Элемент FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.95);
    margin: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Вопрос */
.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: white;
    color: #2d3748;
    position: relative;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f7fafc;
}

.question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #9f7aea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.question-icon i {
    color: white;
    font-size: 1.2rem;
}

.question-text {
    flex-grow: 1;
}

.question-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.question-meta {
    display: flex;
    gap: 8px;
}

.meta-tag {
    background: #e9d8fd;
    color: #667eea;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.question-arrow {
    font-size: 1.2rem;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

.faq-item.active .question-arrow {
    transform: rotate(180deg);
    color: #667eea;
}

/* Ответ */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.answer-content {
    padding: 30px;
    color: #4a5568;
    border-top: 1px solid #e2e8f0;
}

.answer-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.answer-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.answer-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #edf2f7;
}

.answer-list li i {
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.9rem;
}

.answer-note {
    background: #e6fffa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #06b3b3;
    margin-top: 20px;
}

/* Специальные блоки внутри ответов */
.photo-requirements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.req-good, .req-bad {
    padding: 20px;
    border-radius: 10px;
}

.req-good {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
}

.req-bad {
    background: #fff5f5;
    border: 1px solid #fc8181;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.size-option {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.size-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.size-badge.mini { background: #bee3f8; color: #2b6cb0; }
.size-badge.medium { background: #fed7d7; color: #c53030; }
.size-badge.large { background: #c6f6d5; color: #276749; }

.size-price {
    font-weight: bold;
    color: #2d3748;
    font-size: 1.1rem;
    margin-top: 10px;
}

.custom-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.custom-option {
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e2e8f0;
}

.custom-option i {
    color: #667eea;
    font-size: 1.2rem;
}

.option-price {
    color: #06b3b3;
    font-weight: bold;
}

.guarantee-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea10, #9f7aea10);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid #667eea30;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-right: 20px;
}

.guarantee-text h4 {
    color: #2d3748;
    margin-bottom: 5px;
}

/* CTA блок */
.faq-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.faq-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #667eea, #9f7aea);
    color: white;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}