/* FAQ section – shared styles (source: victoria-falls-tour.php) */

.faq-section {
    background: #fff;
    padding-bottom: 20px !important;
    padding: 80px 0;
    position: relative;
    width: 100%;
}

.faq-section .faq-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-section .faq-badge {
    display: inline-block;
    background: rgba(255, 59, 0, 0.08);
    color: #ff3b00;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    white-space: nowrap;
    width: auto;
    font-family: 'Inter', sans-serif;
}

.faq-section .faq-header h2 {
    font-family: 'Prata', serif;
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: 20px;
    color: #222;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.faq-section .faq-header p {
    text-align: center;
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.faq-section .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 20px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section .faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff3b00;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-section .faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-section .faq-question-btn {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.faq-section .faq-question-btn:hover {
    background-color: rgba(255, 59, 0, 0.02);
}

.faq-section .faq-question-btn.active {
    background-color: rgba(255, 59, 0, 0.05);
}

.faq-section .faq-question-text {
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    margin-right: 1rem;
}

.faq-section .faq-icon {
    color: #ff3b00;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-section .faq-icon.rotated {
    transform: rotate(180deg);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.faq-section .faq-answer.open {
    max-height: 1000px;
    padding: 1.5rem;
}

.faq-section .faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0 20px;
    }

    .faq-section .faq-grid {
        gap: 1rem;
        padding: 0 5px;
    }

    .faq-section .faq-header h2 {
        font-size: 2rem;
    }

    .faq-section .faq-card {
        margin: 0;
        border-radius: 8px;
    }
}