/* STUTTGART HERO SECTION */
.location-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../Images/einsatzgebiete-hero.jpeg') center/cover no-repeat;
    padding: 80px 0;
}

.location-hero-content {
    max-width: 900px;
}

.location-hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.location-hero p {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* STUTTGART INTRO */
.location-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.location-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #161616;
}

.location-intro p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    max-width: 900px;
}

/* STUTTGART SERVICES */
.location-services {
    padding: 80px 0;
}

.location-services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #161616;
}

.location-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.location-service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #f7d34f;
    transition: transform 0.2s;
}

.location-service-card:hover {
    transform: translateY(-5px);
}

.location-service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #161616;
}

.location-service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* PROBLEM / SOLUTION */
.location-solution {
    padding: 80px 0;
    background-color: #161616;
    color: white;
}

.location-solution h2 {
    font-size: 36px;
    color: #f7d34f;
    margin-bottom: 24px;
}

.location-solution p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #d1d5d0;
}

.location-solution p strong {
    color: #ffffff;
}

/* COVERAGE LIST */
.coverage-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: start;
}

.section-badge {
    display: inline-block;
    margin: 0 0 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background-color: rgba(247, 211, 79, 0.18);
    color: #1f1f1f;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.coverage-title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    color: #111111;
}

.coverage-text {
    margin: 0 0 28px;
    max-width: 680px;
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.coverage-cities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
}

.coverage-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.coverage-list li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 28px;
    font-size: 18px;
    line-height: 1.5;
    color: #222222;
}

.coverage-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #f7d34f;
    font-weight: 700;
    font-size: 20px;
}

.coverage-map-wrapper {
    min-width: 0;
}

.coverage-map {
    width: 100%;
    height: 540px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.coverage-city-marker span,
.coverage-stuttgart-marker span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-sizing: border-box;
}

.coverage-city-marker span {
    background-color: #f7d34f;
    border: 2px solid #111111;
    box-shadow: 0 0 0 4px rgba(247, 211, 79, 0.22);
}

.coverage-stuttgart-marker span {
    background-color: #111111;
    border: 4px solid #f7d34f;
    box-shadow: 0 0 0 6px rgba(247, 211, 79, 0.26);
}

/* leaflet fixes */
.coverage-map .leaflet-control-attribution {
    font-size: 11px;
}

/* STUTTGART CTA */
.location-cta {
    padding: 80px 0;
    background-color: #f7d34f;
    text-align: center;
    color: #161616;
}

.location-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.location-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.location-cta-btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #161616;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.location-cta-btn:hover {
    background-color: #333;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .coverage-map {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .location-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .location-hero {
        padding: 60px 0;
    }

    .location-hero h1 {
        font-size: 36px;
    }

    .location-services-grid {
        grid-template-columns: 1fr;
    }

    .coverage-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .coverage-section {
        padding: 72px 0;
    }

    .coverage-cities {
        grid-template-columns: 1fr;
    }

    .coverage-title {
        font-size: 34px;
    }

    .coverage-text,
    .coverage-list li {
        font-size: 16px;
    }

    .coverage-map {
        height: 400px;
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .location-hero h1 {
        font-size: 28px;
    }

    .location-hero p {
        font-size: 18px;
    }

    .location-intro h2,
    .location-services h2,
    .location-solution h2,
    .location-coverage h2,
    .location-cta h2 {
        font-size: 28px;
    }
}