/* FAQ STRÁNKA - PROFESIONÁLNÍ DESIGN */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* HLAVIČKA */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 4px solid transparent;
    background: linear-gradient(to right, #FF6B00, #ff8533) bottom left no-repeat;
    background-size: 250px 4px;
    background-position: center bottom;
}

.faq-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* RYCHLÁ NAVIGACE */
.faq-nav {
    background: linear-gradient(135deg, #f8f8f8, #fff);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.faq-nav-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-nav-title svg {
    width: 24px;
    height: 24px;
    stroke: #FF6B00;
    stroke-width: 2;
}

.faq-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.faq-nav-item {
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-nav-item:hover {
    border-color: #FF6B00;
    background: linear-gradient(135deg, #fff5f0, #fff);
    transform: translateX(5px);
}

.faq-nav-icon {
    width: 18px;
    height: 18px;
    stroke: #FF6B00;
    stroke-width: 2;
    flex-shrink: 0;
}

/* SEKCE OTÁZEK */
.faq-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-section {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

.faq-section-header {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-section-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    stroke-width: 2;
}

/* FAQ POLOŽKY */
.faq-items {
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 30px 25px 60px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    transition: all 0.3s;
    position: relative;
    background: #fff;
}

.faq-question::before {
    content: 'Q:';
    position: absolute;
    left: 25px;
    top: 25px;
    width: 25px;
    height: 25px;
    background: #FF6B00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s;
}

.faq-item:hover .faq-question {
    background: linear-gradient(135deg, #fff8f5, #fff);
    padding-left: 65px;
}

.faq-item.active .faq-question::after {
    content: '−';
    background: #FF6B00;
    color: #fff;
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #fafafa;
}

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

.faq-answer-content {
    padding: 25px 30px 25px 60px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    position: relative;
}

.faq-answer-content::before {
    content: 'A:';
    position: absolute;
    left: 25px;
    top: 25px;
    width: 25px;
    height: 25px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

/* ZVÝRAZNĚNÍ DŮLEŽITÝCH INFORMACÍ */
.faq-answer-content strong {
    color: #FF6B00;
    font-weight: 700;
}

.faq-answer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.faq-answer-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

/* KONTAKT BOX */
.faq-contact {
    background: linear-gradient(135deg, #FF6B00, #ff8533);
    color: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255,107,0,0.3);
}

.faq-contact-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-contact-text {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.faq-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-btn {
    padding: 15px 35px;
    background: #fff;
    color: #FF6B00;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.faq-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.faq-contact-btn svg {
    width: 18px;
    height: 18px;
    stroke: #FF6B00;
    stroke-width: 2.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-container {
        padding: 30px 15px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 15px;
    }
    
    .faq-nav {
        padding: 20px;
    }
    
    .faq-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-section-header {
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .faq-question {
        padding: 20px 20px 20px 50px;
        font-size: 14px;
    }
    
    .faq-question::before {
        left: 15px;
        top: 20px;
    }
    
    .faq-question::after {
        right: 15px;
    }
    
    .faq-answer-content {
        padding: 20px 20px 20px 50px;
        font-size: 14px;
    }
    
    .faq-contact {
        padding: 30px 20px;
    }
    
    .faq-contact-title {
        font-size: 22px;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
    }
    
    .faq-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* TISK */
@media print {
    .faq-nav,
    .faq-contact {
        display: none;
    }
    
    .faq-item {
        page-break-inside: avoid;
    }
    
    .faq-item.active .faq-answer {
        max-height: none !important;
    }
}