/* LOCATION & RADIUS SECTION */
.location-section {
    padding: 100px var(--inner-px);
    background: #000;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.loc-card-left {
    flex: 1;
    background: #111;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.loc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 30px;
    width: fit-content;
}

.loc-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.loc-info {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 400px;
}

.loc-radius-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.radius-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.radius-val {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.radius-label {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    opacity: 0.5;
    text-transform: uppercase;
}

/* MAP PART */
.loc-map-right {
    flex: 1.2;
    background: #111;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* List from left */
}

.map-city-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.big-city {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.8;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: uppercase;
    transition: 0.3s;
}

.big-city:hover {
    transform: translateX(20px);
    opacity: 0.7;
}

/* Cleanup old map styles if any remain below */


/* MOBILE */
@media (max-width: 1024px) {
    .location-section { flex-direction: column; padding: 40px 20px; }
    .loc-card-left { padding: 40px 30px; }
    .loc-map-right { min-height: 400px; }
    .radius-circle-visual { width: 250px; height: 250px; }
}
