/* ===================================================================
   Skill Tandem – Regionale Landing Pages (Lokal)
   =================================================================== */

/* --- Hero subtitle --- */
.lokal-hero-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.9);
    line-height: 1.7;
}

/* --- Generic section spacing --- */
.lokal-section {
    padding: 70px 0;
}
.lokal-section-alt {
    background: #f8f9fa;
}

/* --- Über-uns text --- */
.lokal-about-heading {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.lokal-about-text {
    color: #555;
    line-height: 1.8;
}

/* --- Stats block --- */
.lokal-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.lokal-stat {
    text-align: center;
}
.lokal-stat .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}
.lokal-stat .label {
    color: #6c757d;
    font-size: .9rem;
    margin-top: 4px;
}

/* --- Icon-box cards (Vorteile) --- */
.lokal-icon-box {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    transition: all .25s ease;
    text-align: center;
}
.lokal-icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.lokal-icon-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}
.lokal-icon-box h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2a2c39;
}
.lokal-icon-box p {
    color: #6c757d;
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Steps (So funktioniert's) --- */
.lokal-step {
    position: relative;
    padding: 30px 25px;
    text-align: center;
}
.lokal-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.lokal-step h5 {
    font-weight: 700;
    font-size: 1.05rem;
}
.lokal-step p {
    color: #6c757d;
    font-size: .93rem;
}

/* --- Skill tags --- */
.lokal-skill-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #dee2e6;
    font-weight: 500;
    color: #2a2c39;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    font-size: .95rem;
    transition: all .2s ease;
}
.lokal-skill-tag:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* --- FAQ accordion --- */
.lokal-faq .faq-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}
.lokal-faq .faq-header {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #2a2c39;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .2s;
}
.lokal-faq .faq-header:hover {
    color: var(--primary-color);
}
.lokal-faq .faq-header i {
    transition: transform .3s;
    font-size: 1.2rem;
}
.lokal-faq .faq-header.collapsed i {
    transform: rotate(0);
}
.lokal-faq .faq-header:not(.collapsed) i {
    transform: rotate(180deg);
    color: var(--primary-color);
}
.lokal-faq .faq-body {
    padding: 0 24px 18px;
    color: #555;
    line-height: 1.7;
}

/* --- CTA bottom section --- */
.lokal-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 70px 0;
    text-align: center;
}
.lokal-cta h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.lokal-cta p {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.lokal-cta .btn-cta {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    transition: all .3s;
}
.lokal-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

/* --- Breadcrumbs (inside hero, white text) --- */
.lokal-breadcrumb {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 10;
    background: transparent;
    padding: 0;
}
.lokal-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0;
    font-size: .88rem;
}
.lokal-breadcrumb ol li {
    color: rgba(255,255,255,.7);
}
.lokal-breadcrumb ol li a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
}
.lokal-breadcrumb ol li a:hover {
    text-decoration: underline;
    color: #fff;
}
.lokal-breadcrumb ol li + li::before {
    content: "›";
    margin-right: 6px;
    color: rgba(255,255,255,.5);
}

/* --- Cross-region links --- */
.lokal-region-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.lokal-region-link {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #dee2e6;
    color: #2a2c39;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease;
    background: #fff;
}
.lokal-region-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    text-decoration: none;
}
.lokal-region-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    pointer-events: none;
}

/* --- Schema FAQ hidden markup --- */
.schema-faq {
    display: none;
}

/* --- Responsive tweaks --- */
@media (max-width: 768px) {
    .lokal-section {
        padding: 50px 0;
    }
    .lokal-cta {
        padding: 50px 0;
    }
    .lokal-cta h2 {
        font-size: 1.5rem;
    }
    .lokal-stats {
        gap: 30px;
    }
    .lokal-stat .num {
        font-size: 1.8rem;
    }
    .lokal-breadcrumb {
        top: 65px;
    }
}
