  /* Map Container */
  .world-map-container {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: #2c2c2c;
 }
 
 /* Dark mode map styling */
 .dark-mode .leaflet-container {
    background: #2c2c2c;
 }
 
 .dark-mode .leaflet-control-zoom a {
    background-color: #3a3a3a;
    color: #E8DCC6;
    border: 1px solid rgba(212, 175, 55, 0.4);
 }
 
 .dark-mode .leaflet-control-zoom a:hover {
    background-color: #D4AF37;
    color: #1a1a1a;
 }
 
 .dark-mode .leaflet-bar {
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
 }
 
 /* Custom Marker Styles - Pin Design */
 .custom-marker {
    background: transparent;
    border: none;
 }
 
 .marker-pin {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
 }
 
 .marker-pin:hover {
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.7), 0 0 30px rgba(212, 175, 55, 0.5);
 }
 
 .marker-pin i {
    transform: rotate(45deg);
    color: #1a1a1a;
    font-size: 16px;
    z-index: 2;
    position: relative;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
 }
 
 .marker-pin::after {
    content: '';
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
 }
 
 /* Popup Styles for Dark Mode */
 .custom-popup .leaflet-popup-content-wrapper {
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0;
    overflow: hidden;
 }
 
 .custom-popup .leaflet-popup-tip {
    background: #3a3a3a;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
 }
 
 .custom-popup .leaflet-popup-close-button {
    color: #E8DCC6;
    font-size: 24px;
    padding: 8px;
    transition: all 0.3s ease;
 }
 
 .custom-popup .leaflet-popup-close-button:hover {
    color: #D4AF37;
    transform: scale(1.2);
 }
 
 .map-popup {
    padding: 0;
 }
 
 .map-popup-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 148, 31, 0.2) 100%);
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
 }
 
 .map-popup-header i {
    color: #D4AF37;
    font-size: 20px;
 }
 
 .map-popup-header h4 {
    color: #E8DCC6;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
 }
 
 .map-popup-body {
    padding: 20px;
 }
 
 .map-popup-body p {
    color: #E8DCC6;
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
    text-align: left;
 }
 
 /* Section Styling */
 .locations-map-area {
    position: relative;
    overflow: hidden;
    background: transparent;
 }
 
 .map-wrapper {
    position: relative;
    z-index: 1;
 }
 
 /* Responsive Design */
 @media (max-width: 768px) {
    .world-map-container {
       height: 400px;
       border-radius: 10px;
    }
    
    .marker-pin {
       width: 28px;
       height: 28px;
    }
    
    .marker-pin i {
       font-size: 14px;
    }
    
    .marker-pin::after {
       width: 14px;
       height: 14px;
    }
    
    .map-popup-header h4 {
       font-size: 16px;
    }
    
    .map-popup-body p {
       font-size: 13px;
    }
 }