.harita-section {
    padding: 80px 0;
  background: #000000


}

.harita-container {
    height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.harita-header {
    text-align: center;
    margin-bottom: 50px;
}

.harita-header h2 {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.harita-header p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

#harita {
    height: 470px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid #ffffff;
    overflow: hidden;
}

/* Leaflet Marker Stilleri */
.custom-marker {
    background: linear-gradient(135deg, #ffffff, #000000);
    border: 3px solid white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    box-shadow: 0 4px 15px rgba(175, 175, 175, 0.4);
}

.leaflet-popup-content-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
}

.leaflet-popup-content {
    margin: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.leaflet-popup-content h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.leaflet-popup-content a {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.leaflet-popup-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 5px 8px 0 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .harita-section {
        padding: 60px 0;
    }
    
    .harita-header h2 {
        font-size: 2.2rem;
    }
    
    .harita-header p {
        font-size: 1.1rem;
    }
    
    #harita {
        height: 400px;
        border-radius: 15px;
    }
}

@media screen and (max-width: 480px) {
    .harita-header h2 {
        font-size: 1.8rem;
    }
    
    #harita {
        height: 350px;
    }
    
    .leaflet-popup-content {
        margin: 15px;
    }
    
    .leaflet-popup-content h3 {
        font-size: 1.1rem;
    }
}