#companyMap {
    width: 100%;
    min-height: 450px;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.map-col {
    display: flex;
    flex-direction: column;
}
.map-col > #companyMap {
    flex: 1;
}
.company-marker {
    background: #e74c3c;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    white-space: nowrap;
}
.company-marker::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e74c3c;
}
.leaflet-popup-content-wrapper {
    border-radius: 12px;
}
.map-popup h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
}
.map-popup p {
    color: #666;
    font-size: 14px;
    margin: 0;
}
.leaflet-control-attribution{
    display: none;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}