/* ===== FAQ SECTION STYLES ===== */
/* Consolidated FAQ styles for all tour pages */

.faq-section {
    margin: 3rem 0;
    width: 100%;
}

.faq-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 2rem;
    text-align: left;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2b6cb0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.faq-item {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: #2b6cb0;
    box-shadow: 0 4px 16px rgba(43, 108, 176, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #edf2f7;
    color: #2b6cb0;
}

.faq-item.active .faq-question {
    background: #ebf8ff;
    color: #2b6cb0;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: #718096;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    color: #2b6cb0;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    padding: 1rem 1.5rem 1.25rem;  /* top: 1rem, sides: 1.5rem (same as question), bottom: 1.25rem */
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        margin: 2rem 0;
    }
    
    .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0.75rem 1.25rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0.625rem 1rem 0.875rem;
    }
}