/* Modern FAQ Styles - Inspired by clean, minimal design */

.parkcruise-faq-modern {
    background-color: #f8fafc;
    padding: 80px 0;
}

.faq-modern-container {
    max-width: 100%;
}

.faq-modern-card {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-modern-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-modern-header {
    padding: 0;
}

.faq-modern-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
}

.faq-modern-button:focus {
    outline: none;
    box-shadow: none;
}

.faq-modern-button:not(.collapsed) {
    background-color: #fff7ed;
    border-bottom: 1px solid #fed7aa;
}

.faq-modern-question {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-modern-button:not(.collapsed) .faq-modern-question {
    color: #f97316;
}

.faq-modern-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.faq-modern-button:not(.collapsed) .faq-modern-icon {
    color: #f97316;
    transform: rotate(180deg);
}

.faq-modern-icon i {
    font-size: 14px;
}

.faq-modern-body {
    padding: 0 28px 24px 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

.faq-modern-body a {
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.faq-modern-body a:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Heading Styles */
.parkcruise-faq-modern h2 {
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.parkcruise-faq-modern .text-muted {
    font-size: 17px;
    color: #6b7280;
    font-weight: 400;
}

/* Animation for collapse */
.faq-modern-card .collapse {
    transition: height 0.3s ease;
}

.faq-modern-card .collapsing {
    transition: height 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .parkcruise-faq-modern {
        padding: 60px 0;
    }
    
    .parkcruise-faq-modern h2 {
        font-size: 32px;
    }
    
    .faq-modern-button {
        padding: 20px 20px;
    }
    
    .faq-modern-question {
        font-size: 16px;
    }
    
    .faq-modern-body {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .parkcruise-faq-modern h2 {
        font-size: 28px;
    }
    
    .faq-modern-question {
        font-size: 15px;
    }
}
