/* sections-vara-tjanster.css - Vara Tjanster page sections + responsive */

/* Feature Checklist */
.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-checklist li {
    padding: 8px 0 8px 30px;
    font-size: 16px;
    position: relative;
}

.feature-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/check-circle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Foretagsvardering Mobile Styles */
@media (max-width: 768px) {
    .hero-foretagsvardering {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title-fg {
        font-size: 32px;
    }

    .hero-subtitle-fg {
        font-size: 12px;
    }

    .hero-buttons-fg {
        flex-direction: column;
        width: 100%;
    }

    .btn-fg-primary,
    .btn-fg-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-device-image {
        max-width: 100%;
    }
}

/* Branschrapport Hero styles moved to hero.css (inlined for LCP) */

/* ============================================
   Bolagsbevakning Features Section
   ============================================ */

.features-section-bb {
    padding: 100px 0;
    background: #FFFFFF;
}

.features-container-bb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-heading-bb {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.5em;
    color: #000000;
    text-align: center;
    margin: 0 0 40px 0;
}

.feature-card-title-bb {
    font-size: 18px;
    font-weight: 500;
}

.features-grid-bb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    row-gap: 15px;
    column-gap: 40px;
}


/* Desktop: Position items in grid */
.feature-item-bb .feature-card-bb {
    grid-row: 1;
}

.feature-item-bb .feature-title-bb {
    grid-row: 2;
    margin: 20px 0px;
}

.feature-item-bb .feature-description-bb {
    grid-row: 3;
}

.feature-card-bb {
    background: #F5EFE7;
    padding: 0px 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 245px;
    overflow: hidden;
    height: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.feature-card-empty-bb {
    background: transparent;
}

.feature-image-bb {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.feature-image-bb:hover,
.feature-card-bb:hover .feature-image-bb {
    transform: scale(1.05);
}

/* Government logos card */
.feature-card-govt-bb {
    position: relative;
}

.feature-govt-logos-bb {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.govt-gradient-overlay-bb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.govt-logo-bb {
    position: absolute;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-card-govt-bb:hover .govt-logo-bb {
    transform: scale(1.05);
}

.govt-logo-1-bb {
    left: 20px;
    top: 40%;
    transform: translateY(-50%);
    width: 140px;
    height: auto;
}

.feature-card-govt-bb:hover .govt-logo-1-bb {
    transform: translateY(-50%) scale(1.05);
}

.govt-logo-2-bb {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: auto;
}

.feature-card-govt-bb:hover .govt-logo-2-bb {
    transform: translate(-50%, -50%) scale(1.05);
}

.govt-logo-3-bb {
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    width: 80px;
    height: auto;
}

.feature-card-govt-bb:hover .govt-logo-3-bb {
    transform: translateY(-50%) scale(1.05);
}

.feature-title-bb {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
    padding: 0;
}

.feature-description-bb {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
    padding: 0;
}

.feature-empty-bb {
    display: block;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .features-grid-bb {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        row-gap: 15px;
    }

    .features-heading-bb {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .feature-card-bb {
        min-height: 240px;
        height: auto !important;
        padding: 20px 30px !important;
    }
}

@media screen and (max-width: 768px) {
    .feature-govt-logos-bb {
        padding: 80px;
    }

    .govt-logo-1-bb {
        width: 100px;
    }

    .govt-logo-2-bb {
        width: 80px;
        top: 77%;
    }

    .govt-logo-3-bb {
        width: 60px;
    }


    .features-section-bb {
        padding: 60px 0;
    }

    .features-heading-bb {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features-grid-bb {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-card-bb {
        min-height: auto;
        padding: 0px !important;
    }

    .feature-item-bb {
        display: flex;
        flex-direction: column;
        background-color: #F5EFE7;
        padding: 20px;
        border-radius: 15px;
    }

    .feature-item-bb .feature-title-bb {
        order: 1;
        margin: 0 0 20px 0;
    }

    .feature-item-bb .feature-card-bb {
        order: 3;
    }

    .feature-item-bb .feature-description-bb {
        order: 2;
    }

    .feature-item-bb .feature-checklist {
        order: 4;
    }
}

@media screen and (max-width: 480px) {
    .features-heading-bb {
        font-size: 28px;
        margin-bottom: 30px;
    }

}

/* ================================
   Why Choose Section - Bolagsbevakning
   ================================ */

.why-choose-section-bb {
    background: #FFFFFF;
    padding: 100px 0;
    width: 100%;
}

.why-choose-wrapper-bb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.why-choose-image-container-bb {
    flex: 1;
    max-width: 600px;
    min-width: 400px;
}

.why-choose-main-image-bb {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.why-choose-content-bb {
    flex: 1;
    max-width: 600px;
}

.why-choose-text-bb {
    margin-bottom: 40px;
}

.why-choose-heading-bb {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2em;
    color: #000000;
    margin-bottom: 24px;
}

.why-choose-description-bb {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    color: #666666;
    margin-bottom: 20px;
}

.why-choose-features-bb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-feature-card-bb {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #F7F7F7;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-choose-feature-card-bb:hover {
    background: #EFEFEF;
    transform: translateX(5px);
}

.feature-icon-wrapper-bb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon-img-bb {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-card-text-bb {
    flex: 1;
}

.feature-card-description-bb {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: #666666;
    margin: 0;
}

.why-choose-cta-bb {
    margin-top: 40px;
}

.btn-why-choose-bb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #EA5A0B;
    color: #FFFFFF;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-why-choose-bb:hover {
    background: #D14F09;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 90, 11, 0.3);
}

@media screen and (max-width: 1200px) {
    .why-choose-wrapper-bb {
        gap: 60px;
        padding: 0 30px;
    }

    .why-choose-heading-bb {
        font-size: 36px;
    }

    .why-choose-image-container-bb {
        min-width: 350px;
    }
}

@media screen and (max-width: 968px) {
    .why-choose-section-bb {
        padding: 80px 0;
    }

    .why-choose-wrapper-bb {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }

    .why-choose-image-container-bb {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    .why-choose-content-bb {
        max-width: 100%;
    }

    .why-choose-heading-bb {
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .why-choose-section-bb {
        padding: 48px 0;
    }

    .why-choose-heading-bb {
        font-size: 28px;
    }

    .why-choose-description-bb {
        font-size: 15px;
    }

    .why-choose-features-bb {
        gap: 12px;
    }

    .why-choose-feature-card-bb {
        flex-direction: column;
        gap: 16px;
        padding: 18px;
    }

    .feature-icon-wrapper-bb {
        width: 40px;
        height: 40px;
    }

    .btn-why-choose-bb {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 12px 24px;
    }
}
