.places-hero{
    padding:28px 20px 20px;
}

.places-hero h1{
    font-size:1.7rem;
    margin-bottom:8px;
}

.places-hero p{
    font-size:.95rem;
    line-height:1.5;
}

.places-hero strong{
    color:#d4af37;
}

.places-stats{
    padding:25px 20px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.stat-box{
    background:#fff;
    border-radius:14px;
    padding:18px 15px;
    text-align:center;
    box-shadow:0 8px 22px rgba(0,0,0,.08);
    transition:.25s;
}

.stat-box:hover{
    transform:translateY(-3px);
}

.stat-box span{
    display:block;
    font-size:38px;
    font-weight:700;
    color:#d4af37;
    margin-bottom:6px;
    line-height:1;
}

.stat-box small{
    display:block;
    font-size:15px;
    color:#6b7280;
}

.places-map{
    padding:15px 20px 60px;
}

#map{
    width:100%;
    height:700px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.15);
    border:1px solid #e5e7eb;
}

.map-popup{
    min-width:270px;
    font-size:14px;
    line-height:1.5;
}

.map-popup h3{
    margin:0 0 15px;
    color:#111827;
    font-size:20px;
}

.map-popup p{
    margin:0 0 12px;
}

.popup-event{
    margin:10px 0;
}

.popup-event strong{
    color:#d4af37;
}

.popup-gallery{
    display:inline-block;
    margin-top:8px;
    padding:8px 14px;
    border-radius:8px;
    text-decoration:none;
    background:#d4af37;
    color:#fff;
    transition:.25s;
}

.popup-gallery:hover{
    background:#b9931d;
}

.leaflet-popup-content{
    margin:18px;
}

.leaflet-popup-content-wrapper{
    border-radius:18px;
}

.leaflet-popup-tip{
    box-shadow:none;
}

.leaflet-marker-icon{
    animation:markerDrop .45s ease;
}

@keyframes markerDrop{

    0%{
        opacity:0;
        transform:translateY(-40px) scale(.3);
    }

    70%{
        transform:translateY(5px) scale(1.15);
    }

    100%{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

@media(max-width:1200px){

    #map{
        height:620px;
    }

}

@media(max-width:992px){

    .stats-grid{
        grid-template-columns:repeat(3,1fr);
        gap:15px;
    }

    .stat-box{
        padding:16px 12px;
    }

    .stat-box span{
        font-size:34px;
    }

    .stat-box small{
        font-size:14px;
    }

    #map{
        height:560px;
    }

    .places-hero h1{
        font-size:34px;
    }

    .places-hero p{
        font-size:17px;
    }

}

@media(max-width:768px){

    .places-hero{
        padding:45px 20px 20px;
    }

    .places-hero h1{
        font-size:30px;
    }

    .places-hero p{
        font-size:16px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-box{
        padding:20px;
    }

    .stat-box span{
        font-size:34px;
    }

    #map{
        height:470px;
        border-radius:14px;
    }

}

@media(max-width:576px){

    #map{
        height:400px;
    }

    .map-popup{
        min-width:220px;
    }

}
.stat-box{
    background:#fff;
    border-radius:14px;
    padding:14px 12px;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.25s;
}
.places-hero{
    padding:45px 20px 20px;
}