/**
 * Trust Indicators, Reviews & Career Section Styles
 * Extracted from inline styles for proper separation of concerns
 */

/* ===== Trust Indicators Section ===== */
.trust-indicators {
    background-color: var(--light-color);
}

/* Stats Grid (Animated Counters) */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stat-item .stat-row {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.stat-number {
    font-family: var(--heading-font, 'Montserrat', sans-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color, #E67E22);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--heading-font, 'Montserrat', sans-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color, #E67E22);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--dark-gray, #666);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge i {
    color: var(--secondary-color);
}

.trust-badge .fa-medal {
    color: #daa520;
}

.trust-badge .fa-certificate {
    color: #555;
}

.trust-badge .fa-star {
    color: #f1c40f;
}

/* ===== Reviews Section (Carousel) ===== */
.reviews-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0 2rem;
    margin-bottom: 1rem;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-wrapper::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 300px;
    max-width: 350px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review-card .stars {
    color: #f1c40f;
    margin-bottom: 1rem;
}

.review-card .review-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-card .reviewer {
    font-weight: 600;
    color: #555;
}

.reviews-cta {
    text-align: center;
}

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Carousel Navigation */
.reviews-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviews-nav-btn {
    background: var(--primary-color, #2C3E50);
    color: var(--light-color, #fff);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.reviews-nav-btn:hover {
    background: var(--secondary-color, #E67E22);
    transform: scale(1.1);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color, #95A5A6);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding: 0;
}

.reviews-dot.active {
    background: var(--secondary-color, #E67E22);
    transform: scale(1.3);
}

/* On larger screens show all cards without carousel */
@media (min-width: 1100px) {
    .reviews-wrapper {
        justify-content: center;
        overflow-x: visible;
        scroll-snap-type: none;
    }
    .reviews-nav {
        display: none;
    }
}

/* ===== Career Section ===== */
.career-content {
    max-width: 900px;
    margin: 0 auto;
}

.career-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.career-col {
    flex: 1;
    min-width: 300px;
}

.career-benefits {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.career-benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.career-benefits li i {
    color: var(--primary-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.job-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.job-card h4 {
    margin-bottom: 1rem;
}

.job-list {
    margin-top: 1rem;
    padding-left: 20px;
}

.job-list li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.job-list .job-subtitle {
    font-size: 0.9em;
    color: var(--dark-gray);
}

.job-card-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.job-card-cta p {
    font-size: 0.9em;
    margin-bottom: 0.5rem;
}

.job-card-cta .btn {
    width: 100%;
}

/* ===== Erreichbarkeit sub-info ===== */
.info-sub-text {
    font-size: 0.9em;
    color: var(--dark-gray);
}

/* ===== Responsive adjustments ===== */
@media (max-width: 767px) {
    .career-row {
        flex-direction: column;
    }

    .career-col {
        min-width: auto;
    }

    .reviews-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        max-width: 100%;
    }
}


