/**
 * SBB FAQ Styles
 */

.sbb-faq-section {
    padding: 100px 30px 220px 30px; /* padding-bottom diperbesar agar eclipse tidak kepotong */
    margin: 0 0 80px 0; /* margin-bottom: space agar eclipse blur tidak tertutup section bawah */
    background: #ffffff;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    overflow: visible;
    isolation: isolate;
}

.sbb-faq-blur-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: #bbd448;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    transform: translate(-20%, 20%);
}

.sbb-faq-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.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: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sbb-faq-subtitle--green {
    color: #6B8E23;
}

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

.sbb-faq-description {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sbb-faq-description p {
    margin: 0 0 1em;
}

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

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

.sbb-faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 0;
}

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

.sbb-faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
    margin: 0 0 16px 0;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sbb-faq-answer-content {
    padding: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    font-family: 'SIGText', -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: 'SIGText', -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;
        margin-bottom: 120px;
    }
    
    .sbb-faq-blur-shape {
        width: 250px;
        height: 250px;
        filter: blur(60px);
        transform: translate(-15%, 15%);
    }
    
    .sbb-faq-content {
        gap: 30px;
    }
    
    .sbb-faq-title {
        font-size: 28px;
    }
    
    .sbb-faq-item {
        padding: 20px 0;
    }
    
    .sbb-faq-question-text {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .sbb-faq-answer-content {
        font-size: 14px;
    }
    
    .sbb-faq-image-wrapper {
        width: 100%;
        max-width: 515px;
        height: auto;
        aspect-ratio: 515 / 666;
    }
}
