/**
 * SBB FAQ Styles
 */

.sbb-faq-section {
    padding: 100px 30px;
    background: #ffffff;
    position: relative;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.sbb-faq-container {
    max-width: 1440px;
    margin: 0 auto;
}

.sbb-faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sbb-faq-left {
    position: sticky;
    top: 120px;
}

.sbb-faq-image-wrapper {
    width: 515px;
    height: 666px;
    overflow: hidden;
    background: transparent;
    border-radius: 0;
}

.sbb-faq-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sbb-faq-placeholder {
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #999;
    padding: 40px;
    text-align: center;
}

.sbb-faq-placeholder svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.sbb-faq-placeholder p {
    margin: 0;
    font-size: 14px;
    color: #999;
}

.sbb-faq-right {
    display: flex;
    flex-direction: column;
}

.sbb-faq-header {
    margin-bottom: 40px;
}

.sbb-faq-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    text-transform: none;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sbb-faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sbb-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sbb-faq-item {
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

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

.sbb-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sbb-faq-question:hover {
    color: #65644a;
}

.sbb-faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.sbb-faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #65644a;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sbb-faq-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.sbb-faq-item.active .sbb-faq-icon svg {
    transform: rotate(180deg);
}

.sbb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

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

.sbb-faq-answer-content {
    padding: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sbb-faq-answer-content p {
    margin: 0 0 12px 0;
}

.sbb-faq-answer-content p:last-child {
    margin-bottom: 0;
}

.sbb-faq-no-items {
    text-align: center;
    color: #999999;
    padding: 40px 20px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
    .sbb-faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sbb-faq-left {
        position: static;
    }
    
    .sbb-faq-image-wrapper {
        width: 515px;
        height: 666px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sbb-faq-section {
        padding: 60px 20px;
    }
    
    .sbb-faq-content {
        gap: 30px;
    }
    
    .sbb-faq-title {
        font-size: 28px;
    }
    
    .sbb-faq-question {
        padding: 20px 0;
    }
    
    .sbb-faq-question-text {
        font-size: 16px;
    }
    
    .sbb-faq-answer-content {
        font-size: 14px;
        padding-bottom: 20px;
    }
    
    .sbb-faq-image-wrapper {
        width: 100%;
        max-width: 515px;
        height: auto;
        aspect-ratio: 515 / 666;
    }
}

