/* =========================================
   LOCATION FAQ ACCORDION (Separate)
   ========================================= */
.loc-faq-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.loc-faq-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.loc-faq-section-header h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: #333;
    margin: 0 0 10px 0;
}

.loc-faq-section-header p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.loc-faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.loc-faq-item.active {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #7d8dff;
}

.loc-faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.loc-faq-question {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
}

.loc-faq-icon {
    width: 36px;
    height: 36px;
    position: relative;
    flex-shrink: 0;
}

.loc-faq-icon::before,
.loc-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #7d8dff;
    border-radius: 2px;
    transition: transform 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loc-faq-icon::before { width: 26px; height: 1px; }
.loc-faq-icon::after { width: 1px; height: 26px; }

.loc-faq-item.active .loc-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.loc-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.loc-faq-answer {
    padding: 0 25px 25px;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 480px) {
    .loc-faq-container {
        padding: 0 5px;
    }
    .loc-faq-question { font-size: 16px; }
    .loc-faq-header { padding: 15px 20px; }
}